Skip to content

Commit 3a1a634

Browse files
committed
notes for release day
1 parent f139ef8 commit 3a1a634

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

node/main-globals.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
import type { ScreenshotSettings, InputSources } from '../interfaces/final-object.interface';
22

3+
// For release, update 4 values: <---- !!! RELEASE !!!
4+
//
5+
// `demo: true,` -- below
6+
// `version: 'X.X.X',` -- below
7+
// `productName: "... Demo'` -- package.json
8+
// `"version": "X.X.X",` -- package.json
9+
310
export const GLOBALS: VhaGlobals = {
411
angularApp: null, // reference used to send messages back to Angular App
512
currentlyOpenVhaFile: '', // OFFICAL DECREE IN NODE WHICH FILE IS CURRENTLY OPEN !!!
613
debug: false,
7-
demo: false, // update `package.json` version to `#.#.#-demo` when building the demo <---- !!!
14+
demo: false, // change to `true` during release <---- !!! RELEASE !!!
815
hubName: 'untitled', // in case user doesn't name their hub any name
916
macVersion: false, // auto updated by `main.ts`
1017
readyToQuit: false, // hack to quit gracefully
1118
selectedOutputFolder: '',
1219
selectedSourceFolders: {},
1320
settingsPath: '', // to differentiate between standard & Windows Portable settings location
14-
version: '3.2.1', // update it and the `package.json` version in tandem before release! <---- !!!
21+
version: '3.2.1', // see instructions above to update `package.json` in tandem <---- !!! RELEASE !!!!
1522
vhaFileVersion: 3,
1623
winRef: null,
1724
screenshotSettings: {

0 commit comments

Comments
 (0)