
-
About SimpleMediaScalerLite
-
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).
+
About SimpleMediaUpscalerLite
+
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).
You are currently running version {{ appVersion }}. {{ versionNotice[ isUpToDate ] }}.
@@ -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 ) {
diff --git a/frontend/src/views/HomeView.vue b/frontend/src/views/HomeView.vue
index 8cfa3b3..9f81797 100644
--- a/frontend/src/views/HomeView.vue
+++ b/frontend/src/views/HomeView.vue
@@ -1,6 +1,6 @@
-
SimpleMediaScalerLite
+
SimpleMediaUpscalerLite
diff --git a/package.json b/package.json
index 4a108e4..6843bf4 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "SimpleMediaScalerLite",
+ "name": "SimpleMediaUpscalerLite",
"version": "2.0.0",
"description": "A frontend to upscale your videos and images using different upscale engines",
"main": "index.js",
@@ -8,7 +8,7 @@
},
"repository": {
"type": "git",
- "url": "git+https://github.com/simplePCBuilding/FSRSimpleMediaScalerLiteFrontend.git"
+ "url": "git+https://github.com/simplePCBuilding/FSRSimpleMediaUpscalerLiteFrontend.git"
},
"keywords": [
"upscaler",
@@ -21,8 +21,8 @@
"author": "Janis Hutz",
"license": "GPL-3.0-or-later",
"bugs": {
- "url": "https://github.com/simplePCBuilding/FSRSimpleMediaScalerLiteFrontend/issues",
+ "url": "https://github.com/simplePCBuilding/FSRSimpleMediaUpscalerLiteFrontend/issues",
"email": "development@janishutz.com"
},
- "homepage": "https://github.com/simplePCBuilding/FSRSimpleMediaScalerLiteFrontend#readme"
+ "homepage": "https://github.com/simplePCBuilding/FSRSimpleMediaUpscalerLiteFrontend#readme"
}
diff --git a/smuL-cli.py b/smuL-cli.py
index 49c5a11..f4fdc91 100644
--- a/smuL-cli.py
+++ b/smuL-cli.py
@@ -1,5 +1,5 @@
"""
-* FSRSimpleMediaScalerLiteFrontend - fsrSimpleMediaScalerLite-cli.py
+* FSRSimpleMediaUpscalerLiteFrontend - fsrSimpleMediaUpscalerLite-cli.py
*
* Created by Janis Hutz 03/15/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
@@ -116,7 +116,7 @@ def performChecks ( args, ap ):
print( '\n\n' )
if __name__ == '__main__':
- ap = argparse.ArgumentParser( description='SimpleMediaScalerLite - CLI, a CLI application to upscale videos and images using different upscaling engines.' )
+ ap = argparse.ArgumentParser( description='SimpleMediaUpscalerLite - CLI, a CLI application to upscale videos and images using different upscaling engines.' )
ap.add_argument( '-i', '--inputfile', help='File path for the video / image to be upscaled' )
ap.add_argument( '-o', '--outputfile', help='Output file path for the video / image that was upscaled' )
ap.add_argument( '-s', '--scalefactor', help='Scale factor for the video / image. Can be a integer from -4 to 4' )
@@ -149,4 +149,4 @@ if __name__ == '__main__':
mode = option
break
if ( handler.handler( args.inputfile, args.scalefactor, output, args.sharpening, args.filetype, args.engine, mode, args.threads ) ):
- print( '\n\n---------------------------------------------------------------------------------\n\nDONE \n\n\n\nSimpleMediaScalerLite V1.1.0\n\nCopyright 2023 SimpleMediaScalerLite contributors\nThis application comes with absolutely no warranty to the extent permitted by applicable law\n\n\n\nOutput was written to ' + output + '\n\n\n' )
+ print( '\n\n---------------------------------------------------------------------------------\n\nDONE \n\n\n\nSimpleMediaUpscalerLite V1.1.0\n\nCopyright 2023 SimpleMediaUpscalerLite contributors\nThis application comes with absolutely no warranty to the extent permitted by applicable law\n\n\n\nOutput was written to ' + output + '\n\n\n' )
diff --git a/website/plugins.md b/website/plugins.md
index 9f42094..e3d0c78 100644
--- a/website/plugins.md
+++ b/website/plugins.md
@@ -1,4 +1,4 @@
-# Writing plugins for SimpleMediaScalerLite
+# Writing plugins for SimpleMediaUpscalerLite
Your plugin has to fulfill the following requirements:
- Name of class it exposes has to be [name of engine]Scaler. The name of the file should be just the name of the engine in all lower case.