diff --git a/defaults/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 b/defaults/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 new file mode 100644 index 0000000..fa67c1f --- /dev/null +++ b/defaults/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 @@ -0,0 +1,46 @@ +// Service configuration for production. +{ + "processes": { + "gpii": { + "command": "morphic-app.exe", + "ipc": "gpii", + "autoRestart": true, + "disabled": false, + env: { + NODE_ENV: "app.production", + GPII_CLOUD_URL: "https://flowmanager.prd.gcp.gpii.net" + } + } + }, + "logging": { + "level": "DEBUG" + }, + "secretFile": "%ProgramData%\\Morphic Credentials\\secret.txt", + "autoUpdate": { + "enabled": true, + "lastUpdatesFile": "%ProgramData%\\Morphic\\last-updates.json5", + "files": [{ + // Auto-update the site config. + path: "%ProgramData%\\Morphic\\siteConfig.json5", + // Get the URL from the secrets file + //url: "${siteConfigUrl}" + url: "https://raw.githubusercontent.com/javihernandez/morphic-siteConfigs/master/onOffSwitchTesting/siteconfig_standard.json5" + }] + }, + "siteConfigFile": [ + "%ProgramData%\\Morphic\\siteConfig.json5", + "%ProgramFiles(x86)%\\Morphic\\windows\\resources\\app\\siteConfig.json5", + "%ProgramFiles%\\Morphic\\windows\\resources\\app\\siteConfig.json5" + ], + "gpiiConfig": { + "env": "NODE_ENV", + // Morphic + metrics: + "on:on": "app.production.metrics", + // No metrics or morphic: + "off:off": "app.disable", + // Metrics only: + "off:on": "app.metrics", + // No metrics: + "on:off": "app.production" + } +} diff --git a/defaults/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 b/defaults/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 new file mode 100644 index 0000000..e17e999 --- /dev/null +++ b/defaults/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 @@ -0,0 +1,213 @@ +{ + // Unique identifier for the deployment. + site: "default.gpii.net", + + // Whether to hide the QSS save button. + // `true` if the button should be hidden and `false` otherwise. + hideQssSaveButton: false, + + // File containing default values which are used after resetting user settings + // if relativePath is true then fileLocation is joined after %appdata%, so the + // end result its something similar to: + // "C:\Users\vagrant\AppData\Roaming\gpii\defaultSettings.json5" + // if relativePath is false then fileLocation is assumed that its absolute path + // and no changes are done to it + defaultSettingsData: { + relativePath: true, + fileLocation: "gpii\\defaultSettings.json5" + }, + + // Configuration options for the QSS window + qss: { + // Whether a user can open Settings pages and Control Panels of the operating system + // this is used to show different data in the sideCar container + osSettingsAvailable: true, + + // Determines if the QSS will be shown automatically on Morphic's startup + showQssOnStart: false, + + // Defines the delay in milliseconds before the tooltip is shown after a QSS button is selected + tooltipDisplayDelay: 500, // ms + + // The scaling factor for the QSS + scaleFactor: 1.2, + urls: { + account: "http://morphic.world/account", + cloudFolder: "https://drive.google.com/drive/folders/11m-AKdP-0wjEBocpVtvnK8iE23P7hFTS", + myGoogleDrive: "https://drive.google.com/", + myOneDrive: "https://onedrive.live.com/about/signin/", + myDropbox: "https://www.dropbox.com/login", + customizeQss: "https://morphic.world/" + }, + + alwaysUseChrome: false, + + // The template that is used for every label of the language setting's options. + // The "%" followed by a word specifies a variable and there are three possible variables: + // - native - the name of the language in its native form + // - local - the name of the language in the currently applied language + // - english - the name of the of the language in English + languageOptionLabel: { + currentLanguageGroup: "%native", + genericLanguage: "%native · %local" + }, + // The code of OS default language `gpii-app` (it might be the one with which the system was installed with). + // This language should always stay on top of the "Language" setting's menu list. + // The code must be exactly matching one of the installed languages' code (with respect to the region). + // In case the selected language code is missing, there simply won't be a special first setting. + // NOTE: this is not related to the default language value defined for the language setting + systemDefaultLanguage: "en-US", + messages: { + keyedOut: "To save you must insert a Morphic Key. Please ask for one at the Front Desk. If you have a key inserted and you see this message, remove the key and re-insert it, then you can Save." + }, + + // The path to the ShareX's executable file, used in the screenCaptureWidget. + // This is the path where ShareX lives after installing Morphic. Can be adjusted for development purposes. + shareXPath: "C:\\Program Files (x86)\\Morphic\\sharex\\sharex-portable\\sharex.exe", + + // The path to the DocuMorph's executable file, used in the service buttons. + // This is the path where DocuMorph lives after installing Morphic. Can be adjusted for development purposes. + docuMorphExecutable: "C:\\Program Files (x86)\\Morphic\\documorph\\DocuMorph.Widget.exe", + + // The path to the Snipping Tools's executable file, used in the service buttons. + // This uses the internal Windows 10 snipping tool + snippingToolCommand: "start ms-screenclip:", + + // list of the desired list of buttons shown in QSS + // it uses the `id` attribute found in settings.json items + + // Custom buttons: Instead of a string with buttonId you add an object with the custom button data like this: + // APP type buttons require absolute path to executable in the buttonData + // WEB type buttons require a real valid url in the buttonData + // KEY type buttons require a key combation with this exact syntax: + // https://github.com/stegru/windows/blob/GPII-4135/gpii/node_modules/gpii-userInput/README.md + // { + // "buttonId": "MakeYourOwn", + // "buttonName": "Launch Notepad", // Free text that will be use as button's label + // "buttonType": "APP", // APP, WEB, or KEY + // "buttonData": "C:\\Windows\\system32\\notepad.exe", // system path, or url, or key combination + // "fullScreen": true, // true, or false + // "popupText": "

Launch the Notepad application.

", // tooltip text + // "description": "The full description of the button..." // optional description + // } + + // Separator buttons: Use can use any combination of the separators, even one after another: + // - "separator" // Use separator for invisible separator + // - "separator-visible" // Use separator-visible for a gray separator (same size as the invisible one) + + buttonList: [ + { + "buttonId": "MakeYourOwn", + "buttonName": "Task Manager", + "buttonType": "KEY", + "buttonData": "^+{Escape}", + "popupText": "

Executes Ctrl+Shift+Esc combination, which opens Windows Task Manager.

" + }, { + "buttonId": "MakeYourOwn", + "buttonName": "Launch Notepad", + "buttonType": "APP", + "buttonData": "C:\\Windows\\system32\\notepad.exe", + "fullScreen": true, + "popupText": "

Launch the Notepad application.

", + "description": "The full description of the button..." + }, { + "buttonId": "MakeYourOwn", + "buttonName": "Open Reddit", + "buttonType": "WEB", + "buttonData": "www.reddit.com", + "fullScreen": true, + "popupText": "

Open Reddit in a web browser.

", + "description": "The full description of the button..." + }, + "separator", + "language", + "translate-tools", + "screen-zoom", + "text-zoom", + "screen-capture", + "snipping-tool", + "office-simplification", + "high-contrast", + "color-vision", + "mouse", + "read-aloud", + "volume", + "launch-documorph", + "cloud-folder-open", + "usb-open", + "separator", + "url-google-drive", + "url-one-drive", + "url-dropbox", + "url-customize-qss", + "separator-visible", + "service-more", + "service-save", + "service-undo", + "service-saved-settings", + "service-reset-all", + "service-close" + ] + }, + + // Whether to hide the QSS when a user clicks outside of it + closeQssOnClickOutside: true, + + // Whether to disable the displaying of notifications that suggest some + // applications may need to be restarted in order for a changed setting to be + // fully applied. An example for such setting is `Language`. + // If set to `true`, such notifications will NOT be displayed. + disableRestartWarning: true, + + // The shortcut that open the QSS. For posible values refer to: https://electronjs.org/docs/api/accelerator + openQssShortcut: "Shift+Ctrl+AltOrOption+SuperOrCmd+M", + + // Configuration options for the QSS More panel + qssMorePanel: { + // These are default values. The actual dimensions of the QSS more panel + // are qssScaleFactor * defaultWidth and qssScaleFactor * defaultHeight. + defaultWidth: 600, + defaultHeight: 450, + movable: true, + resizable: true, + alwaysOnTop: true, + + urls: { + moreInfo: "http://morphic.world/more" + } + }, + + // Configuration options for the About dialog + aboutDialog: { + urls: { + morphicHome: "https://morphic.world", + submitSuggestions: "mailto:suggestions@morphic.world" + } + }, + + // Configuration options for the dialog manager + dialogManager: { + showErrorDialog: true + }, + + // URL to the the place serving the survey triggers data. Note that it should return triggers in JSON format + surveyTriggersUrl: "http://survey.gpii.net/survey-triggers.json", + + // The type of widget to use in the task bar - "gpii.app.trayButton", "gpii.app.trayIcon", or both. + trayType: ["gpii.app.trayButton"], + + metrics: { + // Can be true to disable everything, or "errors-only" to only capture errors. + disable: false, + // true to disable capturing key/mouse timings + disableInput: false + }, + + autoLogin: { + blockedUsers: ["admin*", "guest*", "student*", "visitor*", "volunteer*"], + userIdSource: "username" + }, + + // Metrics switch (read by the service): ":" + metricsSwitch: "on:on" // (eg, "on:on"=both on (default), "off:on"=metrics only) +} diff --git a/defaults/1.3.2-dev.20200131T110251Z.12e87784.GPII-4214.GPII-3572/service.json5 b/defaults/1.3.2-dev.20200131T110251Z.12e87784.GPII-4214.GPII-3572/service.json5 new file mode 100644 index 0000000..fa67c1f --- /dev/null +++ b/defaults/1.3.2-dev.20200131T110251Z.12e87784.GPII-4214.GPII-3572/service.json5 @@ -0,0 +1,46 @@ +// Service configuration for production. +{ + "processes": { + "gpii": { + "command": "morphic-app.exe", + "ipc": "gpii", + "autoRestart": true, + "disabled": false, + env: { + NODE_ENV: "app.production", + GPII_CLOUD_URL: "https://flowmanager.prd.gcp.gpii.net" + } + } + }, + "logging": { + "level": "DEBUG" + }, + "secretFile": "%ProgramData%\\Morphic Credentials\\secret.txt", + "autoUpdate": { + "enabled": true, + "lastUpdatesFile": "%ProgramData%\\Morphic\\last-updates.json5", + "files": [{ + // Auto-update the site config. + path: "%ProgramData%\\Morphic\\siteConfig.json5", + // Get the URL from the secrets file + //url: "${siteConfigUrl}" + url: "https://raw.githubusercontent.com/javihernandez/morphic-siteConfigs/master/onOffSwitchTesting/siteconfig_standard.json5" + }] + }, + "siteConfigFile": [ + "%ProgramData%\\Morphic\\siteConfig.json5", + "%ProgramFiles(x86)%\\Morphic\\windows\\resources\\app\\siteConfig.json5", + "%ProgramFiles%\\Morphic\\windows\\resources\\app\\siteConfig.json5" + ], + "gpiiConfig": { + "env": "NODE_ENV", + // Morphic + metrics: + "on:on": "app.production.metrics", + // No metrics or morphic: + "off:off": "app.disable", + // Metrics only: + "off:on": "app.metrics", + // No metrics: + "on:off": "app.production" + } +} diff --git a/defaults/1.3.2-dev.20200131T110251Z.12e87784.GPII-4214.GPII-3572/siteconfig.json5 b/defaults/1.3.2-dev.20200131T110251Z.12e87784.GPII-4214.GPII-3572/siteconfig.json5 new file mode 100644 index 0000000..e17e999 --- /dev/null +++ b/defaults/1.3.2-dev.20200131T110251Z.12e87784.GPII-4214.GPII-3572/siteconfig.json5 @@ -0,0 +1,213 @@ +{ + // Unique identifier for the deployment. + site: "default.gpii.net", + + // Whether to hide the QSS save button. + // `true` if the button should be hidden and `false` otherwise. + hideQssSaveButton: false, + + // File containing default values which are used after resetting user settings + // if relativePath is true then fileLocation is joined after %appdata%, so the + // end result its something similar to: + // "C:\Users\vagrant\AppData\Roaming\gpii\defaultSettings.json5" + // if relativePath is false then fileLocation is assumed that its absolute path + // and no changes are done to it + defaultSettingsData: { + relativePath: true, + fileLocation: "gpii\\defaultSettings.json5" + }, + + // Configuration options for the QSS window + qss: { + // Whether a user can open Settings pages and Control Panels of the operating system + // this is used to show different data in the sideCar container + osSettingsAvailable: true, + + // Determines if the QSS will be shown automatically on Morphic's startup + showQssOnStart: false, + + // Defines the delay in milliseconds before the tooltip is shown after a QSS button is selected + tooltipDisplayDelay: 500, // ms + + // The scaling factor for the QSS + scaleFactor: 1.2, + urls: { + account: "http://morphic.world/account", + cloudFolder: "https://drive.google.com/drive/folders/11m-AKdP-0wjEBocpVtvnK8iE23P7hFTS", + myGoogleDrive: "https://drive.google.com/", + myOneDrive: "https://onedrive.live.com/about/signin/", + myDropbox: "https://www.dropbox.com/login", + customizeQss: "https://morphic.world/" + }, + + alwaysUseChrome: false, + + // The template that is used for every label of the language setting's options. + // The "%" followed by a word specifies a variable and there are three possible variables: + // - native - the name of the language in its native form + // - local - the name of the language in the currently applied language + // - english - the name of the of the language in English + languageOptionLabel: { + currentLanguageGroup: "%native", + genericLanguage: "%native · %local" + }, + // The code of OS default language `gpii-app` (it might be the one with which the system was installed with). + // This language should always stay on top of the "Language" setting's menu list. + // The code must be exactly matching one of the installed languages' code (with respect to the region). + // In case the selected language code is missing, there simply won't be a special first setting. + // NOTE: this is not related to the default language value defined for the language setting + systemDefaultLanguage: "en-US", + messages: { + keyedOut: "To save you must insert a Morphic Key. Please ask for one at the Front Desk. If you have a key inserted and you see this message, remove the key and re-insert it, then you can Save." + }, + + // The path to the ShareX's executable file, used in the screenCaptureWidget. + // This is the path where ShareX lives after installing Morphic. Can be adjusted for development purposes. + shareXPath: "C:\\Program Files (x86)\\Morphic\\sharex\\sharex-portable\\sharex.exe", + + // The path to the DocuMorph's executable file, used in the service buttons. + // This is the path where DocuMorph lives after installing Morphic. Can be adjusted for development purposes. + docuMorphExecutable: "C:\\Program Files (x86)\\Morphic\\documorph\\DocuMorph.Widget.exe", + + // The path to the Snipping Tools's executable file, used in the service buttons. + // This uses the internal Windows 10 snipping tool + snippingToolCommand: "start ms-screenclip:", + + // list of the desired list of buttons shown in QSS + // it uses the `id` attribute found in settings.json items + + // Custom buttons: Instead of a string with buttonId you add an object with the custom button data like this: + // APP type buttons require absolute path to executable in the buttonData + // WEB type buttons require a real valid url in the buttonData + // KEY type buttons require a key combation with this exact syntax: + // https://github.com/stegru/windows/blob/GPII-4135/gpii/node_modules/gpii-userInput/README.md + // { + // "buttonId": "MakeYourOwn", + // "buttonName": "Launch Notepad", // Free text that will be use as button's label + // "buttonType": "APP", // APP, WEB, or KEY + // "buttonData": "C:\\Windows\\system32\\notepad.exe", // system path, or url, or key combination + // "fullScreen": true, // true, or false + // "popupText": "

Launch the Notepad application.

", // tooltip text + // "description": "The full description of the button..." // optional description + // } + + // Separator buttons: Use can use any combination of the separators, even one after another: + // - "separator" // Use separator for invisible separator + // - "separator-visible" // Use separator-visible for a gray separator (same size as the invisible one) + + buttonList: [ + { + "buttonId": "MakeYourOwn", + "buttonName": "Task Manager", + "buttonType": "KEY", + "buttonData": "^+{Escape}", + "popupText": "

Executes Ctrl+Shift+Esc combination, which opens Windows Task Manager.

" + }, { + "buttonId": "MakeYourOwn", + "buttonName": "Launch Notepad", + "buttonType": "APP", + "buttonData": "C:\\Windows\\system32\\notepad.exe", + "fullScreen": true, + "popupText": "

Launch the Notepad application.

", + "description": "The full description of the button..." + }, { + "buttonId": "MakeYourOwn", + "buttonName": "Open Reddit", + "buttonType": "WEB", + "buttonData": "www.reddit.com", + "fullScreen": true, + "popupText": "

Open Reddit in a web browser.

", + "description": "The full description of the button..." + }, + "separator", + "language", + "translate-tools", + "screen-zoom", + "text-zoom", + "screen-capture", + "snipping-tool", + "office-simplification", + "high-contrast", + "color-vision", + "mouse", + "read-aloud", + "volume", + "launch-documorph", + "cloud-folder-open", + "usb-open", + "separator", + "url-google-drive", + "url-one-drive", + "url-dropbox", + "url-customize-qss", + "separator-visible", + "service-more", + "service-save", + "service-undo", + "service-saved-settings", + "service-reset-all", + "service-close" + ] + }, + + // Whether to hide the QSS when a user clicks outside of it + closeQssOnClickOutside: true, + + // Whether to disable the displaying of notifications that suggest some + // applications may need to be restarted in order for a changed setting to be + // fully applied. An example for such setting is `Language`. + // If set to `true`, such notifications will NOT be displayed. + disableRestartWarning: true, + + // The shortcut that open the QSS. For posible values refer to: https://electronjs.org/docs/api/accelerator + openQssShortcut: "Shift+Ctrl+AltOrOption+SuperOrCmd+M", + + // Configuration options for the QSS More panel + qssMorePanel: { + // These are default values. The actual dimensions of the QSS more panel + // are qssScaleFactor * defaultWidth and qssScaleFactor * defaultHeight. + defaultWidth: 600, + defaultHeight: 450, + movable: true, + resizable: true, + alwaysOnTop: true, + + urls: { + moreInfo: "http://morphic.world/more" + } + }, + + // Configuration options for the About dialog + aboutDialog: { + urls: { + morphicHome: "https://morphic.world", + submitSuggestions: "mailto:suggestions@morphic.world" + } + }, + + // Configuration options for the dialog manager + dialogManager: { + showErrorDialog: true + }, + + // URL to the the place serving the survey triggers data. Note that it should return triggers in JSON format + surveyTriggersUrl: "http://survey.gpii.net/survey-triggers.json", + + // The type of widget to use in the task bar - "gpii.app.trayButton", "gpii.app.trayIcon", or both. + trayType: ["gpii.app.trayButton"], + + metrics: { + // Can be true to disable everything, or "errors-only" to only capture errors. + disable: false, + // true to disable capturing key/mouse timings + disableInput: false + }, + + autoLogin: { + blockedUsers: ["admin*", "guest*", "student*", "visitor*", "volunteer*"], + userIdSource: "username" + }, + + // Metrics switch (read by the service): ":" + metricsSwitch: "on:on" // (eg, "on:on"=both on (default), "off:on"=metrics only) +} diff --git a/osceola/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 b/osceola/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 new file mode 100644 index 0000000..4f7a18b --- /dev/null +++ b/osceola/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 @@ -0,0 +1,44 @@ +// Service configuration for production. +{ + "processes": { + "gpii": { + "command": "morphic-app.exe", + "ipc": "gpii", + "autoRestart": true, + "disabled": false, + env: { + NODE_ENV: "app.production", + GPII_CLOUD_URL: "https://flowmanager.prd.gcp.gpii.net" + } + } + }, + "logging": { + "level": "DEBUG" + }, + "secretFile": "%ProgramData%\\Morphic Credentials\\secret.txt", + "autoUpdate": { + "enabled": false, + "lastUpdatesFile": "%ProgramData%\\Morphic\\last-updates.json5", + "files": [{ + // Auto-update the site config. + path: "%ProgramData%\\Morphic\\siteConfig.json5", + url: "https://raw.githubusercontent.com/GPII/gpii-morphic-site-resources/master/osceola/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5" + }] + }, + "siteConfigFile": [ + "%ProgramData%\\Morphic\\siteConfig.json5", + "%ProgramFiles(x86)%\\Morphic\\windows\\resources\\app\\siteConfig.json5", + "%ProgramFiles%\\Morphic\\windows\\resources\\app\\siteConfig.json5" + ], + "gpiiConfig": { + "env": "NODE_ENV", + // Morphic + metrics: + "on:on": "app.production.metrics", + // No metrics or morphic: + "off:off": "app.disable", + // Metrics only: + "off:on": "app.metrics", + // No metrics: + "on:off": "app.production" + } +} diff --git a/osceola/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 b/osceola/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 new file mode 100644 index 0000000..5cfc230 --- /dev/null +++ b/osceola/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 @@ -0,0 +1,108 @@ +{ + "site": "osceolalibrary.org", + "hideQssSaveButton": false, + "defaultSettingsData": { + "relativePath": true, + "fileLocation": "gpii\\defaultSettings.json5" + }, + "qss": { + "osSettingsAvailable": true, + "showQssOnStart": true, + "tooltipDisplayDelay": 500, + "scaleFactor": 1.2, + "urls": { + "account": "http://morphic.world/account", + "cloudFolder": "https://docs.google.com/document/d/1l1Hlh3d8ALJL-inUtQ8pw0TCiMWpAc6tWYtr3OZl408/edit#", + "myGoogleDrive": "https://drive.google.com/", + "myOneDrive": "https://onedrive.live.com/about/signin/", + "myDropbox": "https://www.dropbox.com/login", + "customizeQss": "https://morphic.world/" + }, + "alwaysUseChrome": false, + "languageOptionLabel": { + "currentLanguageGroup": "%native", + "genericLanguage": "%native · %local" + }, + "systemDefaultLanguage": "en-US", + "messages": { + "keyedOut": "RESET TO STANDARD button turns off Morphic SAVE as part of resetting everything. To re-apply your saved settings and turn SAVE back on - use the \"My Saved Settings\" button and click \"reapply...\" OR you can use a Morphic Key if you have one." + }, + "shareXPath": "C:\\Program Files (x86)\\Morphic\\sharex\\sharex-portable\\sharex.exe", + "docuMorphExecutable": "C:\\Program Files (x86)\\Morphic\\documorph\\DocuMorph.Widget.exe", + "snippingToolCommand": "start ms-screenclip:", + "buttonList": [ + "language", + "translate-tools", + "screen-zoom", + "text-zoom", + "office-simplification", + "high-contrast", + "read-aloud", + "volume", + "cloud-folder-open", + "usb-open", + "office-simplification", + "high-contrast", + "color-vision", + "mouse", + "read-aloud", + "volume", + "launch-documorph", + "cloud-folder-open", + "usb-open", + "separator", + "url-google-drive", + "url-one-drive", + "url-dropbox", + "url-customize-qss", + "separator-visible", + "service-more", + "service-save", + "service-undo", + "service-saved-settings", + "service-reset-all", + "service-close" + ] + }, + "closeQssOnClickOutside": true, + "disableRestartWarning": true, + "openQssShortcut": "Shift+Ctrl+AltOrOption+SuperOrCmd+M", + "qssMorePanel": { + "defaultWidth": 600, + "defaultHeight": 450, + "movable": true, + "resizable": true, + "alwaysOnTop": true, + "urls": { + "moreInfo": "http://morphic.world/more" + } + }, + "aboutDialog": { + "urls": { + "morphicHome": "https://morphic.world", + "submitSuggestions": "mailto:suggestions@morphic.world" + } + }, + "dialogManager": { + "showErrorDialog": true + }, + "surveyTriggersUrl": "http://survey.gpii.net/chickasawTriggers.json", + "trayType": [ + "gpii.app.trayButton" + ], + "metrics": { + "disable": false, + "disableInput": false + }, + "autoLogin": { + "blockedUsers": [ + "admin*", + "guest*", + "student*", + "visitor*", + "volunteer*" + ], + "userIdSource": "reg:HKLM\\SOFTWARE\\MYPC3\\Service\\Username" + }, + "metricsSwitch": "off:on" +} \ No newline at end of file diff --git a/umd/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/service.json5 b/umd.edu/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/service.json5 similarity index 100% rename from umd/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/service.json5 rename to umd.edu/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/service.json5 diff --git a/umd/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/siteconfig.json5 b/umd.edu/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/siteconfig.json5 similarity index 100% rename from umd/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/siteconfig.json5 rename to umd.edu/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/siteconfig.json5 diff --git a/umd.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 b/umd.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 new file mode 100644 index 0000000..879761a --- /dev/null +++ b/umd.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 @@ -0,0 +1,44 @@ +// Service configuration for production. +{ + "processes": { + "gpii": { + "command": "morphic-app.exe", + "ipc": "gpii", + "autoRestart": true, + "disabled": false, + env: { + NODE_ENV: "app.production", + GPII_CLOUD_URL: "https://flowmanager.prd.gcp.gpii.net" + } + } + }, + "logging": { + "level": "DEBUG" + }, + "secretFile": "%ProgramData%\\Morphic Credentials\\secret.txt", + "autoUpdate": { + "enabled": false, + "lastUpdatesFile": "%ProgramData%\\Morphic\\last-updates.json5", + "files": [{ + // Auto-update the site config. + path: "%ProgramData%\\Morphic\\siteConfig.json5", + url: "https://raw.githubusercontent.com/GPII/gpii-morphic-site-resources/master/umd.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5" + }] + }, + "siteConfigFile": [ + "%ProgramData%\\Morphic\\siteConfig.json5", + "%ProgramFiles(x86)%\\Morphic\\windows\\resources\\app\\siteConfig.json5", + "%ProgramFiles%\\Morphic\\windows\\resources\\app\\siteConfig.json5" + ], + "gpiiConfig": { + "env": "NODE_ENV", + // Morphic + metrics: + "on:on": "app.production.metrics", + // No metrics or morphic: + "off:off": "app.disable", + // Metrics only: + "off:on": "app.metrics", + // No metrics: + "on:off": "app.production" + } +} diff --git a/umd.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 b/umd.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 new file mode 100644 index 0000000..6662035 --- /dev/null +++ b/umd.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 @@ -0,0 +1,106 @@ +{ + "site": "umd.edu", + "hideQssSaveButton": false, + "defaultSettingsData": { + "relativePath": true, + "fileLocation": "gpii\\defaultSettings.json5" + }, + "qss": { + "osSettingsAvailable": true, + "showQssOnStart": true, + "tooltipDisplayDelay": 500, + "scaleFactor": 1, + "urls": { + "account": "http://morphic.world/account", + "cloudFolder": "https://docs.google.com/document/d/1QeSsIkgKT6RIy8SbXc1qP__5rSzl3asO8HmkylBjeVA/edit", + "myGoogleDrive": "https://drive.google.com/", + "myOneDrive": "https://onedrive.live.com/about/signin/", + "myDropbox": "https://www.dropbox.com/login", + "customizeQss": "https://morphic.world/" + }, + "alwaysUseChrome": false, + "languageOptionLabel": { + "currentLanguageGroup": "%native", + "genericLanguage": "%native · %local" + }, + "systemDefaultLanguage": "en-US", + "messages": { + "keyedOut": "RESET TO STANDARD button turns off Morphic SAVE as part of resetting everything. To re-apply your saved settings and turn SAVE back on - use the \"My Saved Settings\" button and click \"Re-apply my preferences\". OR you can use a Morphic Key if you have one." + }, + "shareXPath": "C:\\Program Files (x86)\\Morphic\\sharex\\sharex-portable\\sharex.exe", + "docuMorphExecutable": "C:\\Program Files (x86)\\Morphic\\documorph\\DocuMorph.Widget.exe", + "snippingToolCommand": "start ms-screenclip:", + "buttonList": [ + { + "buttonId": "MakeYourOwn", + "buttonName": "ELMS", + "buttonType": "WEB", + "buttonData": "https://umd.instructure.com/", + "fullScreen": true, + "popupText": "

Opens your my ELMs account.

" + }, + "url-google-drive", + "usb-open", + "office-simplification", + "snipping-tool", + "separator", + "language", + "translate-tools", + "screen-zoom", + "text-zoom", + "high-contrast", + "color-vision", + "mouse", + "read-aloud", + "volume", + "separator-visible", + "service-more", + "service-save", + "service-undo", + "service-saved-settings", + "service-reset-all", + "service-close" + ] + }, + "closeQssOnClickOutside": false, + "disableRestartWarning": true, + "openQssShortcut": "Shift+Ctrl+AltOrOption+SuperOrCmd+M", + "qssMorePanel": { + "defaultWidth": 600, + "defaultHeight": 450, + "movable": true, + "resizable": true, + "alwaysOnTop": true, + "urls": { + "moreInfo": "http://morphic.world/more" + } + }, + "aboutDialog": { + "urls": { + "morphicHome": "https://morphic.world", + "submitSuggestions": "mailto:suggestions@morphic.world" + } + }, + "dialogManager": { + "showErrorDialog": true + }, + "surveyTriggersUrl": "http://survey.gpii.net/novaMaTriggers.json", + "trayType": [ + "gpii.app.trayButton" + ], + "metrics": { + "disable": false, + "disableInput": false + }, + "autoLogin": { + "blockedUsers": [ + "admin*", + "guest*", + "student*", + "visitor*", + "volunteer*" + ], + "userIdSource": "username" + }, + "metricsSwitch": "on:on" +} diff --git a/nova/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/service.json5 b/www.nvcc.edu/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/service.json5 similarity index 100% rename from nova/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/service.json5 rename to www.nvcc.edu/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/service.json5 diff --git a/nova/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/siteconfig.json5 b/www.nvcc.edu/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/siteconfig.json5 similarity index 100% rename from nova/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/siteconfig.json5 rename to www.nvcc.edu/1.3.0-dev.20191205T114812Z.268bb94b.GPII-4214.GPII-3572/siteconfig.json5 diff --git a/www.nvcc.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 b/www.nvcc.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 new file mode 100644 index 0000000..70c8eb5 --- /dev/null +++ b/www.nvcc.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/service.json5 @@ -0,0 +1,44 @@ +// Service configuration for production. +{ + "processes": { + "gpii": { + "command": "morphic-app.exe", + "ipc": "gpii", + "autoRestart": true, + "disabled": false, + env: { + NODE_ENV: "app.production", + GPII_CLOUD_URL: "https://flowmanager.prd.gcp.gpii.net" + } + } + }, + "logging": { + "level": "DEBUG" + }, + "secretFile": "%ProgramData%\\Morphic Credentials\\secret.txt", + "autoUpdate": { + "enabled": false, + "lastUpdatesFile": "%ProgramData%\\Morphic\\last-updates.json5", + "files": [{ + // Auto-update the site config. + path: "%ProgramData%\\Morphic\\siteConfig.json5", + url: "https://raw.githubusercontent.com/GPII/gpii-morphic-site-resources/master/www.nvcc.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5" + }] + }, + "siteConfigFile": [ + "%ProgramData%\\Morphic\\siteConfig.json5", + "%ProgramFiles(x86)%\\Morphic\\windows\\resources\\app\\siteConfig.json5", + "%ProgramFiles%\\Morphic\\windows\\resources\\app\\siteConfig.json5" + ], + "gpiiConfig": { + "env": "NODE_ENV", + // Morphic + metrics: + "on:on": "app.production.metrics", + // No metrics or morphic: + "off:off": "app.disable", + // Metrics only: + "off:on": "app.metrics", + // No metrics: + "on:off": "app.production" + } +} diff --git a/www.nvcc.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 b/www.nvcc.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 new file mode 100644 index 0000000..97fdf69 --- /dev/null +++ b/www.nvcc.edu/1.3.1-dev.20200121T143041Z.b24bc198.GPII-4214.GPII-3572/siteconfig.json5 @@ -0,0 +1,106 @@ +{ + "site": "nvcc.org", + "hideQssSaveButton": false, + "defaultSettingsData": { + "relativePath": true, + "fileLocation": "gpii\\defaultSettings.json5" + }, + "qss": { + "osSettingsAvailable": true, + "showQssOnStart": true, + "tooltipDisplayDelay": 500, + "scaleFactor": 1, + "urls": { + "account": "http://morphic.world/account", + "cloudFolder": "https://docs.google.com/document/d/1D6WDkLHLdbftqBwJ_M7XBeyunCyyuoL0oSsMDRKHod0/edit#", + "myGoogleDrive": "https://drive.google.com/", + "myOneDrive": "https://onedrive.live.com/about/signin/", + "myDropbox": "https://www.dropbox.com/login", + "customizeQss": "https://morphic.world/" + }, + "alwaysUseChrome": false, + "languageOptionLabel": { + "currentLanguageGroup": "%native", + "genericLanguage": "%native · %local" + }, + "systemDefaultLanguage": "en-US", + "messages": { + "keyedOut": "RESET TO STANDARD button turns off Morphic SAVE as part of resetting everything. To re-apply your saved settings and turn SAVE back on - use the \"My Saved Settings\" button and click \"reapply...\"" + }, + "shareXPath": "C:\\Program Files (x86)\\Morphic\\sharex\\sharex-portable\\sharex.exe", + "docuMorphExecutable": "C:\\Program Files (x86)\\Morphic\\documorph\\DocuMorph.Widget.exe", + "snippingToolCommand": "start ms-screenclip:", + "buttonList": [ + { + "buttonId": "MakeYourOwn", + "buttonName": "MyNOVA", + "buttonType": "WEB", + "buttonData": "https://nvcc.my.vccs.edu/", + "fullScreen": true, + "popupText": "

Opens your my NOVA and canvas account.

" + }, + "url-google-drive", + "usb-open", + "office-simplification", + "snipping-tool", + "separator", + "language", + "translate-tools", + "screen-zoom", + "text-zoom", + "high-contrast", + "color-vision", + "mouse", + "read-aloud", + "volume", + "separator-visible", + "service-more", + "service-save", + "service-undo", + "service-saved-settings", + "service-reset-all", + "service-close" + ] + }, + "closeQssOnClickOutside": false, + "disableRestartWarning": true, + "openQssShortcut": "Shift+Ctrl+AltOrOption+SuperOrCmd+M", + "qssMorePanel": { + "defaultWidth": 600, + "defaultHeight": 450, + "movable": true, + "resizable": true, + "alwaysOnTop": true, + "urls": { + "moreInfo": "http://morphic.world/more" + } + }, + "aboutDialog": { + "urls": { + "morphicHome": "https://morphic.world", + "submitSuggestions": "mailto:suggestions@morphic.world" + } + }, + "dialogManager": { + "showErrorDialog": true + }, + "surveyTriggersUrl": "http://survey.gpii.net/novaMaTriggers.json", + "trayType": [ + "gpii.app.trayButton" + ], + "metrics": { + "disable": false, + "disableInput": false + }, + "autoLogin": { + "blockedUsers": [ + "admin*", + "guest*", + "student*", + "visitor*", + "volunteer*" + ], + "userIdSource": "userid" + }, + "metricsSwitch": "on:on" +}