feat: Bundled NW.js with appimages
feat: Implemented self update feat: Added rclone saves for emulators fix: Fixed auto focus in builds feat: Added helper cards on empty library
This commit is contained in:
parent
587956c792
commit
813785f4f3
59 changed files with 1210 additions and 480 deletions
|
|
@ -3,6 +3,7 @@ import path from 'node:path';
|
|||
import { SettingsType } from '@/shared/constants';
|
||||
import { config } from './api/app';
|
||||
import fs from 'node:fs/promises';
|
||||
import packageDef from '~/package.json';
|
||||
|
||||
export function checkRunning (pid: number)
|
||||
{
|
||||
|
|
@ -172,4 +173,9 @@ export async function moveAllFiles (srcDir: string, destDir: string)
|
|||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export function getAppVersion ()
|
||||
{
|
||||
return process.env.VERSION_OVERRIDE ?? packageDef.version;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue