begin implementation of plugin downloader

This commit is contained in:
janis
2023-05-31 14:27:17 +02:00
parent 9eee7a9878
commit 58e114e368
4 changed files with 18 additions and 2 deletions

View File

@@ -11,5 +11,7 @@
"pluginCreator": "Janis Hutz", "pluginCreator": "Janis Hutz",
"pluginCreatorLink": "https://janishutz.com", "pluginCreatorLink": "https://janishutz.com",
"engineLink": "", "engineLink": "",
"supports": [ "upscaling", "sharpening" ] "supports": [ "upscaling", "sharpening" ],
"engineDownloadLink":"",
"filesToInclude": [ "fsr.py" ]
} }

View File

@@ -10,5 +10,7 @@
"pluginCreator": "Janis Hutz", "pluginCreator": "Janis Hutz",
"pluginCreatorLink": "https://janishutz.com", "pluginCreatorLink": "https://janishutz.com",
"engineLink": "", "engineLink": "",
"supports": [ "upscaling" ] "supports": [ "upscaling" ],
"engineDownloadLink":"",
"filesToInclude": [ "fsr.py" ]
} }

9
bin/pluginDownloader.py Normal file
View File

@@ -0,0 +1,9 @@
"""
* ImageVideoUpscaler - pluginDownloader.py
*
* Created by Janis Hutz 05/31/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
"""

3
plugins/plugins.json Normal file
View File

@@ -0,0 +1,3 @@
{
"fsr": { "displayName":"AMD FidelityFX Super Resolution" }
}