diff --git a/.gitignore b/.gitignore index 35a950e..3eab2be 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /launcher.json +/dist # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/main.py b/main.py index c451625..04b79e0 100644 --- a/main.py +++ b/main.py @@ -62,13 +62,14 @@ class Api: bufsize=1, text=True, cwd=cwd, + encoding="utf-8", ) as p: for line in p.stdout: custom_event(line) window = webview.create_window("mower-ng launcher", "dist/index.html", js_api=Api()) -webview.start() +webview.start(debug=True) with config_path.open("w") as f: json.dump(config, f) diff --git a/ui/.gitignore b/ui/.gitignore index 8ee54e8..c6657dd 100644 --- a/ui/.gitignore +++ b/ui/.gitignore @@ -1,3 +1,5 @@ +/dist.zip + # Logs logs *.log diff --git a/ui/src/components/LogComponent.vue b/ui/src/components/LogComponent.vue index e5fe29e..36ca683 100644 --- a/ui/src/components/LogComponent.vue +++ b/ui/src/components/LogComponent.vue @@ -6,9 +6,21 @@ const log_ele = inject('log_ele') + +