From 4dc1153a4211360b739666f36adb54087539223b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 18 Nov 2022 16:19:57 +0100 Subject: [PATCH 1/6] arm7 value not return by dpkg --print-architecture --- conf/{arm7.src => armhf.src} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename conf/{arm7.src => armhf.src} (100%) diff --git a/conf/arm7.src b/conf/armhf.src similarity index 100% rename from conf/arm7.src rename to conf/armhf.src From 8e380c68a9700c48b2b41930f8cc0ad5543aff98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 18 Nov 2022 16:20:10 +0100 Subject: [PATCH 2/6] add description --- doc/DESCRIPTION.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/DESCRIPTION.md diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md new file mode 100644 index 0000000..7bf19d3 --- /dev/null +++ b/doc/DESCRIPTION.md @@ -0,0 +1 @@ +ntfy (pronounce: *notify*) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, entirely without signup, cost or setup. It's also open source if you want to run your own. From 8279d606fb9a4789fe6710925af3368623749134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 18 Nov 2022 16:20:17 +0100 Subject: [PATCH 3/6] add fr --- manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 04ebdb7..6890218 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,8 @@ "id": "ntfy", "packaging_format": 1, "description": { - "en": "Open Source Push Notification Server" + "en": "Open Source Push Notification Server", + "fr": "Serveur open source de notification" }, "upstream": { "license": "GPL-2.0-only", From 9c7e0dde1b59d2ef66c83bc61cec62ae23e96e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 18 Nov 2022 16:20:25 +0100 Subject: [PATCH 4/6] cleaning --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 7013cce..44816fd 100755 --- a/scripts/install +++ b/scripts/install @@ -150,12 +150,12 @@ ynh_systemd_action --service_name=nginx --action=reload #================================================= # ADD APP ADMIN USER #================================================= - ynh_script_progression --message="Adding admin user..." --weight=1 ynh_exec_as $app NTFY_PASSWORD="$password" $final_path/ntfy user --config=$final_path/server.yml add --role=admin $admin + #================================================= # END OF SCRIPT #================================================= -ynh_script_progression --message="Installation of $app completed" --last \ No newline at end of file +ynh_script_progression --message="Installation of $app completed" --last From 1d9ae22bd585e26b1b4fcb613042da709d9cf373 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 18 Nov 2022 15:20:31 +0000 Subject: [PATCH 5/6] Auto-update README --- README.md | 3 ++- README_fr.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6878e9b..3ed3067 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview -Open Source Push Notification Server +ntfy (pronounce: *notify*) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, entirely without signup, cost or setup. It's also open source if you want to run your own. + **Shipped version:** 1.29.0~ynh1 diff --git a/README_fr.md b/README_fr.md index f585334..2a57ab1 100644 --- a/README_fr.md +++ b/README_fr.md @@ -15,6 +15,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour ## Vue d'ensemble +ntfy (pronounce: *notify*) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, entirely without signup, cost or setup. It's also open source if you want to run your own. **Version incluse :** 1.29.0~ynh1 From 69fd417923486b5c1409def4233ceb70a448f1be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 18 Nov 2022 16:23:09 +0100 Subject: [PATCH 6/6] Do we need this --- scripts/install | 1 - scripts/upgrade | 1 - 2 files changed, 2 deletions(-) diff --git a/scripts/install b/scripts/install index 44816fd..032e7ef 100755 --- a/scripts/install +++ b/scripts/install @@ -110,7 +110,6 @@ chown $app:$app "$final_path/server.yml" ynh_script_progression --message="Configuring a systemd service..." --weight=1 # Create a dedicated systemd config -architecture=$YNH_ARCH ynh_add_systemd_config #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 7c6de3d..2ef09dd 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -109,7 +109,6 @@ chown $app:$app "$final_path/server.yml" ynh_script_progression --message="Upgrading systemd configuration..." --weight=1 # Create a dedicated systemd config -architecture=$YNH_ARCH ynh_add_systemd_config #=================================================