1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zwave-js-ui_ynh.git synced 2024-09-03 18:06:00 +02:00

Merge pull request #20 from YunoHost-Apps/testing

8.6.1 + autoupdater
This commit is contained in:
Krakinou 2022-12-17 23:10:29 +01:00 committed by GitHub
commit 8b8fdc758b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 22 deletions

View file

@ -9,7 +9,7 @@ current_version=$(cat manifest.json | jq -j '.version|split("~")[0]')
repo=$(cat manifest.json | jq -j '.upstream.code|split("https://github.com/")[1]')
# Some jq magic is needed, because the latest upstream release is not always the latest version (e.g. security patches for older versions)
version=$(curl --silent "https://api.github.com/repos/$repo/releases" | jq -r '.[] | select( .prerelease != true ) | .tag_name' | sort -V | tail -1)
assets=($(curl --silent "https://api.github.com/repos/$repo/releases" | jq -r '[ .[] | select(.tag_name=="'$version'").assets[].browser_download_url ] | join(" ") | @sh' | tr -d "'"))
assets=($(curl --silent "https://api.github.com/repos/$repo/releases" | jq -r '[ .[] | select(.tag_name=="'$version'").zipball_url ] | join(" ") | @sh' | tr -d "'"))
# Later down the script, we assume the version has only digits and dots
# Sometimes the release name starts with a "v", so let's filter it out.
@ -53,15 +53,17 @@ echo "Handling asset at $asset_url"
# Assign the asset to a source file in conf/ directory
# Leave $src empty to ignore the asset
case $asset_url in
*"Source"*)
#case $asset_url in
# *"Source"*)
# src="app"
# ;;
# *)
# src=""
# ;;
#esac
#There should be only one asset in the zipball directory and it is a zip file
src="app"
;;
*)
src=""
;;
esac
extension="zip"
# If $src is not empty, let's process the asset
if [ ! -z "$src" ]; then
@ -77,11 +79,11 @@ checksum=$(sha256sum "$tempdir/$filename" | head -c 64)
rm -rf $tempdir
# Get extension
if [[ $filename == *.tar.gz ]]; then
extension=tar.gz
else
extension=${filename##*.}
fi
#if [[ $filename == *.tar.gz ]]; then
# extension=tar.gz
#else
# extension=${filename##*.}
#fi
# Rewrite source file
cat <<EOT > conf/$src.src
@ -90,7 +92,7 @@ SOURCE_SUM=$checksum
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=$extension
SOURCE_IN_SUBDIR=true
SOURCE_FILENAME=
SOURCE_EXTRACT=true
EOT
echo "... conf/$src.src updated"

View file

@ -27,7 +27,7 @@ You may also install both app separatly.
This app may also be usable with [Home-Assistant package](https://github.com/YunoHost-Apps/homeassistant_ynh) but I never tested it.
**Shipped version:** 8.6.0~ynh1
**Shipped version:** 8.6.1~ynh1
## Disclaimers / important information

View file

@ -27,7 +27,7 @@ Vous pouvez également installer les deux applications séparément.
Cette application fonctionne également peut-être avec [le paquet Home-Assistant](https://github.com/YunoHost-Apps/homeassistant_ynh) mais je ne l'ai jamais testée.
**Version incluse :** 8.6.0~ynh1
**Version incluse :** 8.6.1~ynh1
## Avertissements / informations importantes

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/zwave-js/zwave-js-ui/archive/refs/tags/v8.6.0.zip
SOURCE_SUM=74b49ade42e2c98c82e63eb06d25a8979633ef14b5df04ca6b31e8ab618d48a2
SOURCE_URL=https://api.github.com/repos/zwave-js/zwave-js-ui/zipball/v8.6.1
SOURCE_SUM=0b0c70f076a66df3fcc5f7ea90b05530627914e87b0df5d1bcc430acb512607b
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=zip
SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Full featured Z-Wave Control Panel and MQTT Gateway integrated with domoticz",
"fr": "Panneau de controle Z-Wave et MQTT intégré avec Domoticz"
},
"version": "8.6.0~ynh1",
"version": "8.6.1~ynh1",
"url": "https://github.com/zwave-js/zwave-js-ui",
"upstream": {
"license": "MIT",