diff --git a/README.md b/README.md index 50d7f41..d899761 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview -Logiciel web libre permettant de signer un PDF. +Free web software for signing a PDF. -**Shipped version:** 1.4.0~ynh4 +**Shipped version:** 1.5.0~ynh1 **Demo:** https://pdf.24eme.fr @@ -30,7 +30,6 @@ Logiciel web libre permettant de signer un PDF. * Official app website: * Upstream app code repository: -* YunoHost documentation for this app: * Report a bug: ## Developer info diff --git a/README_fr.md b/README_fr.md index e3827d1..a8e474d 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 Logiciel web libre permettant de signer un PDF. -**Version incluse :** 1.4.0~ynh4 +**Version incluse :** 1.5.0~ynh1 **Démo :** https://pdf.24eme.fr @@ -30,7 +30,6 @@ Logiciel web libre permettant de signer un PDF. * Site officiel de l’app : * Dépôt de code officiel de l’app : -* Documentation YunoHost pour cette app : * Signaler un bug : ## Informations pour les développeurs diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md index 198635c..651463f 100644 --- a/doc/DESCRIPTION.md +++ b/doc/DESCRIPTION.md @@ -1 +1 @@ -Logiciel web libre permettant de signer un PDF. \ No newline at end of file +Free web software for signing a PDF. \ No newline at end of file diff --git a/doc/DESCRIPTION_fr.md b/doc/DESCRIPTION_fr.md new file mode 100644 index 0000000..198635c --- /dev/null +++ b/doc/DESCRIPTION_fr.md @@ -0,0 +1 @@ +Logiciel web libre permettant de signer un PDF. \ No newline at end of file diff --git a/manifest.toml b/manifest.toml index a65ae6f..b931c85 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Signaturepdf" description.en = "Sign, stamp, and reorganize PDF files" description.fr = "Signez, tamponnez, et réorganisez des fichiers PDF" -version = "1.4.0~ynh4" +version = "1.5.0~ynh1" maintainers = ["eric_G"] @@ -35,8 +35,8 @@ ram.runtime = "50M" [resources] [resources.sources.main] - url = "https://github.com/24eme/signaturepdf/archive/refs/tags/v1.4.0.tar.gz" - sha256 = "c9dc70befddfba3126ac2a375bd1ac72aa80e7e288bb1d46cfbe392c6e752e13" + url = "https://github.com/24eme/signaturepdf/archive/refs/tags/v1.5.0.tar.gz" + sha256 = "8c8a0f255ace3e9f66ebae25474eee3f3e267b816eb25441384a4df69295ba7b" autoupdate.strategy = "latest_github_tag" [resources.system_user] @@ -49,4 +49,4 @@ ram.runtime = "50M" main.url = "/" [resources.apt] - packages ="php8.2-fpm librsvg2-bin pdftk imagemagick potrace" + packages ="php8.2-fpm, librsvg2-bin, pdftk, imagemagick, potrace" diff --git a/scripts/install b/scripts/install index 24cbefc..c74af84 100755 --- a/scripts/install +++ b/scripts/install @@ -23,13 +23,13 @@ chown -R $app:www-data "$install_dir" #================================================= # NGINX CONFIGURATION #================================================= -ynh_script_progression --message="Configuring NGINX web server..." --weight=1 +ynh_script_progression --message="Adding system configurations related to $app..." --weight=1 # Create a dedicated NGINX config ynh_add_nginx_config # Create a dedicated PHP-FPM config -ynh_add_fpm_config --usage=low --footprint=low +ynh_add_fpm_config #================================================= # ADD A CONFIGURATION diff --git a/scripts/remove b/scripts/remove index 79cb058..dd7376b 100755 --- a/scripts/remove +++ b/scripts/remove @@ -12,16 +12,11 @@ source /usr/share/yunohost/helpers #================================================= # REMOVE NGINX CONFIGURATION #================================================= -ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1 +ynh_script_progression --message="Removing system configurations related to $app..." --weight=1 # Remove the dedicated NGINX config ynh_remove_nginx_config -#================================================= -# REMOVE PHP-FPM CONFIGURATION -#================================================= -ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1 - # Remove the dedicated PHP-FPM config ynh_remove_fpm_config diff --git a/scripts/restore b/scripts/restore index 9f18d43..f46b067 100755 --- a/scripts/restore +++ b/scripts/restore @@ -17,7 +17,6 @@ ynh_script_progression --message="Restoring the app main directory..." --weight= ynh_restore_file --origin_path="$install_dir" -chmod 750 "$install_dir" chmod -R o-rwx "$install_dir" chown -R $app:www-data "$install_dir" @@ -33,7 +32,7 @@ chown -R $app:www-data "$data_dir" #================================================= # RESTORE THE PHP-FPM CONFIGURATION #================================================= -ynh_script_progression --message="Restoring the PHP-FPM configuration..." --weight=1 +ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1 ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf" diff --git a/scripts/upgrade b/scripts/upgrade index 309874c..9ce968e 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -33,13 +33,13 @@ chown -R $app:www-data "$install_dir" #================================================= # NGINX CONFIGURATION #================================================= -ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1 +ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1 # Create a dedicated NGINX config ynh_add_nginx_config # Create a dedicated PHP-FPM config -ynh_add_fpm_config --usage=low --footprint=low +ynh_add_fpm_config #================================================= # END OF SCRIPT