From 25b93a82b2bf0fa2cdd79ed4e6b22293fe886564 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 31 Oct 2023 14:11:10 +0000 Subject: [PATCH 01/10] 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 299477f..d4504aa 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ If your Firefly-III server is installed as a YunoHost app, please note: * Official app website: * Official admin documentation: * Upstream app code repository: -* YunoHost documentation for this app: +* YunoHost Store: * Report a bug: ## Developer info diff --git a/README_fr.md b/README_fr.md index 8ded82e..c55f31c 100644 --- a/README_fr.md +++ b/README_fr.md @@ -37,7 +37,7 @@ If your Firefly-III server is installed as a YunoHost app, please note: * Site officiel de l’app : * Documentation officielle de l’admin : * Dépôt de code officiel de l’app : -* Documentation YunoHost pour cette app : +* YunoHost Store: * Signaler un bug : ## Informations pour les développeurs From c35e7087dcecf89b0543f6e6753b2288b4661124 Mon Sep 17 00:00:00 2001 From: "Charles P." Date: Tue, 2 Jan 2024 16:52:53 +0100 Subject: [PATCH 02/10] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade=20to=20v2.4.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- README_fr.md | 2 +- manifest.toml | 6 +++--- scripts/_common.sh | 3 +++ 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d4504aa..8caddaa 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ If your Firefly-III server is installed as a YunoHost app, please note: - When configuring the Data Importer, use the public Firefly-III domain and path, not *localhost*, even if both services are on the same machine. -**Shipped version:** 1.2.2~ynh1 +**Shipped version:** 1.4.0~ynh1 ## Screenshots diff --git a/README_fr.md b/README_fr.md index c55f31c..89ad522 100644 --- a/README_fr.md +++ b/README_fr.md @@ -26,7 +26,7 @@ If your Firefly-III server is installed as a YunoHost app, please note: - When configuring the Data Importer, use the public Firefly-III domain and path, not *localhost*, even if both services are on the same machine. -**Version incluse :** 1.2.2~ynh1 +**Version incluse :** 1.4.0~ynh1 ## Captures d’écran diff --git a/manifest.toml b/manifest.toml index 09667f4..051f3f1 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Firefly III Importer" description.en = "Firefly III Data Importer" description.fr = "Importateur de données Firefly III" -version = "1.2.2~ynh1" +version = "1.4.0~ynh1" maintainers = [] @@ -42,8 +42,8 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.2.2.tar.gz" - sha256 = "2e69f8b68ab8fd0f078e585feb2128b99bf2dd3088c057d2dbd1c75a20860732" + url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.4.0.tar.gz" + sha256 = "23b8cbba1bfcc8c50398dcce90df39b0a821c6f198e3221f0ec2d8fe112fb3e3" [resources.system_user] diff --git a/scripts/_common.sh b/scripts/_common.sh index 1a7049a..a677a90 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,6 +4,9 @@ # COMMON VARIABLES #================================================= +# PHP version required by FIII Data Importer +YNH_PHP_VERSION="8.3" + # Composer version YNH_COMPOSER_VERSION="2.5.4" From b79bda6924389f112b7b954bb31ca5da932edd31 Mon Sep 17 00:00:00 2001 From: "Charles P." Date: Tue, 2 Jan 2024 17:02:26 +0100 Subject: [PATCH 03/10] :bug: use YNH_PHP_VERSION --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 0444f81..8c8e312 100755 --- a/scripts/install +++ b/scripts/install @@ -65,7 +65,7 @@ ynh_add_nginx_config #================================================= ynh_script_progression --message="Installing composer dependencies..." -ynh_exec_warn_less ynh_install_composer --phpversion="$phpversion" --workdir="$install_dir" +ynh_exec_warn_less ynh_install_composer --phpversion="$YNH_PHP_VERSION" --workdir="$install_dir" #================================================= # ADD A CONFIGURATION From 7152a68f881e0822705881864bdf02fc62f1da37 Mon Sep 17 00:00:00 2001 From: "Charles P." Date: Tue, 2 Jan 2024 17:09:07 +0100 Subject: [PATCH 04/10] =?UTF-8?q?=E2=8F=AA=EF=B8=8F=20revert=20"use=20YNH?= =?UTF-8?q?=5FPHP=5FVERSION"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 8c8e312..0444f81 100755 --- a/scripts/install +++ b/scripts/install @@ -65,7 +65,7 @@ ynh_add_nginx_config #================================================= ynh_script_progression --message="Installing composer dependencies..." -ynh_exec_warn_less ynh_install_composer --phpversion="$YNH_PHP_VERSION" --workdir="$install_dir" +ynh_exec_warn_less ynh_install_composer --phpversion="$phpversion" --workdir="$install_dir" #================================================= # ADD A CONFIGURATION From 9ffec4b246f1963759ff1b51bdfde21e1acebf40 Mon Sep 17 00:00:00 2001 From: "Charles P." Date: Tue, 2 Jan 2024 20:27:09 +0100 Subject: [PATCH 05/10] :arrow_up: bump dependencies for php8.3 --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 051f3f1..89f655f 100644 --- a/manifest.toml +++ b/manifest.toml @@ -53,4 +53,4 @@ ram.runtime = "50M" main.url = "/" [resources.apt] - packages = "php8.2-xml php8.2-bcmath" + packages = "php8.3-xml php8.3-bcmath" From 78cccc16c366a8599d33fe1980f21352b2399f4c Mon Sep 17 00:00:00 2001 From: "Charles P." Date: Tue, 2 Jan 2024 21:14:05 +0100 Subject: [PATCH 06/10] :arrow_up: upgrade to v1.4.0 --- manifest.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.toml b/manifest.toml index 2998e57..f38b508 100644 --- a/manifest.toml +++ b/manifest.toml @@ -42,8 +42,8 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.2.2.tar.gz" - sha256 = "2e69f8b68ab8fd0f078e585feb2128b99bf2dd3088c057d2dbd1c75a20860732" + url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.4.0.tar.gz" + sha256 = "23b8cbba1bfcc8c50398dcce90df39b0a821c6f198e3221f0ec2d8fe112fb3e3" autoupdate.strategy = "latest_github_tag" [resources.system_user] From 352ea19c9085d01e1b044c04f5df063c49cd29b5 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Thu, 15 Feb 2024 18:02:52 +0100 Subject: [PATCH 07/10] Update manifest.toml --- manifest.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.toml b/manifest.toml index f38b508..099e0c8 100644 --- a/manifest.toml +++ b/manifest.toml @@ -42,9 +42,9 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.4.0.tar.gz" - sha256 = "23b8cbba1bfcc8c50398dcce90df39b0a821c6f198e3221f0ec2d8fe112fb3e3" - autoupdate.strategy = "latest_github_tag" + url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.4.3.tar.gz + sha256 = "17b47a81e1b2f304c968a74265ca5aa33b0cd2992ca5c38507bc17729165755c" + autoupdate.strategy = "latest_github_release" [resources.system_user] From 9e0ea22b39517c974414122ca7fd5e2ae7c12852 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Thu, 15 Feb 2024 21:39:54 +0100 Subject: [PATCH 09/10] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 099e0c8..d7f92be 100644 --- a/manifest.toml +++ b/manifest.toml @@ -42,7 +42,7 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.4.3.tar.gz + url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.4.3.tar.gz" sha256 = "17b47a81e1b2f304c968a74265ca5aa33b0cd2992ca5c38507bc17729165755c" autoupdate.strategy = "latest_github_release" From f2b8a517d3b62a690ea959b5538822e452116704 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sun, 28 Apr 2024 09:26:41 +0200 Subject: [PATCH 10/10] 1.5.2 --- manifest.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.toml b/manifest.toml index d7f92be..bfd36af 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Firefly III Importer" description.en = "Firefly III Data Importer" description.fr = "Importateur de données Firefly III" -version = "1.4.0~ynh1" +version = "1.5.2~ynh1" maintainers = [] @@ -42,8 +42,8 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.4.3.tar.gz" - sha256 = "17b47a81e1b2f304c968a74265ca5aa33b0cd2992ca5c38507bc17729165755c" + url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.5.2.tar.gz" + sha256 = "ee1debfe137c04e4152bf7ebb6bb50cbd6c4ab2d7dd64bee05b93f7e6c25f7d7" autoupdate.strategy = "latest_github_release" [resources.system_user]