diff --git a/README.md b/README.md
index 9b5a725..be2d82a 100755
--- a/README.md
+++ b/README.md
@@ -59,20 +59,20 @@ This App also features a CLI interface (reference out of date).
# Contributing
If you have any suggestions or features you'd like to have implemented, you may either implement the feature yourself and open a pull request, or open an issue on this GitHub page. Both things are appreciated!
-*I am looking for somebody willing to maintain the Windows version (including installer) as I am running Linux*
--> Follow the rules layed out in CONTRIBUTING.md
--> We will add a linter that will then run on circleci to ensure code quality is high
### Current Contributers
- simplePCBuilding (Maintainer) [Core (CLI), Docs, Website, Frontend, Linux packages]
-- ThatPlasma (Testing, Packager) [Testing, Windows Package]
+- ThatPlasma (Testing, Packager) [Testing]
# Roadmap
V2.0.0:
-- Migrate to Electron app
-- Package Windows & Linux Version
+- Migrate to Electron app -- ✅
+- Package Windows & Linux Version -- ✅
+- Add packaging script for Linux & Windows version -- ✅
- Make python app CLI only -- ✅
- Refactor backend to add plugin support -- ✅
diff --git a/frontend/src/upscalingHandler.js b/frontend/src/upscalingHandler.js
index 63050c5..b3e0ed2 100644
--- a/frontend/src/upscalingHandler.js
+++ b/frontend/src/upscalingHandler.js
@@ -39,6 +39,8 @@ class UpscalingHandler {
// add additional options
// baseCommand += + ' -S ' + options.sharpening
// baseCommand += ' -E ' + options.engine + ' -M ' + options.algorithm
+
+ console.log( 'upscaling' );
let child = child_process.spawn( baseCommand, args );
@@ -52,6 +54,7 @@ class UpscalingHandler {
} );
child.on( 'error', ( error ) => {
+ console.log( 'An error occurred' + error );
new Notification( { title: `ImageVideoUpscaler - Error whilst upscaling', body: 'Your upscaling Job encountered an error whilst upscaling. (Error message: ${ error.message }).`} )
} );
diff --git a/frontend/src/views/HomeView.vue b/frontend/src/views/HomeView.vue
index 30b3bfb..490f640 100644
--- a/frontend/src/views/HomeView.vue
+++ b/frontend/src/views/HomeView.vue
@@ -12,11 +12,15 @@
-
- x
+