diff --git a/README.md b/README.md index 53cdb38..283a7e1 100755 --- a/README.md +++ b/README.md @@ -17,7 +17,8 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Web interface for generating QR codes -**Shipped version:** 2.0.0~ynh1 +**Shipped version:** 2.0.0~ynh2 + **Demo:** https://qr.antopie.org @@ -27,6 +28,7 @@ Web interface for generating QR codes ## Documentation and resources +* Official app website: * Upstream app code repository: * YunoHost documentation for this app: * Report a bug: diff --git a/README_fr.md b/README_fr.md index b35a7ff..5d703fb 100755 --- a/README_fr.md +++ b/README_fr.md @@ -17,7 +17,8 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Interface Web pour générer des codes QR -**Version incluse :** 2.0.0~ynh1 +**Version incluse :** 2.0.0~ynh2 + **Démo :** https://qr.antopie.org @@ -27,6 +28,7 @@ Interface Web pour générer des codes QR ## Documentations et ressources +* Site officiel de l'app : * Dépôt de code officiel de l'app : * Documentation YunoHost pour cette app : * Signaler un bug : diff --git a/manifest.json b/manifest.json index 4580d65..7b2ea55 100755 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Web interface for generating QR codes", "fr": "Interface Web pour générer des codes QR" }, - "version": "2.0.0~ynh1", + "version": "2.0.0~ynh2", "url": "https://code.antopie.org/miraty/libreqr", "upstream": { "license": "AGPL-3.0-or-later", diff --git a/scripts/_common.sh b/scripts/_common.sh index f56b2c6..2784020 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -1,7 +1,7 @@ libreqr_apply_filesystem_permissions() { find "$final_path" -type f -exec chmod 400 "{}" + find "$final_path" -type f -exec chown www-data:www-data "{}" + - find "$final_path" -type d -exec chmod 110 "{}" + + find "$final_path" -type d -exec chmod 510 "{}" + find "$final_path" -type d -exec chown $app:www-data "{}" + find "$final_path" -type f -name "*.php" -exec chmod 400 "{}" + find "$final_path" -type f -name "*.php" -exec chown $app:$app "{}" +