From 605c3339e8dfab29f7fa61db2a3d7f055a346d51 Mon Sep 17 00:00:00 2001 From: Mateusz <2871798+orhtej2@users.noreply.github.com> Date: Thu, 23 Nov 2023 14:23:07 +0100 Subject: [PATCH 2/8] Don't check SMTP cert validity --- conf/config.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/config.ini b/conf/config.ini index 65a451e..b34e4a6 100644 --- a/conf/config.ini +++ b/conf/config.ini @@ -176,7 +176,7 @@ force_tls=false ; Overriden by the KRESUS_EMAIL_REJECT_UNAUTHORIZED_TLS environment variable, if it's set. ; Example: ; reject_unauthorized_tls=true -reject_unauthorized_tls=true +reject_unauthorized_tls=false [notifications] From 87a731fd28d26b0c7f55952deb49a72bfded9a4a Mon Sep 17 00:00:00 2001 From: Nicolas Frandeboeuf Date: Fri, 8 Dec 2023 12:36:27 +0100 Subject: [PATCH 3/8] Upgrade kresus to 0.20.1 --- manifest.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.toml b/manifest.toml index fd0c48e..3c76e8e 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Kresus" description.en = "Personal finance manager" description.fr = "Outil personnel de gestion de finances" -version = "0.20.0~ynh1" +version = "0.20.1~ynh1" maintainers = ["Nicolas Frandeboeuf"] @@ -40,8 +40,8 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://framagit.org/kresusapp/kresus/-/archive/0.20.0/kresus-0.20.0.tar.bz2" - sha256 = "589ac5fa9bfaa4e7f3b1b98e94d499d4965d29bb73d48452725667e48d2bd0f3" + url = "https://framagit.org/kresusapp/kresus/-/archive/0.20.1/kresus-0.20.1.tar.bz2" + sha256 = "37debb77fae58f28b7343d8e3a4076e96b6a9b181312d2cd523bafa60c211eb2" [resources.ports] From f1f06cae140e76c89a44880ea30730ffd031e482 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 8 Dec 2023 11:40:49 +0000 Subject: [PATCH 4/8] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe78e13..3416b45 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Kresus is an open-source libre self-hosted personal finance manager. It allows you to safely track your banking history, check your overall balance and know exactly how you are spending money using categories! -**Shipped version:** 0.20.0~ynh1 +**Shipped version:** 0.20.1~ynh1 **Demo:** https://kresus.org/en/demo.html diff --git a/README_fr.md b/README_fr.md index f1ca6e1..77b894d 100644 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po Kresus est un gestionnaire de finances personnelles gratuit et libre qui tourne sur votre serveur. Il récupère automatiquement et quotidiennement toutes vos nouvelles transactions bancaires et vous permet de les catégoriser, étudier via des graphiques, et établir un budget. -**Version incluse :** 0.20.0~ynh1 +**Version incluse :** 0.20.1~ynh1 **Démo :** https://kresus.org/en/demo.html From 662f348c69a84e1a52b40953af7a96631a9f20fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 12 Jan 2024 21:12:29 +0100 Subject: [PATCH 5/8] fix linter --- scripts/change_url | 2 +- scripts/upgrade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/change_url b/scripts/change_url index 2a177b8..d3e9601 100644 --- a/scripts/change_url +++ b/scripts/change_url @@ -16,7 +16,7 @@ source /usr/share/yunohost/helpers #================================================= ynh_script_progression --message="Stopping a systemd service..." --weight=1 -ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd --line_match="Stopped" +ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd #================================================= # MODIFY URL IN NGINX CONF diff --git a/scripts/upgrade b/scripts/upgrade index 5d62a52..4f80317 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -22,7 +22,7 @@ upgrade_type=$(ynh_check_app_version_changed) #================================================= ynh_script_progression --message="Stopping a systemd service..." --weight=1 -ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd --line_match="Stopped" +ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd #================================================= # ENSURE DOWNWARD COMPATIBILITY From 5d30bfcb07b9feba920f22a084ff007691ba3f2a Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 13 Jan 2024 08:47:52 +0100 Subject: [PATCH 6/8] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 3c76e8e..3b1de5f 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Kresus" description.en = "Personal finance manager" description.fr = "Outil personnel de gestion de finances" -version = "0.20.1~ynh1" +version = "0.20.1~ynh2" maintainers = ["Nicolas Frandeboeuf"] From 991299346f2c4d21547b008ab78d190b4fcff1b5 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sat, 13 Jan 2024 07:47:57 +0000 Subject: [PATCH 7/8] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3416b45..4b44317 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Kresus is an open-source libre self-hosted personal finance manager. It allows you to safely track your banking history, check your overall balance and know exactly how you are spending money using categories! -**Shipped version:** 0.20.1~ynh1 +**Shipped version:** 0.20.1~ynh2 **Demo:** https://kresus.org/en/demo.html diff --git a/README_fr.md b/README_fr.md index 77b894d..c69c8d3 100644 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po Kresus est un gestionnaire de finances personnelles gratuit et libre qui tourne sur votre serveur. Il récupère automatiquement et quotidiennement toutes vos nouvelles transactions bancaires et vous permet de les catégoriser, étudier via des graphiques, et établir un budget. -**Version incluse :** 0.20.1~ynh1 +**Version incluse :** 0.20.1~ynh2 **Démo :** https://kresus.org/en/demo.html From a40a850facbaec057c46529bb6a3b1005f854e01 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 13 Jan 2024 08:48:24 +0100 Subject: [PATCH 8/8] Update manifest.toml --- manifest.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/manifest.toml b/manifest.toml index 3b1de5f..adad6df 100644 --- a/manifest.toml +++ b/manifest.toml @@ -20,8 +20,11 @@ code = "https://framagit.org/kresusapp/kresus" yunohost = ">= 11.2" architectures = ["amd64", "arm64"] multi_instance = true + ldap = false + sso = false + disk = "50M" ram.build = "50M" ram.runtime = "50M"