#36: Add ability to select Linux distribution type if OS is unsupported - partial

This commit is contained in:
2019-08-28 18:58:43 -05:00
parent 0671a39809
commit 0105602a44
11 changed files with 194 additions and 38 deletions

View File

@@ -28,7 +28,8 @@ exports.DEV_PUBLIC_KEY = '-----BEGIN PUBLIC KEY-----\n' +
'-----END PUBLIC KEY-----';
const REPERTORY_BRANCH = '1.1.0-release_branch';
//const REPERTORY_BRANCH = '1.1.0-release_branch';
const REPERTORY_BRANCH = 'master';
const REPERTORY_UI_BRANCH = '1.0.8_branch';
exports.RELEASES_URL = 'https://bitbucket.org/blockstorage/repertory/raw/' + REPERTORY_BRANCH + '/releases.json';
@@ -68,6 +69,7 @@ exports.RELEASE_TYPES = [
exports.INSTALL_TYPES = {
Dependency: 'dependency',
Release: 'release',
TestRelease: 'test_release',
Upgrade: 'upgrade',
};
@@ -126,8 +128,13 @@ exports.IPC_Show_Window = 'show_window';
exports.IPC_Set_Config_Values = 'set_config_values';
exports.IPC_Set_Config_Values_Reply = 'set_config_values_reply';
exports.IPC_Set_Linux_AppPlatform = 'IPC_Set_Linux_AppPlatform';
exports.IPC_Shutdown = 'shutdown';
exports.IPC_Test_Release = 'test_release';
exports.IPC_Test_Release_Reply = 'test_release_reply';
exports.IPC_Unmount_All_Drives = 'unmount_all';
exports.IPC_Unmount_All_Drives_Reply = 'unmount_all_reply';