1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galette_ynh.git synced 2024-09-03 18:36:28 +02:00

Merge branch 'beta' into version-2

This commit is contained in:
Éric Gaspar 2023-11-11 15:26:34 +01:00
commit 3e740e30d2
3 changed files with 8 additions and 10 deletions

View file

@ -18,8 +18,6 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Galette is a membership management web application towards non profit organizations.
### Features
- Member management
- Management of contributions and transactions
- Management of groups and managers
@ -30,7 +28,7 @@ Galette is a membership management web application towards non profit organizati
- Plugin support
**Shipped version:** 0.9.6.1~ynh1
**Shipped version:** 1.0.0~ynh1
**Demo:** https://demo.galette.eu/login

View file

@ -31,7 +31,7 @@ Outil de gestion d'adhérents et de cotisation en ligne pour associations.
- Support de plugins
**Version incluse :** 0.9.6.1~ynh1
**Version incluse :** 1.0.0~ynh1
**Démo :** https://demo.galette.eu/login

View file

@ -5,7 +5,7 @@ name = "Galette"
description.en = "Membership management web application for non profit organizations"
description.fr = "Outil de gestion d'adhérents et de cotisation en ligne pour associations"
version = "0.9.6.1~ynh1"
version = "1.0.0~ynh1"
maintainers = []
@ -56,8 +56,8 @@ ram.runtime = "50M"
[resources]
[resources.sources.main]
url = "https://download.tuxfamily.org/galette/galette-0.9.6.1.tar.bz2"
sha256 = "7f3d09af19711372cc35d48352e115ee96e835ea879298347289d274308bb011"
url = "https://github.com/galette/galette/releases/download/1.0.0rc2/galette-1.0.0-rc2-20231017-a030a93d5e.tar.bz2"
sha256 = "ad3d7aaf46b8a0980ddb9e98fb22db10d0d01b6742f1272b577e573791b16313"
[resources.system_user]
allow_email = true
@ -68,13 +68,13 @@ ram.runtime = "50M"
main.url = "/"
[resources.apt]
packages = "php7.4-tidy, php7.4-intl, php7.4-mbstring, php7.4-xml, php7.4-gd, php7.4-curl"
packages = "php8.2-tidy, php8.2-intl, php8.2-mbstring, php8.2-xml, php8.2-gd, php8.2-curl"
packages_from_raw_bash = """
if [[ "$database" == "mysql" ]]; then
echo "mariadb-server, php7.4-mysql"
echo "mariadb-server, php8.2-mysql"
elif [[ "$database" == "postgresql" ]]; then
echo "postgresql, postgresql-contrib, php7.4-pgsql"
echo "postgresql, postgresql-contrib, php8.2-pgsql"
fi
"""