Compare commits

..

No commits in common. "main" and "stable" have entirely different histories.
main ... stable

4 changed files with 7 additions and 2 deletions

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 257 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 149 KiB

View File

@ -26,6 +26,7 @@ module.exports.checkUpdate = () => {
log.update("Verification des mises a jour ... Processing !")
fetch("https://git.raphix.fr/subsonics/manager/raw/branch/main/package.json").catch(err => catchError(err)).then(resp => resp.json()).then(resp => checkUpdateProcessing(resp))
@ -57,8 +58,12 @@ function selfUpdate() {
var settings = getSettings()
const win = BWin.getFocusedWindow()
var link = "https://git.raphix.fr/subsonics/manager/archive/main.tar.gz"
var link = "https://git.raphix.fr/subsonics/manager/archive/stable.tar.gz"
if(settings.canaldev == true) {
link = "https://git.raphix.fr/subsonics/manager/archive/main.tar.gz"
}
win.loadFile("templates/update/update.html")