From f4db23fddaf81322cf0bde540396447b2f0d8a24 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 27 Aug 2024 06:00:31 +0000 Subject: [PATCH 1/3] Auto-update READMEs --- README.md | 2 +- README_es.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_id.md | 2 +- README_ru.md | 2 +- README_zh_Hans.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4ebdfc3..996c656 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Self-hosted photo and video management solution. - Easy-to-use and friendly interface ; -**Shipped version:** 1.112.1~ynh1 +**Shipped version:** 1.112.1~ynh2 ## Screenshots diff --git a/README_es.md b/README_es.md index cd83e87..e2af9e7 100644 --- a/README_es.md +++ b/README_es.md @@ -24,7 +24,7 @@ Self-hosted photo and video management solution. - Easy-to-use and friendly interface ; -**Versión actual:** 1.112.1~ynh1 +**Versión actual:** 1.112.1~ynh2 ## Capturas diff --git a/README_eu.md b/README_eu.md index af1a011..107746a 100644 --- a/README_eu.md +++ b/README_eu.md @@ -24,7 +24,7 @@ Self-hosted photo and video management solution. - Easy-to-use and friendly interface ; -**Paketatutako bertsioa:** 1.112.1~ynh1 +**Paketatutako bertsioa:** 1.112.1~ynh2 ## Pantaila-argazkiak diff --git a/README_fr.md b/README_fr.md index e035a8a..abad9d5 100644 --- a/README_fr.md +++ b/README_fr.md @@ -24,7 +24,7 @@ Solution d'autohébergement pour a gestion de vos photos et vidéos. - Interface conviviale et egronomique ; -**Version incluse :** 1.112.1~ynh1 +**Version incluse :** 1.112.1~ynh2 ## Captures d’écran diff --git a/README_gl.md b/README_gl.md index 07b3c57..ef1ab74 100644 --- a/README_gl.md +++ b/README_gl.md @@ -24,7 +24,7 @@ Self-hosted photo and video management solution. - Easy-to-use and friendly interface ; -**Versión proporcionada:** 1.112.1~ynh1 +**Versión proporcionada:** 1.112.1~ynh2 ## Capturas de pantalla diff --git a/README_id.md b/README_id.md index 8714d74..efcb8c5 100644 --- a/README_id.md +++ b/README_id.md @@ -24,7 +24,7 @@ Self-hosted photo and video management solution. - Easy-to-use and friendly interface ; -**Versi terkirim:** 1.112.1~ynh1 +**Versi terkirim:** 1.112.1~ynh2 ## Tangkapan Layar diff --git a/README_ru.md b/README_ru.md index dcf7760..6f46ab5 100644 --- a/README_ru.md +++ b/README_ru.md @@ -24,7 +24,7 @@ Self-hosted photo and video management solution. - Easy-to-use and friendly interface ; -**Поставляемая версия:** 1.112.1~ynh1 +**Поставляемая версия:** 1.112.1~ynh2 ## Снимки экрана diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 644b838..5ac5a31 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -24,7 +24,7 @@ Self-hosted photo and video management solution. - Easy-to-use and friendly interface ; -**分发版本:** 1.112.1~ynh1 +**分发版本:** 1.112.1~ynh2 ## 截图 From 7dd321e13ef23ece1c305fc6e0c31a7d730c346b Mon Sep 17 00:00:00 2001 From: ewilly Date: Tue, 27 Aug 2024 17:38:53 +0200 Subject: [PATCH 2/3] Update updater_ffmpeg-static.sh --- .github/workflows/updater_ffmpeg-static.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/updater_ffmpeg-static.sh b/.github/workflows/updater_ffmpeg-static.sh index a978ee6..3f86e1e 100644 --- a/.github/workflows/updater_ffmpeg-static.sh +++ b/.github/workflows/updater_ffmpeg-static.sh @@ -8,15 +8,15 @@ version_current=$(cat manifest.toml | tomlq -j '.version') version_app=$(cat manifest.toml | tomlq -j '.version|split("~ynh")[0]') version_ynh=$(cat manifest.toml | tomlq -j '.version|split("~ynh")[1]') -version_next="$version_app~ynh($version_ynh+1)" +version_next="$version_app~ynh$(($version_ynh+1))" repo=$(cat manifest.toml | tomlq -j '.upstream.code|split("https://github.com/")[1]') -amd64_url=$(cat manifest.toml | tomlq -j '.resources.sources.ffmpeg-static.amd64.url') -amd64_sha_current=$(cat manifest.toml | tomlq -j '.resources.sources.ffmpeg-static.amd64.sha256') +amd64_url=$(cat manifest.toml | tomlq -j '.resources.sources."ffmpeg-static".amd64.url') +amd64_sha_current=$(cat manifest.toml | tomlq -j '.resources.sources."ffmpeg-static".amd64.sha256') amd64_sha_last=$(curl --silent "$amd64_url" | sha256sum) -arm64_url=$(cat manifest.toml | tomlq -j '.resources.sources.ffmpeg-static.arm64.url') -arm64_sha_current=$(cat manifest.toml | tomlq -j '.resources.sources.ffmpeg-static.arm64.sha256') +arm64_url=$(cat manifest.toml | tomlq -j '.resources.sources."ffmpeg-static".arm64.url') +arm64_sha_current=$(cat manifest.toml | tomlq -j '.resources.sources."ffmpeg-static".arm64.sha256') arm64_sha_last=$(curl --silent "$arm64_url" | sha256sum) # Setting up the environment variables From ea812cd91baa87055d4ca3e16295ce9bcc7a544a Mon Sep 17 00:00:00 2001 From: ewilly Date: Tue, 27 Aug 2024 17:43:30 +0200 Subject: [PATCH 3/3] Update updater_ffmpeg-static.sh --- .github/workflows/updater_ffmpeg-static.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater_ffmpeg-static.sh b/.github/workflows/updater_ffmpeg-static.sh index 3f86e1e..4a623ca 100644 --- a/.github/workflows/updater_ffmpeg-static.sh +++ b/.github/workflows/updater_ffmpeg-static.sh @@ -28,7 +28,7 @@ echo "REPO=$repo" >> $GITHUB_ENV echo "PROCEED=false" >> $GITHUB_ENV # Proceed only if the retrieved version is greater than the current one -if [ "$amd64_sha_current" == "$amd64_sha_last" ] And [ "$arm64_sha_current" == "$amd64_sha_last" ] +if [ "$amd64_sha_current" == "$amd64_sha_last" ] && [ "$arm64_sha_current" == "$amd64_sha_last" ] then echo "::warning ::No new version available" exit 0