Logo Changé

This commit is contained in:
CICD - Pipeline 2023-09-07 23:32:02 +02:00
parent 8ce7f71fad
commit e4981ca3fc
4 changed files with 3 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "subsonics-manager",
"version": "2.4.0",
"version": "2.4.1",
"description": "Manager for subsonics",
"main": "main.js",
"scripts": {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 KiB

After

Width:  |  Height:  |  Size: 257 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 149 KiB

View File

@ -26,13 +26,10 @@ module.exports.checkUpdate = () => {
log.update("Verification des mises a jour ... Processing !")
if(settings.canaldev == true) {
fetch("https://git.raphix.fr/subsonics/manager/raw/branch/main/package.json").catch(err => catchError(err)).then(resp => resp.json()).then(resp => checkUpdateProcessing(resp))
fetch("https://git.raphix.fr/subsonics/manager/raw/branch/main/package.json").catch(err => catchError(err)).then(resp => resp.json()).then(resp => checkUpdateProcessing(resp))
} else {
fetch("https://git.raphix.fr/subsonics/manager/raw/branch/stable/package.json").catch(err => catchError(err)).then(resp => resp.json()).then(resp => checkUpdateProcessing(resp))
}
}