1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Fixed updater.

This commit is contained in:
Koen 2023-12-10 12:03:06 +01:00
parent 33a8d684bf
commit 9102804172
2 changed files with 17 additions and 7 deletions

View file

@ -1,6 +1,6 @@
{
"name": "fcast-receiver",
"version": "1.0.8",
"version": "1.0.9",
"description": "An application implementing a FCast receiver.",
"main": "dist/bundle.js",
"author": "Koen Jeukendrup",

View file

@ -12,15 +12,25 @@ export class Updater {
this.basePath = basePath;
this.baseUrl = baseUrl;
this.appFiles = [
'dist/main/c.mp4',
'dist/main/index.html',
'dist/main/preload.js',
'dist/main/qrcode.min.js',
'dist/main/renderer.js',
'dist/main/style.css',
'dist/main/video-js.min.css',
'dist/main/video.min.js',
'dist/player/index.html',
'dist/player/preload.js',
'dist/player/renderer.js',
'dist/player/style.css',
'dist/player/video-js.min.css',
'dist/player/video.min.js',
'dist/app.ico',
'dist/index.html',
'dist/style.css',
'dist/app.png',
'dist/preload.js',
'dist/video-js.min.css',
'dist/bundle.js',
'dist/renderer.js',
'dist/video.min.js',
'package.json'
];
}