From 69c93af62cb35b53afab1d66956fc55091db4d00 Mon Sep 17 00:00:00 2001 From: rodinux Date: Tue, 23 Apr 2024 12:46:01 +0200 Subject: [PATCH 01/18] add permission auth_header api --- manifest.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 14b405d..b5a393f 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Paheko" description.en = "Association management software" description.fr = "Logiciel de gestion d'association" -version = "1.3.8~ynh3" +version = "1.3.8~ynh4" maintainers = ["rodinux"] @@ -52,6 +52,7 @@ ram.runtime = "50M" api.allowed = ["visitors", "all_users"] api.show_tile = false api.protected = true + api.auth_header = true [resources.apt] packages = "sqlite3, php8.2-sqlite3, php8.2-gd, php8.2-intl, php8.2-cli, php8.2-gnupg, php8.2-mbstring, php8.2-zip" From 8038078e46aa29a3fafe3cedf55b74851112671e Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 23 Apr 2024 10:46:48 +0000 Subject: [PATCH 02/18] Auto-update READMEs --- README.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_zh_Hans.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3adea16..9733268 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ It shall NOT be edited by hand. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Shipped version:** 1.3.8~ynh3 +**Shipped version:** 1.3.8~ynh4 **Demo:** diff --git a/README_eu.md b/README_eu.md index 3c273f6..29c9ae8 100644 --- a/README_eu.md +++ b/README_eu.md @@ -19,7 +19,7 @@ EZ editatu eskuz. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Paketatutako bertsioa:** 1.3.8~ynh3 +**Paketatutako bertsioa:** 1.3.8~ynh4 **Demoa:** diff --git a/README_fr.md b/README_fr.md index 4a0da24..cac0d31 100644 --- a/README_fr.md +++ b/README_fr.md @@ -19,7 +19,7 @@ Il NE doit PAS être modifié à la main. Paheko (mot de la langue Māori qui signifie « coopérer », illustrant le but du logiciel : améliorer ensemble le quotidien de la gestion d'une association) 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. -**Version incluse :** 1.3.8~ynh3 +**Version incluse :** 1.3.8~ynh4 **Démo :** diff --git a/README_gl.md b/README_gl.md index af3c7e9..0882a5c 100644 --- a/README_gl.md +++ b/README_gl.md @@ -19,7 +19,7 @@ NON debe editarse manualmente. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Versión proporcionada:** 1.3.8~ynh3 +**Versión proporcionada:** 1.3.8~ynh4 **Demo:** diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 70e37a5..1bb0d03 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -19,7 +19,7 @@ Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**分发版本:** 1.3.8~ynh3 +**分发版本:** 1.3.8~ynh4 **演示:** From 6585a29d73b99c305846db35c66740a2fcda67d0 Mon Sep 17 00:00:00 2001 From: rodinux Date: Thu, 16 May 2024 21:14:41 +0200 Subject: [PATCH 03/18] upgrade v 1.3.9, syntax in ADMIN.md, try debug api with unprotected --- doc/ADMIN.md | 2 +- manifest.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/ADMIN.md b/doc/ADMIN.md index b67508e..3989f39 100644 --- a/doc/ADMIN.md +++ b/doc/ADMIN.md @@ -11,7 +11,7 @@ const FILE_STORAGE_CONFIG = DATA_ROOT . /files'; **Important**: for some reason, email does not work when installing on a subpath. You are encouraged to use a full, dedicated for this domain (with path set to /). You may need perhaps an first app upgrade to have all the configurations on the path `__DATA_DIR__/data`, you can force the upgrade: ``` -yunohost app $app upgrade -F +yunohost app __APP__ upgrade -F ``` diff --git a/manifest.toml b/manifest.toml index b5a393f..ce7863d 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Paheko" description.en = "Association management software" description.fr = "Logiciel de gestion d'association" -version = "1.3.8~ynh4" +version = "1.3.9~ynh1" maintainers = ["rodinux"] @@ -36,8 +36,8 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://fossil.kd2.org/paheko/uv/paheko-1.3.8.tar.gz" - sha256 = "abfc810cf61a3a3fef237056b613489d7b156143ac192077eb9f67910ed0523b" + url = "https://fossil.kd2.org/paheko/uv/paheko-1.3.9.tar.gz" + sha256 = "8629361370098febb8b942f5e6a9a149614c5676cad6cc858b90af92a8fc8682" [resources.system_user] allow_email = true @@ -51,7 +51,7 @@ ram.runtime = "50M" api.url = "/api" api.allowed = ["visitors", "all_users"] api.show_tile = false - api.protected = true + api.protected = false api.auth_header = true [resources.apt] From 94c4907625a5fe4cbe16283311e1e50f93bc2393 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 16 May 2024 19:15:36 +0000 Subject: [PATCH 04/18] Auto-update READMEs --- ALL_README.md | 1 + README.md | 2 +- README_es.md | 50 +++++++++++++++++++++++++++++++++++++++++++++++ README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_zh_Hans.md | 4 ++-- 7 files changed, 57 insertions(+), 6 deletions(-) create mode 100644 README_es.md diff --git a/ALL_README.md b/ALL_README.md index a01b345..8938aae 100644 --- a/ALL_README.md +++ b/ALL_README.md @@ -1,6 +1,7 @@ # All available README files by language - [Read the README in English](README.md) +- [Lee el README en español](README_es.md) - [Irakurri README euskaraz](README_eu.md) - [Lire le README en français](README_fr.md) - [Le o README en galego](README_gl.md) diff --git a/README.md b/README.md index 9733268..6293743 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ It shall NOT be edited by hand. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Shipped version:** 1.3.8~ynh4 +**Shipped version:** 1.3.9~ynh1 **Demo:** diff --git a/README_es.md b/README_es.md new file mode 100644 index 0000000..d8fe353 --- /dev/null +++ b/README_es.md @@ -0,0 +1,50 @@ + + +# Paheko para Yunohost + +[![Nivel de integración](https://dash.yunohost.org/integration/paheko.svg)](https://dash.yunohost.org/appci/app/paheko) ![Estado funcional](https://ci-apps.yunohost.org/ci/badges/paheko.status.svg) ![Estado En Mantención](https://ci-apps.yunohost.org/ci/badges/paheko.maintain.svg) + +[![Instalar Paheko con Yunhost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=paheko) + +*[Leer este README en otros idiomas.](./ALL_README.md)* + +> *Este paquete le permite instalarPaheko rapidamente y simplement en un servidor YunoHost.* +> *Si no tiene YunoHost, visita [the guide](https://yunohost.org/install) para aprender como instalarla.* + +## Descripción general + +Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. + + +**Versión actual:** 1.3.9~ynh1 + +**Demo:** + +## Capturas + +![Captura de Paheko](./doc/screenshots/screenshot.png) + +## Documentaciones y recursos + +- Sitio web oficial: +- Documentación administrador oficial: +- Repositorio del código fuente oficial de la aplicación : +- Catálogo YunoHost: +- Reportar un error: + +## Información para desarrolladores + +Por favor enviar sus correcciones a la [`branch testing`](https://github.com/YunoHost-Apps/paheko_ynh/tree/testing + +Para probar la rama `testing`, sigue asÍ: + +```bash +sudo yunohost app install https://github.com/YunoHost-Apps/paheko_ynh/tree/testing --debug +o +sudo yunohost app upgrade paheko -u https://github.com/YunoHost-Apps/paheko_ynh/tree/testing --debug +``` + +**Mas informaciones sobre el empaquetado de aplicaciones:** diff --git a/README_eu.md b/README_eu.md index 29c9ae8..982fdea 100644 --- a/README_eu.md +++ b/README_eu.md @@ -19,7 +19,7 @@ EZ editatu eskuz. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Paketatutako bertsioa:** 1.3.8~ynh4 +**Paketatutako bertsioa:** 1.3.9~ynh1 **Demoa:** diff --git a/README_fr.md b/README_fr.md index cac0d31..ee2b9a6 100644 --- a/README_fr.md +++ b/README_fr.md @@ -19,7 +19,7 @@ Il NE doit PAS être modifié à la main. Paheko (mot de la langue Māori qui signifie « coopérer », illustrant le but du logiciel : améliorer ensemble le quotidien de la gestion d'une association) 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. -**Version incluse :** 1.3.8~ynh4 +**Version incluse :** 1.3.9~ynh1 **Démo :** diff --git a/README_gl.md b/README_gl.md index 0882a5c..8814587 100644 --- a/README_gl.md +++ b/README_gl.md @@ -19,7 +19,7 @@ NON debe editarse manualmente. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Versión proporcionada:** 1.3.8~ynh4 +**Versión proporcionada:** 1.3.9~ynh1 **Demo:** diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 1bb0d03..0410021 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -3,7 +3,7 @@ 请勿手动编辑。 --> -# YunoHost 的 Paheko +# YunoHost 上的 Paheko [![集成程度](https://dash.yunohost.org/integration/paheko.svg)](https://dash.yunohost.org/appci/app/paheko) ![工作状态](https://ci-apps.yunohost.org/ci/badges/paheko.status.svg) ![维护状态](https://ci-apps.yunohost.org/ci/badges/paheko.maintain.svg) @@ -19,7 +19,7 @@ Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**分发版本:** 1.3.8~ynh4 +**分发版本:** 1.3.9~ynh1 **演示:** From c0fbeb59898ed48b917dcae812922346701c9ff3 Mon Sep 17 00:00:00 2001 From: rodinux Date: Thu, 16 May 2024 21:53:07 +0200 Subject: [PATCH 05/18] try debug api --- association.sqlite | 7 +++++++ manifest.toml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 association.sqlite diff --git a/association.sqlite b/association.sqlite new file mode 100644 index 0000000..9b09d63 --- /dev/null +++ b/association.sqlite @@ -0,0 +1,7 @@ + +301 Moved Permanently + +

301 Moved Permanently

+
nginx
+ + diff --git a/manifest.toml b/manifest.toml index ce7863d..8569c38 100644 --- a/manifest.toml +++ b/manifest.toml @@ -51,8 +51,8 @@ ram.runtime = "50M" api.url = "/api" api.allowed = ["visitors", "all_users"] api.show_tile = false - api.protected = false - api.auth_header = true + api.protected = true + api.auth_header = false [resources.apt] packages = "sqlite3, php8.2-sqlite3, php8.2-gd, php8.2-intl, php8.2-cli, php8.2-gnupg, php8.2-mbstring, php8.2-zip" From c3f4e90aff236c2ea542da7725575f2df0f17d71 Mon Sep 17 00:00:00 2001 From: rodinux Date: Thu, 16 May 2024 22:15:17 +0200 Subject: [PATCH 06/18] try debug api --- association.sqlite | 7 ------- manifest.toml | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 association.sqlite diff --git a/association.sqlite b/association.sqlite deleted file mode 100644 index 9b09d63..0000000 --- a/association.sqlite +++ /dev/null @@ -1,7 +0,0 @@ - -301 Moved Permanently - -

301 Moved Permanently

-
nginx
- - diff --git a/manifest.toml b/manifest.toml index 8569c38..59d6bd2 100644 --- a/manifest.toml +++ b/manifest.toml @@ -48,7 +48,7 @@ ram.runtime = "50M" [resources.permissions] main.url = "/" - api.url = "/api" + api.url = "/api/*" api.allowed = ["visitors", "all_users"] api.show_tile = false api.protected = true From a77bff473f61ce21bc531ebc60422f7713a39aea Mon Sep 17 00:00:00 2001 From: rodinux Date: Thu, 16 May 2024 22:26:22 +0200 Subject: [PATCH 07/18] try debug api --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 59d6bd2..3420ec6 100644 --- a/manifest.toml +++ b/manifest.toml @@ -52,7 +52,7 @@ ram.runtime = "50M" api.allowed = ["visitors", "all_users"] api.show_tile = false api.protected = true - api.auth_header = false + api.auth_header = true [resources.apt] packages = "sqlite3, php8.2-sqlite3, php8.2-gd, php8.2-intl, php8.2-cli, php8.2-gnupg, php8.2-mbstring, php8.2-zip" From f69f1612fb9eb9006a3ce2253c0a562b72a280d3 Mon Sep 17 00:00:00 2001 From: rodinux Date: Thu, 16 May 2024 23:17:00 +0200 Subject: [PATCH 08/18] comment yunohost_panel.conf.inc, no sso in this app --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 34c5fb3..67152b6 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -25,5 +25,5 @@ location __PATH__/ { } # Include SSOWAT user panel. - include conf.d/yunohost_panel.conf.inc; +# include conf.d/yunohost_panel.conf.inc; } From 2b843f2b6de41e88ea8ca39af414ed2ae445920a Mon Sep 17 00:00:00 2001 From: rodinux Date: Tue, 11 Jun 2024 09:32:20 +0200 Subject: [PATCH 09/18] last stable version 1.3.10 --- conf/config.local.php | 49 ++++++++++++++++++++++++++++++++++++------- manifest.toml | 6 +++--- 2 files changed, 45 insertions(+), 10 deletions(-) diff --git a/conf/config.local.php b/conf/config.local.php index ba02ca8..a4cdea4 100644 --- a/conf/config.local.php +++ b/conf/config.local.php @@ -306,6 +306,18 @@ const WWW_URL = 'https://__DOMAIN____PATH__/'; //const ENABLE_TECH_DETAILS = true; +/** + * Activation du profilage (option de développement) + * + * Si cette option est activée, une barre sera affichée en bas des pages + * indiquant les performances du code, des requêtes SQL, et la liste + * des requêtes exécutées. + * + * Défaut : false + * @var bool + */ +//const ENABLE_PROFILER = true; + /** * Activation du log SQL (option de développement) * @@ -327,7 +339,6 @@ const WWW_URL = 'https://__DOMAIN____PATH__/'; */ // const SQL_DEBUG = '__INSTALL_DIR__/debug_sql.sqlite'; -/** /** * Mode de journalisation de SQLite * @@ -361,15 +372,39 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Si cette constante est renseignée par un fichier texte, *TOUTES* les requêtes HTTP * ainsi que leur contenu y sera enregistré. * - * C'est surtout utile pour débuguer les problèmes de WebDAV par exemple. - * * ATTENTION : cela signifie que des informations personnelles (mot de passe etc.) * peuvent se retrouver dans le log. Ne pas utiliser à moins de tester en développement. * * Default : null (= désactivé) * @var string|null */ -// const HTTP_LOG_FILE = '__INSTALL_DIR__/http.log'; +// const HTTP_LOG_FILE = __DIR__ . '/http.log'; + +/** + * Activation du log WOPI + * + * Si cette constante est renseignée par un fichier texte, les requêtes HTTP reçues par + * le serveur WOPI seront enregistrées dans ce fichier. + * + * C'est surtout utile pour débuguer les problèmes de WebDAV par exemple. + * + * Default : null (= désactivé) + * @var string|null + */ +// const WOPI_LOG_FILE = __DIR__ . '/wopi.log'; + +/** + * Activation du log WebDAV + * + * Si cette constante est renseignée par un fichier texte, les requêtes HTTP reçues par + * le serveur WebDAV seront enregistrées dans ce fichier. + * + * C'est surtout utile pour débuguer les problèmes de WebDAV par exemple. + * + * Default : null (= désactivé) + * @var string|null + */ +// const WEBDAV_LOG_FILE = __DIR__ . '/webdav.log'; /** * Activer la possibilité de faire une mise à jour semi-automatisée @@ -467,10 +502,10 @@ const USE_CRON = true; /** - * Hôte du serveur SMTP, mettre à false (défaut) pour utiliser la fonction + * Hôte du serveur SMTP, mettre à null (défaut) pour utiliser la fonction * mail() de PHP * - * Défaut : false + * Défaut : null */ //const SMTP_HOST = '__DOMAIN__'; @@ -530,7 +565,7 @@ const USE_CRON = true; * @var null|string */ -//const SMTP_HELO_HOSTNAME = '__DOMAIN__'; +//const SMTP_HELO_HOSTNAME = 'mail.domain.tld'; /** * Adresse e-mail destinée à recevoir les erreurs de mail diff --git a/manifest.toml b/manifest.toml index 3420ec6..1da6c35 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Paheko" description.en = "Association management software" description.fr = "Logiciel de gestion d'association" -version = "1.3.9~ynh1" +version = "1.3.10~ynh1" maintainers = ["rodinux"] @@ -36,8 +36,8 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://fossil.kd2.org/paheko/uv/paheko-1.3.9.tar.gz" - sha256 = "8629361370098febb8b942f5e6a9a149614c5676cad6cc858b90af92a8fc8682" + url = "https://fossil.kd2.org/paheko/uv/paheko-1.3.10.tar.gz" + sha256 = "8065158e2841dcd7d64dac637da314106a40ee0e1d0121c2e42edeb21ea9007a" [resources.system_user] allow_email = true From 38a805362b1975e3f7ffa4c7fab9aae1439026bc Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 11 Jun 2024 07:32:30 +0000 Subject: [PATCH 10/18] Auto-update READMEs --- ALL_README.md | 2 +- README.md | 2 +- README_es.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_zh_Hans.md | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ALL_README.md b/ALL_README.md index 8938aae..152f2e7 100644 --- a/ALL_README.md +++ b/ALL_README.md @@ -1,7 +1,7 @@ # All available README files by language - [Read the README in English](README.md) -- [Lee el README en español](README_es.md) +- [Lea el README en español](README_es.md) - [Irakurri README euskaraz](README_eu.md) - [Lire le README en français](README_fr.md) - [Le o README en galego](README_gl.md) diff --git a/README.md b/README.md index 6293743..564947f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ It shall NOT be edited by hand. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Shipped version:** 1.3.9~ynh1 +**Shipped version:** 1.3.10~ynh1 **Demo:** diff --git a/README_es.md b/README_es.md index d8fe353..a6b6875 100644 --- a/README_es.md +++ b/README_es.md @@ -19,7 +19,7 @@ No se debe editar a mano. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Versión actual:** 1.3.9~ynh1 +**Versión actual:** 1.3.10~ynh1 **Demo:** diff --git a/README_eu.md b/README_eu.md index 982fdea..510a84d 100644 --- a/README_eu.md +++ b/README_eu.md @@ -19,7 +19,7 @@ EZ editatu eskuz. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Paketatutako bertsioa:** 1.3.9~ynh1 +**Paketatutako bertsioa:** 1.3.10~ynh1 **Demoa:** diff --git a/README_fr.md b/README_fr.md index ee2b9a6..e7a5cd8 100644 --- a/README_fr.md +++ b/README_fr.md @@ -19,7 +19,7 @@ Il NE doit PAS être modifié à la main. Paheko (mot de la langue Māori qui signifie « coopérer », illustrant le but du logiciel : améliorer ensemble le quotidien de la gestion d'une association) 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. -**Version incluse :** 1.3.9~ynh1 +**Version incluse :** 1.3.10~ynh1 **Démo :** diff --git a/README_gl.md b/README_gl.md index 8814587..778e68e 100644 --- a/README_gl.md +++ b/README_gl.md @@ -19,7 +19,7 @@ NON debe editarse manualmente. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Versión proporcionada:** 1.3.9~ynh1 +**Versión proporcionada:** 1.3.10~ynh1 **Demo:** diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 0410021..545ca32 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -19,7 +19,7 @@ Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**分发版本:** 1.3.9~ynh1 +**分发版本:** 1.3.10~ynh1 **演示:** From 8a5b0d837e16150c637ef6538d94c8816ad0798e Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 11 Jun 2024 16:21:07 +0000 Subject: [PATCH 11/18] Auto-update READMEs --- ALL_README.md | 2 +- README_eu.md | 1 - README_fr.md | 1 - README_gl.md | 1 - README_zh_Hans.md | 1 - 5 files changed, 1 insertion(+), 5 deletions(-) diff --git a/ALL_README.md b/ALL_README.md index 8938aae..152f2e7 100644 --- a/ALL_README.md +++ b/ALL_README.md @@ -1,7 +1,7 @@ # All available README files by language - [Read the README in English](README.md) -- [Lee el README en español](README_es.md) +- [Lea el README en español](README_es.md) - [Irakurri README euskaraz](README_eu.md) - [Lire le README en français](README_fr.md) - [Le o README en galego](README_gl.md) diff --git a/README_eu.md b/README_eu.md index d435804..510a84d 100644 --- a/README_eu.md +++ b/README_eu.md @@ -21,7 +21,6 @@ Paheko (a word from the Māori language meaning "to cooperate", illustrating the **Paketatutako bertsioa:** 1.3.10~ynh1 - **Demoa:** ## Pantaila-argazkiak diff --git a/README_fr.md b/README_fr.md index 222825d..e7a5cd8 100644 --- a/README_fr.md +++ b/README_fr.md @@ -21,7 +21,6 @@ Paheko (mot de la langue Māori qui signifie « coopérer », illustrant le but **Version incluse :** 1.3.10~ynh1 - **Démo :** ## Captures d’écran diff --git a/README_gl.md b/README_gl.md index 6140bb6..778e68e 100644 --- a/README_gl.md +++ b/README_gl.md @@ -21,7 +21,6 @@ Paheko (a word from the Māori language meaning "to cooperate", illustrating the **Versión proporcionada:** 1.3.10~ynh1 - **Demo:** ## Capturas de pantalla diff --git a/README_zh_Hans.md b/README_zh_Hans.md index d8b765c..545ca32 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -21,7 +21,6 @@ Paheko (a word from the Māori language meaning "to cooperate", illustrating the **分发版本:** 1.3.10~ynh1 - **演示:** ## 截图 From fbb180575e2525ad18be7ba3be40cd4e6a966320 Mon Sep 17 00:00:00 2001 From: rodinux Date: Sat, 15 Jun 2024 15:32:10 +0200 Subject: [PATCH 12/18] change variable __DIR__ to __INSTALL_DIR__ to prevent undefined varible and failed upgrade --- conf/config.local.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/config.local.php b/conf/config.local.php index a4cdea4..4b3172a 100644 --- a/conf/config.local.php +++ b/conf/config.local.php @@ -378,7 +378,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const HTTP_LOG_FILE = __DIR__ . '/http.log'; +// const HTTP_LOG_FILE = __INSTALL_DIR__ . '/http.log'; /** * Activation du log WOPI @@ -391,7 +391,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const WOPI_LOG_FILE = __DIR__ . '/wopi.log'; +// const WOPI_LOG_FILE = __INSTALL_DIR__ . '/wopi.log'; /** * Activation du log WebDAV @@ -404,7 +404,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const WEBDAV_LOG_FILE = __DIR__ . '/webdav.log'; +// const WEBDAV_LOG_FILE = __INSTALL_DIR__ . '/webdav.log'; /** * Activer la possibilité de faire une mise à jour semi-automatisée From 3b50ab71c6eb84c88f5c13388522f930d70c7dbc Mon Sep 17 00:00:00 2001 From: Robles Rodolphe Date: Sat, 15 Jun 2024 16:02:39 +0200 Subject: [PATCH 13/18] Update config.local.user.php a little change syntax --- conf/config.local.user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/config.local.user.php b/conf/config.local.user.php index 1bc63fa..890c7aa 100644 --- a/conf/config.local.user.php +++ b/conf/config.local.user.php @@ -15,7 +15,7 @@ namespace Paheko; * Hôte du serveur SMTP, mettre à false (défaut) pour utiliser la fonction * mail() de PHP * - * Défaut : false + * Défaut : null */ const SMTP_HOST = '__DOMAIN__'; From 15b4d96ef5075a434c543ef7ddc0e67db3fb93d9 Mon Sep 17 00:00:00 2001 From: rodinux Date: Sun, 16 Jun 2024 01:22:09 +0200 Subject: [PATCH 14/18] correct syntax paths commented in config.local.php --- conf/config.local.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/conf/config.local.php b/conf/config.local.php index 4b3172a..e5dadac 100644 --- a/conf/config.local.php +++ b/conf/config.local.php @@ -378,7 +378,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const HTTP_LOG_FILE = __INSTALL_DIR__ . '/http.log'; +// const HTTP_LOG_FILE = '__INSTALL_DIR__/http.log'; /** * Activation du log WOPI @@ -391,7 +391,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const WOPI_LOG_FILE = __INSTALL_DIR__ . '/wopi.log'; +// const WOPI_LOG_FILE = '__INSTALL_DIR__/wopi.log'; /** * Activation du log WebDAV @@ -404,7 +404,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const WEBDAV_LOG_FILE = __INSTALL_DIR__ . '/webdav.log'; +// const WEBDAV_LOG_FILE = '__INSTALL_DIR__/webdav.log'; /** * Activer la possibilité de faire une mise à jour semi-automatisée @@ -565,7 +565,7 @@ const USE_CRON = true; * @var null|string */ -//const SMTP_HELO_HOSTNAME = 'mail.domain.tld'; +//const SMTP_HELO_HOSTNAME = '__DOMAIN__'; /** * Adresse e-mail destinée à recevoir les erreurs de mail From 20ab75bc7651e22e34f36ce062a939cc2a469326 Mon Sep 17 00:00:00 2001 From: rodinux Date: Sun, 16 Jun 2024 01:23:28 +0200 Subject: [PATCH 15/18] correct syntax paths commented in config.local.php --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 8ee9d8f..45445d4 100644 --- a/manifest.toml +++ b/manifest.toml @@ -6,7 +6,7 @@ description.en = "Association management software" description.fr = "Logiciel de gestion d'association" -version = "1.3.10~ynh1" +version = "1.3.10~ynh2" maintainers = ["rodinux"] From e8a0b291e4650249e305afa93dbad2563cab79a0 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sat, 15 Jun 2024 23:23:38 +0000 Subject: [PATCH 16/18] Auto-update READMEs --- README.md | 2 +- README_es.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_zh_Hans.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 564947f..427acb2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ It shall NOT be edited by hand. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Shipped version:** 1.3.10~ynh1 +**Shipped version:** 1.3.10~ynh2 **Demo:** diff --git a/README_es.md b/README_es.md index a6b6875..882f5a6 100644 --- a/README_es.md +++ b/README_es.md @@ -19,7 +19,7 @@ No se debe editar a mano. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Versión actual:** 1.3.10~ynh1 +**Versión actual:** 1.3.10~ynh2 **Demo:** diff --git a/README_eu.md b/README_eu.md index 510a84d..8f842b5 100644 --- a/README_eu.md +++ b/README_eu.md @@ -19,7 +19,7 @@ EZ editatu eskuz. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Paketatutako bertsioa:** 1.3.10~ynh1 +**Paketatutako bertsioa:** 1.3.10~ynh2 **Demoa:** diff --git a/README_fr.md b/README_fr.md index e7a5cd8..a9c985f 100644 --- a/README_fr.md +++ b/README_fr.md @@ -19,7 +19,7 @@ Il NE doit PAS être modifié à la main. Paheko (mot de la langue Māori qui signifie « coopérer », illustrant le but du logiciel : améliorer ensemble le quotidien de la gestion d'une association) 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. -**Version incluse :** 1.3.10~ynh1 +**Version incluse :** 1.3.10~ynh2 **Démo :** diff --git a/README_gl.md b/README_gl.md index 778e68e..82fe5a3 100644 --- a/README_gl.md +++ b/README_gl.md @@ -19,7 +19,7 @@ NON debe editarse manualmente. Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**Versión proporcionada:** 1.3.10~ynh1 +**Versión proporcionada:** 1.3.10~ynh2 **Demo:** diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 545ca32..ab4cbd1 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -19,7 +19,7 @@ Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. -**分发版本:** 1.3.10~ynh1 +**分发版本:** 1.3.10~ynh2 **演示:** From 639d5ccb6174dc2ba769488d094bfdd004207297 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sat, 15 Jun 2024 23:27:30 +0000 Subject: [PATCH 17/18] Auto-update READMEs --- README_fr.md | 1 + README_zh_Hans.md | 1 + 2 files changed, 2 insertions(+) diff --git a/README_fr.md b/README_fr.md index af0f914..a9c985f 100644 --- a/README_fr.md +++ b/README_fr.md @@ -18,6 +18,7 @@ Il NE doit PAS être modifié à la main. Paheko (mot de la langue Māori qui signifie « coopérer », illustrant le but du logiciel : améliorer ensemble le quotidien de la gestion d'une association) 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. + **Version incluse :** 1.3.10~ynh2 **Démo :** diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 32512ba..ab4cbd1 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -18,6 +18,7 @@ Paheko (a word from the Māori language meaning "to cooperate", illustrating the purpose of the software: to improve together the daily management of an association) 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. + **分发版本:** 1.3.10~ynh2 **演示:** From ff013fad15b3f38c28e70034e53267f200fcef35 Mon Sep 17 00:00:00 2001 From: Robles Rodolphe Date: Sun, 16 Jun 2024 01:40:15 +0200 Subject: [PATCH 18/18] Update config.local.php correct syntax links commented --- conf/config.local.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/conf/config.local.php b/conf/config.local.php index 928786f..f5bc0f9 100644 --- a/conf/config.local.php +++ b/conf/config.local.php @@ -378,7 +378,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const HTTP_LOG_FILE = __INSTALL_DIR__ . '/http.log'; +// const HTTP_LOG_FILE = '__INSTALL_DIR__/http.log'; /** * Activation du log WOPI @@ -391,7 +391,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const WOPI_LOG_FILE = __INSTALL_DIR__ . '/wopi.log'; +// const WOPI_LOG_FILE = '__INSTALL_DIR__/wopi.log'; /** * Activation du log WebDAV @@ -404,7 +404,7 @@ const SQLITE_JOURNAL_MODE = 'WAL'; * Default : null (= désactivé) * @var string|null */ -// const WEBDAV_LOG_FILE = __INSTALL_DIR__ . '/webdav.log'; +// const WEBDAV_LOG_FILE = '__INSTALL_DIR__/webdav.log'; /** * Activation du log WOPI @@ -591,7 +591,7 @@ const USE_CRON = true; * @var null|string */ -//const SMTP_HELO_HOSTNAME = 'mail.domain.tld'; +//const SMTP_HELO_HOSTNAME = '__DOMAIN__'; /** * Adresse e-mail destinée à recevoir les erreurs de mail