mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 05:13:32 +00:00
v2 styling (#263)
* feat: implement progress bar on running event * refactor: use event action hook * refactor: align backend data * style: v2 style tweaks * style: v2 style tweaks + ts <Info> * fix: fix delay increment calls * style: v2 style tweaks + ts <Playback> * style: v2 style tweaks + ts <EventEditor> * style: v2 style tweaks + ts <MessageControl> * fix: naming issue with message control socket endpoint * chore: upgrade style dependencies * style: v2 style tweaks + ts <MenuBar> * style: v2 style tweaks + ts <RundownMenu> * style: v2 style tweaks + ts <Playback> * fix: add selected and next information to EventTimer * style: v2 style tweaks + ts <EventBlock> * style: v2 style tweaks + ts <DelayBlock> * style: v2 style tweaks + ts <BlockBlock> * style: v2 style tweaks + ts <QuickEntry> * refactor: extract <TextInput> logic * chore: upgrade build dependencies * chore: folder structure refactor * fix: issue with dependency path in electron * chore: update version in demo db
This commit is contained in:
+5
-1
@@ -30,7 +30,11 @@ let isQuitting = false;
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
const dbLoader = await import('./src/modules/loadDb.js');
|
||||
const loadDepPath = isProduction
|
||||
? path.join('file://', __dirname, '../', 'extraResources', 'src/modules/loadDb.js')
|
||||
: path.join('file://', __dirname, 'src/modules/loadDb.js');
|
||||
|
||||
const dbLoader = await import(loadDepPath);
|
||||
|
||||
await dbLoader.promise;
|
||||
const { startServer, startOSCServer } = await import(nodePath);
|
||||
|
||||
Reference in New Issue
Block a user