1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/opensondage_ynh.git synced 2024-09-03 19:46:28 +02:00

Merge pull request #101 from YunoHost-Apps/testing

fix admin email
This commit is contained in:
eric_G 2024-02-29 20:42:15 +01:00 committed by GitHub
commit 54e5a4f3fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 8 additions and 8 deletions

View file

@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
OpenSondage is a quick and easy-to-use online service to collaboratively plan and schedule the date and time for an appointment, meeting or other event. No registration is required. OpenSondage is a quick and easy-to-use online service to collaboratively plan and schedule the date and time for an appointment, meeting or other event. No registration is required.
**Shipped version:** 1.1.19~ynh2 **Shipped version:** 1.1.19~ynh3
**Demo:** https://framadate.org/ **Demo:** https://framadate.org/

View file

@ -19,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
OpenSondage est un service en ligne rapide et facile à utiliser pour planifier et programmer de manière collaborative la date et l'heure d'un rendez-vous, d'une réunion ou d'un autre événement. Aucune inscription n'est requise. OpenSondage est un service en ligne rapide et facile à utiliser pour planifier et programmer de manière collaborative la date et l'heure d'un rendez-vous, d'une réunion ou d'un autre événement. Aucune inscription n'est requise.
**Version incluse :** 1.1.19~ynh2 **Version incluse :** 1.1.19~ynh3
**Démo :** https://framadate.org/ **Démo :** https://framadate.org/

View file

@ -26,7 +26,7 @@ const APP_URL = '__DOMAIN__';
const NOMAPPLICATION = 'OpenSondage'; const NOMAPPLICATION = 'OpenSondage';
// Database administrator email // Database administrator email
const ADRESSEMAILADMIN = '__EMAIL__'; const ADRESSEMAILADMIN = '__ADMIN__@__DOMAIN__';
// Email for automatic responses (you should set it to "no-reply") // Email for automatic responses (you should set it to "no-reply")
const ADRESSEMAILREPONSEAUTO = '<no-reply@__DOMAIN__>'; const ADRESSEMAILREPONSEAUTO = '<no-reply@__DOMAIN__>';

View file

@ -6,7 +6,7 @@ description.en = "Service for planning an appointment or making a decision quick
description.fr = "Service pour planifier un rendez-vous ou prendre une décision rapidement et facilement" description.fr = "Service pour planifier un rendez-vous ou prendre une décision rapidement et facilement"
description.de = "Service zur schnellen und einfachen Planung eines Termins oder zur Entscheidungsfindung" description.de = "Service zur schnellen und einfachen Planung eines Termins oder zur Entscheidungsfindung"
version = "1.1.19~ynh2" version = "1.1.19~ynh3"
maintainers = [] maintainers = []
@ -68,7 +68,7 @@ ram.runtime = "50M"
main.url = "/" main.url = "/"
[resources.apt] [resources.apt]
packages = "mariadb-server, php8.0-mbstring, php8.0-intl, php8.0-xml, php8.0-cli, php8.0-mysql" packages = "mariadb-server, php8.2-mbstring, php8.2-intl, php8.2-xml, php8.2-cli, php8.2-mysql"
[resources.database] [resources.database]
type = "mysql" type = "mysql"

View file

@ -23,7 +23,7 @@ ynh_change_url_nginx_config
#================================================= #=================================================
# UPDATE OPENSONDAGE CONFIGURATION # UPDATE OPENSONDAGE CONFIGURATION
#================================================= #=================================================
ynh_script_progression --message="Reconfiguring $app..." ynh_script_progression --message="Reconfiguring $app..." --weight=2
ynh_replace_string --match_string="const APP_URL = '$old_domain';" --replace_string="const APP_URL = '$new_domain';" --target_file="$install_dir/app/inc/config.php" ynh_replace_string --match_string="const APP_URL = '$old_domain';" --replace_string="const APP_URL = '$new_domain';" --target_file="$install_dir/app/inc/config.php"

View file

@ -54,7 +54,7 @@ chown $app:$app "$install_dir/app/inc/config.php"
# REPLACE LOGO IMAGE (DEFAULT IS FRAMADATE) # REPLACE LOGO IMAGE (DEFAULT IS FRAMADATE)
#================================================= #=================================================
cp ../conf/logo.png "$install_dir/images" cp ../sources/logo.png "$install_dir/images"
#================================================= #=================================================
# CREATE LOG FILE # CREATE LOG FILE

View file

@ -51,7 +51,7 @@ chown $app:$app "$install_dir/app/inc/config.php"
# REPLACE LOGO IMAGE (DEFAULT IS FRAMADATE) # REPLACE LOGO IMAGE (DEFAULT IS FRAMADATE)
#================================================= #=================================================
cp ../conf/logo.png "$install_dir/images" cp ../sources/logo.png "$install_dir/images"
#================================================= #=================================================
# CREATE LOG FILE # CREATE LOG FILE

View file

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB