Images
BIN
images/blue/icon_24X24.png
Normal file
|
After Width: | Height: | Size: 262 B |
BIN
images/blue/icon_40x40.png
Normal file
|
After Width: | Height: | Size: 298 B |
BIN
images/blue/icon_48x48.png
Normal file
|
After Width: | Height: | Size: 315 B |
BIN
images/blue/logo.iconset/icon_128x128.png
Normal file
|
After Width: | Height: | Size: 552 B |
BIN
images/blue/logo.iconset/icon_128x128@2x.png
Normal file
|
After Width: | Height: | Size: 820 B |
BIN
images/blue/logo.iconset/icon_16x16.png
Normal file
|
After Width: | Height: | Size: 202 B |
BIN
images/blue/logo.iconset/icon_16x16@2x.png
Normal file
|
After Width: | Height: | Size: 281 B |
BIN
images/blue/logo.iconset/icon_256x256.png
Normal file
|
After Width: | Height: | Size: 820 B |
BIN
images/blue/logo.iconset/icon_32x32.png
Normal file
|
After Width: | Height: | Size: 281 B |
BIN
images/blue/logo.iconset/icon_32x32@2x.png
Normal file
|
After Width: | Height: | Size: 361 B |
BIN
images/blue/logo.iconset/icon_64x64.png
Normal file
|
After Width: | Height: | Size: 361 B |
BIN
images/blue/logo.iconset/icon_64x64@2x.png
Normal file
|
After Width: | Height: | Size: 552 B |
@@ -139,13 +139,13 @@ export const notifyActiveRelease = (release, version) => {
|
|||||||
export const setActiveRelease = (release, version) => {
|
export const setActiveRelease = (release, version) => {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch(setAllowMount(false));
|
dispatch(setAllowMount(false));
|
||||||
const relVer = getState().relver;
|
const relver = getState().relver;
|
||||||
const common = getState().common;
|
const common = getState().common;
|
||||||
if (release >= Constants.RELEASE_TYPES.length) {
|
if (release >= Constants.RELEASE_TYPES.length) {
|
||||||
release = getState().relver.ReleaseDefault;
|
release = relver.ReleaseDefault;
|
||||||
version = -1;
|
version = -1;
|
||||||
}
|
}
|
||||||
const versions = relVer.VersionLookup[Constants.RELEASE_TYPES[release]];
|
const versions = relver.VersionLookup[Constants.RELEASE_TYPES[release]];
|
||||||
dispatch(setAllowDismissDependencies(versions && (versions.length > 1)));
|
dispatch(setAllowDismissDependencies(versions && (versions.length > 1)));
|
||||||
dispatch(setDismissDependencies(false));
|
dispatch(setDismissDependencies(false));
|
||||||
dispatch(notifyActiveRelease(release, version));
|
dispatch(notifyActiveRelease(release, version));
|
||||||
|
|||||||