From e1bb08178d323d21524a8c1676d09ac8eeb1363c Mon Sep 17 00:00:00 2001 From: Robles Rodolphe Date: Mon, 9 May 2022 17:32:10 +0200 Subject: [PATCH 1/3] update to 1.1.24 version --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 6 +++--- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 56ea066..ce10ec5 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Garradin (word meaning money in an aboriginal dialect of northern Australia, pronounced "gar-a-dine" em) is software for associative management. It is the tool of choice for managing an association, a sports club, an NGO, etc. It is designed to meet the needs of a small to medium-sized structure: management of members, accounting, website, note-taking in meetings, archiving and sharing of the association's operating documents, discussion between members, etc. etc. . -**Shipped version:** 1.1.23~ynh1 +**Shipped version:** 1.1.24~ynh1 **Demo:** https://garradin.eu/essai/ diff --git a/README_fr.md b/README_fr.md index fec506e..722a888 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Garradin (mot signifiant argent dans un dialecte aborigène du nord de l'Australie, prononcé « gar-a-dine »em) est un logiciel de gestion associative. Il est l'outil de prédilection pour gérer une association, un club sportif, une ONG, etc. Il est conçu pour répondre aux besoins d'une structure de petite à moyenne taille : gestion des adhérents, comptabilité, site web, prise de notes en réunion, archivage et partage des documents de fonctionnement de l'association, discussion entre adhérents, etc etc. -**Version incluse :** 1.1.23~ynh1 +**Version incluse :** 1.1.24~ynh1 **Démo :** https://garradin.eu/essai/ diff --git a/conf/app.src b/conf/app.src index 09a882b..0d6866f 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://fossil.kd2.org/garradin/uv/garradin-1.1.23.tar.gz -SOURCE_SUM=b8208c7052f0c20849adbb93cebf9a5db257f62d45934d6b3ce4041095c73a45 +SOURCE_URL=https://fossil.kd2.org/garradin/uv/garradin-1.1.24.tar.gz +SOURCE_SUM=a6e77720ee1feec9b0407e76ce958735db6a6e0654e9764caa7b8d723e74baba SOURCE_SUM_PRG=sha256sum -SOURCE_FORMAT=tar.bz2 +SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 17ae64f..a537813 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Software to manage association", "fr": "Logiciel libre de gestion d'association" }, - "version": "1.1.23~ynh1", + "version": "1.1.24~ynh1", "url": "http://garradin.eu", "upstream": { "license": "GPL-3.0-or-later", From 08b7d51c448c8ecb85b947b0367e68cc141d53ad Mon Sep 17 00:00:00 2001 From: Robles Rodolphe Date: Wed, 11 May 2022 12:31:00 +0200 Subject: [PATCH 2/3] debug private install --- scripts/install | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/install b/scripts/install index 4f06d80..2688a06 100644 --- a/scripts/install +++ b/scripts/install @@ -114,6 +114,10 @@ then ynh_permission_update --permission="main" --add="visitors" fi +if [ $is_public -eq 0 ] + ynh_permission_update --permission "main" --remove "visitors" +fi + #================================================= # RELOAD NGINX #================================================= From aea692223ab8567c60ce13576cd13c13907a8391 Mon Sep 17 00:00:00 2001 From: Robles Rodolphe Date: Wed, 11 May 2022 18:52:22 +0200 Subject: [PATCH 3/3] remove ynh_permission --- scripts/install | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/install b/scripts/install index 2688a06..4f06d80 100644 --- a/scripts/install +++ b/scripts/install @@ -114,10 +114,6 @@ then ynh_permission_update --permission="main" --add="visitors" fi -if [ $is_public -eq 0 ] - ynh_permission_update --permission "main" --remove "visitors" -fi - #================================================= # RELOAD NGINX #=================================================