Fix some more wrong names & update Readme
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# FSRSimpleMediaUpscalerLiteFrontend - .gitignore
|
# SimpleMediaUpscalerLite - .gitignore
|
||||||
#
|
#
|
||||||
# Created by Janis Hutz 05/24/2023, Licensed under the GPL V3 License
|
# Created by Janis Hutz 05/24/2023, Licensed under the GPL V3 License
|
||||||
# https://janishutz.com, development@janishutz.com
|
# https://janishutz.com, development@janishutz.com
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@@ -653,7 +653,7 @@ Also add information on how to contact you by electronic and paper mail.
|
|||||||
If the program does terminal interaction, make it output a short
|
If the program does terminal interaction, make it output a short
|
||||||
notice like this when it starts in an interactive mode:
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
SimpleMediaUpscalerLiteFrontend Copyright (C) 2023 Janis Hutz
|
SimpleMediaUpscalerLite Copyright (C) 2023 Janis Hutz
|
||||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
This is free software, and you are welcome to redistribute it
|
This is free software, and you are welcome to redistribute it
|
||||||
under certain conditions; type `show c' for details.
|
under certain conditions; type `show c' for details.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<div id="title" align="center">
|
<div id="title" align="center">
|
||||||
<img src="./logo.png" width="300">
|
<img src="./logo.png" width="300">
|
||||||
<h1>SimpleMediaUpscalerLiteFrontend</h1>
|
<h1>SimpleMediaUpscalerLite</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="badges" align="center">
|
<div id="badges" align="center">
|
||||||
@@ -22,7 +22,10 @@
|
|||||||
<img src="https://img.shields.io/github/package-json/v/simplePCBuilding/SimpleMediaUpscalerLite.svg?label=Development Version">
|
<img src="https://img.shields.io/github/package-json/v/simplePCBuilding/SimpleMediaUpscalerLite.svg?label=Development Version">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
An Electron App with Python CLI to upscale images and videos using multiple different upscaling engines.
|
smuL (pronounced like "small") is an Electron App with Python CLI to upscale images and videos using multiple different upscaling engines.
|
||||||
|
|
||||||
|
# New LOGO needed!
|
||||||
|
If you have a suggestion for a new logo, please comment on this issue [here](https://github.com/simplePCBuilding/SimpleMediaScalerLite/issues/16)
|
||||||
|
|
||||||
# Functionality
|
# Functionality
|
||||||
This app allows you to fully automatically upscale a single file or a full on folder with one of many different engines.
|
This app allows you to fully automatically upscale a single file or a full on folder with one of many different engines.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
'''
|
'''
|
||||||
* FSRSimpleMediaUpscalerLiteFrontend - handler.py
|
* SimpleMediaUpscalerLite - handler.py
|
||||||
*
|
*
|
||||||
* Created by Janis Hutz 03/14/2023, Licensed under the GPL V3 License
|
* Created by Janis Hutz 03/14/2023, Licensed under the GPL V3 License
|
||||||
* https://janishutz.com, development@janishutz.com
|
* https://janishutz.com, development@janishutz.com
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
},
|
},
|
||||||
"license": "GPL-3.0-or-later",
|
"license": "GPL-3.0-or-later",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/simplePCBuilding/FSRSimpleMediaUpscalerLiteFrontend/issues"
|
"url": "https://github.com/simplePCBuilding/SimpleMediaUpscalerLite/issues"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/simplePCBuilding/FSRSimpleMediaUpscalerLiteFrontend.git"
|
"url": "git+https://github.com/simplePCBuilding/SimpleMediaUpscalerLite.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"upscaler",
|
"upscaler",
|
||||||
@@ -21,8 +21,8 @@
|
|||||||
"author": "Janis Hutz",
|
"author": "Janis Hutz",
|
||||||
"license": "GPL-3.0-or-later",
|
"license": "GPL-3.0-or-later",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/simplePCBuilding/FSRSimpleMediaUpscalerLiteFrontend/issues",
|
"url": "https://github.com/simplePCBuilding/SimpleMediaUpscalerLite/issues",
|
||||||
"email": "development@janishutz.com"
|
"email": "development@janishutz.com"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/simplePCBuilding/FSRSimpleMediaUpscalerLiteFrontend#readme"
|
"homepage": "https://github.com/simplePCBuilding/SimpleMediaUpscalerLite#readme"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
"""
|
"""
|
||||||
* FSRSimpleMediaUpscalerLiteFrontend - fsrSimpleMediaUpscalerLite-cli.py
|
* SimpleMediaUpscalerLite - fsrSimpleMediaUpscalerLite-cli.py
|
||||||
*
|
*
|
||||||
* Created by Janis Hutz 03/15/2023, Licensed under the GPL V3 License
|
* Created by Janis Hutz 03/15/2023, Licensed under the GPL V3 License
|
||||||
* https://janishutz.com, development@janishutz.com
|
* https://janishutz.com, development@janishutz.com
|
||||||
|
|||||||
Reference in New Issue
Block a user