1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/firefly-iii-di_ynh.git synced 2024-09-03 18:36:21 +02:00
This commit is contained in:
Charles P 2024-04-28 09:26:52 +02:00 committed by GitHub
commit 947ebda56d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 9 deletions

View file

@ -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. - 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 ## Screenshots
@ -37,7 +37,7 @@ If your Firefly-III server is installed as a YunoHost app, please note:
* Official app website: <https://docs.firefly-iii.org/data-importer/> * Official app website: <https://docs.firefly-iii.org/data-importer/>
* Official admin documentation: <https://docs.firefly-iii.org/data-importer/how-to-use/> * Official admin documentation: <https://docs.firefly-iii.org/data-importer/how-to-use/>
* Upstream app code repository: <https://github.com/firefly-iii/data-importer> * Upstream app code repository: <https://github.com/firefly-iii/data-importer>
* YunoHost documentation for this app: <https://yunohost.org/app_firefly-iii-di> * YunoHost Store: <https://apps.yunohost.org/app/firefly-iii-di>
* Report a bug: <https://github.com/YunoHost-Apps/firefly-iii-di_ynh/issues> * Report a bug: <https://github.com/YunoHost-Apps/firefly-iii-di_ynh/issues>
## Developer info ## Developer info

View file

@ -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. - 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 ## Captures décran
@ -37,7 +37,7 @@ If your Firefly-III server is installed as a YunoHost app, please note:
* Site officiel de lapp : <https://docs.firefly-iii.org/data-importer/> * Site officiel de lapp : <https://docs.firefly-iii.org/data-importer/>
* Documentation officielle de ladmin : <https://docs.firefly-iii.org/data-importer/how-to-use/> * Documentation officielle de ladmin : <https://docs.firefly-iii.org/data-importer/how-to-use/>
* Dépôt de code officiel de lapp : <https://github.com/firefly-iii/data-importer> * Dépôt de code officiel de lapp : <https://github.com/firefly-iii/data-importer>
* Documentation YunoHost pour cette app : <https://yunohost.org/app_firefly-iii-di> * YunoHost Store: <https://apps.yunohost.org/app/firefly-iii-di>
* Signaler un bug : <https://github.com/YunoHost-Apps/firefly-iii-di_ynh/issues> * Signaler un bug : <https://github.com/YunoHost-Apps/firefly-iii-di_ynh/issues>
## Informations pour les développeurs ## Informations pour les développeurs

View file

@ -5,7 +5,7 @@ name = "Firefly III Importer"
description.en = "Firefly III Data Importer" description.en = "Firefly III Data Importer"
description.fr = "Importateur de données Firefly III" description.fr = "Importateur de données Firefly III"
version = "1.2.2~ynh1" version = "1.5.2~ynh1"
maintainers = [] maintainers = []
@ -42,9 +42,9 @@ ram.runtime = "50M"
[resources] [resources]
[resources.sources.main] [resources.sources.main]
url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.2.2.tar.gz" url = "https://github.com/firefly-iii/data-importer/archive/refs/tags/v1.5.2.tar.gz"
sha256 = "2e69f8b68ab8fd0f078e585feb2128b99bf2dd3088c057d2dbd1c75a20860732" sha256 = "ee1debfe137c04e4152bf7ebb6bb50cbd6c4ab2d7dd64bee05b93f7e6c25f7d7"
autoupdate.strategy = "latest_github_tag" autoupdate.strategy = "latest_github_release"
[resources.system_user] [resources.system_user]
@ -54,4 +54,4 @@ ram.runtime = "50M"
main.url = "/" main.url = "/"
[resources.apt] [resources.apt]
packages = "php8.2-xml php8.2-bcmath" packages = "php8.3-xml php8.3-bcmath"

View file

@ -4,6 +4,9 @@
# COMMON VARIABLES # COMMON VARIABLES
#================================================= #=================================================
# PHP version required by FIII Data Importer
YNH_PHP_VERSION="8.3"
# Composer version # Composer version
YNH_COMPOSER_VERSION="2.5.4" YNH_COMPOSER_VERSION="2.5.4"