diff --git a/README.md b/README.md index e6fffa87..e8eba729 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview The federated image sharing service Pixelfed, for YunoHost -**Shipped version:** 0.11.0 +**Shipped version:** 0.11.0~ynh2 ## Important points to read before installing diff --git a/check_process b/check_process index 10de568a..e89ba676 100644 --- a/check_process +++ b/check_process @@ -28,6 +28,8 @@ # upgrade=1 from_commit=2a796e30dd521a5022586bc7fe59d189210028a4 # 0.10.10~ynh4 # upgrade=1 from_commit=8ef41895fbd38008f3718e164d0bf3f0d97a2c03 + # 0.11.0~ynh1 + upgrade=1 from_commit=c7181d1c7cb6cba53bb65e622c78b0309a53b76a backup_restore=1 multi_instance=1 port_already_use=0 @@ -50,3 +52,5 @@ Notification=all name=0.10.10~ynh3 ; commit=8ef41895fbd38008f3718e164d0bf3f0d97a2c03 name=0.10.10~ynh4 + ; commit=c7181d1c7cb6cba53bb65e622c78b0309a53b76a + name=0.11.0~ynh1 diff --git a/manifest.json b/manifest.json index dc226008..dedc3448 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "ActivityPub Federated Image Sharing", "fr": "Logiciel de partage d'image fédéré via ActivityPub" }, - "version": "0.11.0~ynh1", + "version": "0.11.0~ynh2", "url": "https://pixelfed.org/", "license": "AGPL-3.0-or-later", "maintainer": [ diff --git a/scripts/install b/scripts/install index fb0cebaa..e74f5336 100644 --- a/scripts/install +++ b/scripts/install @@ -160,6 +160,7 @@ pushd "$final_path" php$phpversion artisan -n key:generate --force php$phpversion artisan horizon:install php$phpversion artisan horizon:publish + php$phpversion artisan passport:keys php$phpversion artisan config:clear php$phpversion artisan config:cache php$phpversion artisan route:cache @@ -170,6 +171,7 @@ pushd "$final_path" php$phpversion artisan horizon:purge php$phpversion artisan import:cities php$phpversion artisan instance:actor + php$phpversion artisan passport:client --personal <<< "\\n" popd #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 4521a87e..c6992002 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -199,6 +199,7 @@ ynh_script_progression --message="Deploying..." pushd "$final_path" php$phpversion artisan horizon:install php$phpversion artisan horizon:publish + php$phpversion artisan passport:keys php$phpversion artisan config:clear php$phpversion artisan config:cache php$phpversion artisan route:clear @@ -211,6 +212,7 @@ pushd "$final_path" php$phpversion artisan horizon:purge php$phpversion artisan import:cities php$phpversion artisan instance:actor + php$phpversion artisan passport:client --personal <<< "\\n" popd #=================================================