Skip to content

Commit

Permalink
notes for release day
Browse files Browse the repository at this point in the history
  • Loading branch information
whyboris committed Oct 23, 2024
1 parent f139ef8 commit 3a1a634
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions node/main-globals.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
import type { ScreenshotSettings, InputSources } from '../interfaces/final-object.interface';

// For release, update 4 values: <---- !!! RELEASE !!!
//
// `demo: true,` -- below
// `version: 'X.X.X',` -- below
// `productName: "... Demo'` -- package.json
// `"version": "X.X.X",` -- package.json

export const GLOBALS: VhaGlobals = {
angularApp: null, // reference used to send messages back to Angular App
currentlyOpenVhaFile: '', // OFFICAL DECREE IN NODE WHICH FILE IS CURRENTLY OPEN !!!
debug: false,
demo: false, // update `package.json` version to `#.#.#-demo` when building the demo <---- !!!
demo: false, // change to `true` during release <---- !!! RELEASE !!!
hubName: 'untitled', // in case user doesn't name their hub any name
macVersion: false, // auto updated by `main.ts`
readyToQuit: false, // hack to quit gracefully
selectedOutputFolder: '',
selectedSourceFolders: {},
settingsPath: '', // to differentiate between standard & Windows Portable settings location
version: '3.2.1', // update it and the `package.json` version in tandem before release! <---- !!!
version: '3.2.1', // see instructions above to update `package.json` in tandem <---- !!! RELEASE !!!!
vhaFileVersion: 3,
winRef: null,
screenshotSettings: {
Expand Down

0 comments on commit 3a1a634

Please sign in to comment.