fix name wrong
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# SimpleMediaScalerLite
|
||||
# SimpleMediaUpscalerLite
|
||||
|
||||
## Project setup
|
||||
```
|
||||
|
||||
4
frontend/package-lock.json
generated
4
frontend/package-lock.json
generated
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "SimpleMediaScalerLite",
|
||||
"name": "SimpleMediaUpscalerLite",
|
||||
"version": "2.0.0-dev1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "SimpleMediaScalerLite",
|
||||
"name": "SimpleMediaUpscalerLite",
|
||||
"version": "2.0.0-dev1",
|
||||
"hasInstallScript": true,
|
||||
"license": "GPL-3.0-or-later",
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"name": "SimpleMediaScalerLite",
|
||||
"name": "SimpleMediaUpscalerLite",
|
||||
"version": "2.0.0-dev1",
|
||||
"maintainers": [
|
||||
"Janis Hutz <development@janishutz.com>"
|
||||
],
|
||||
"description": "An Electron frontend to the SimpleMediaScalerLite-CLI",
|
||||
"description": "An Electron frontend to the SimpleMediaUpscalerLite-CLI",
|
||||
"homepage": "https://janishutz.com/scaler.html",
|
||||
"author": {
|
||||
"name": "Janis Hutz",
|
||||
@@ -13,7 +13,7 @@
|
||||
},
|
||||
"license": "GPL-3.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/simplePCBuilding/FSRSimpleMediaScalerLiteFrontend/issues"
|
||||
"url": "https://github.com/simplePCBuilding/FSRSimpleMediaUpscalerLiteFrontend/issues"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* SimpleMediaScalerLite - upscalingHandler.js
|
||||
* SimpleMediaUpscalerLite - upscalingHandler.js
|
||||
*
|
||||
* Created by Janis Hutz 06/03/2023, Licensed under the GPL V3 License
|
||||
* https://janishutz.com, development@janishutz.com
|
||||
@@ -56,12 +56,12 @@ class UpscalingHandler {
|
||||
child.on( 'error', ( error ) => {
|
||||
console.log( 'An error occurred' + error );
|
||||
win.send( 'error', 'An error occurred during upscaling. (Error message: ' + error.message + ')' );
|
||||
new Notification( { title: `SimpleMediaScalerLite - Error whilst upscaling', body: 'Your upscaling Job encountered an error whilst upscaling. (Error message: ${ error.message }).`} ).show();
|
||||
new Notification( { title: `SimpleMediaUpscalerLite - Error whilst upscaling', body: 'Your upscaling Job encountered an error whilst upscaling. (Error message: ${ error.message }).`} ).show();
|
||||
} );
|
||||
|
||||
child.on( 'close', ( code ) => {
|
||||
win.send( 'finish', 'Your upscaling job finished with exit code ' + code + '. You may find its output here: ' + options.OutputFile );
|
||||
new Notification( { title: `SimpleMediaScalerLite - Job complete', body: 'Your Upscaling job has completed successfully (Code ${ code }). You may find its output here: ` + options.OutputFile } ).show();
|
||||
new Notification( { title: `SimpleMediaUpscalerLite - Job complete', body: 'Your Upscaling job has completed successfully (Code ${ code }). You may find its output here: ` + options.OutputFile } ).show();
|
||||
} );
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<template>
|
||||
<div class="about">
|
||||
<img src="@/assets/logo.png">
|
||||
<h1>About SimpleMediaScalerLite</h1>
|
||||
<p>SimpleMediaScalerLite is an application that allows you to upscale your videos and / or images. It uses an Electron GUI (Graphical User Interface) and a Python CLI (Command Line Interface).</p>
|
||||
<h1>About SimpleMediaUpscalerLite</h1>
|
||||
<p>SimpleMediaUpscalerLite is an application that allows you to upscale your videos and / or images. It uses an Electron GUI (Graphical User Interface) and a Python CLI (Command Line Interface).</p>
|
||||
<div class="version-info">
|
||||
<h3>You are currently running version {{ appVersion }}. {{ versionNotice[ isUpToDate ] }}.</h3>
|
||||
</div>
|
||||
@@ -20,7 +20,7 @@ export default {
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
fetch( 'https://api.github.com/repos/simplePCBuilding/SimpleMediaScalerLite/releases/latest' ).then( res => {
|
||||
fetch( 'https://api.github.com/repos/simplePCBuilding/SimpleMediaUpscalerLite/releases/latest' ).then( res => {
|
||||
res.json().then( data => {
|
||||
this.latestVersion = data.tag_name;
|
||||
if ( data.tag_name != this.appVersion ) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="home">
|
||||
<h1>SimpleMediaScalerLite</h1>
|
||||
<h1>SimpleMediaUpscalerLite</h1>
|
||||
<div class="table-container">
|
||||
<table>
|
||||
<tr id="group1" class="group">
|
||||
|
||||
Reference in New Issue
Block a user