We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f36703 commit ba19b67Copy full SHA for ba19b67
build.py
@@ -7,7 +7,7 @@
7
8
cmds = ["pyinstaller"]
9
10
-# cmds.append("--windowed")
+cmds.append("--windowed")
11
12
cmds.append("--icon")
13
cmds.append("src/image/logo.png")
src/main.html
@@ -261,7 +261,8 @@
261
<script src="./vue.global.prod.js"></script>
262
<script src="./vue-i18n.global.prod.js"></script>
263
<script type="module">
264
- const VERSION = "1.0.0";
+ // TODO: Version
265
+ const VERSION = "0.2.0";
266
const { createApp } = Vue;
267
const { createI18n } = VueI18n;
268
let api = null;
@@ -435,7 +436,6 @@
435
436
}
437
};
438
- // TODO: PlayerList
439
const PlayerList = {
440
components: {
441
UiContainer
0 commit comments