Compare commits

...

2 commits

Author SHA1 Message Date
5c3c85edc6 package: Create new release
All checks were successful
/ deploy (push) Successful in -2040h37m34s
2024-04-06 15:00:28 +00:00
d714a56db3 encoder: Add date text support in encoder command
All checks were successful
/ deploy (push) Successful in -2040h37m40s
2024-04-06 14:59:27 +00:00
2 changed files with 2 additions and 1 deletions

View file

@ -169,6 +169,7 @@ class EncoderManager {
}
command = command.replace('-f decklink ', `${settings.format_code} -f decklink ${settings.device} `)
}
command = command.replace('$date$', new Date().toISOString().replace('T','_').replace(/:/g,'').split('.')[0])
let process = await runCommand('', command, this.fromEncoder.bind(this), true)
this.attempting.value = process

View file

@ -1,6 +1,6 @@
{
"name": "church_streamer",
"version": "1.0.3",
"version": "1.0.4",
"description": "",
"main": "index.mjs",
"scripts": {