diff --git a/README.md b/README.md index 5343112..79949e0 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Running your own URL shortener is fun, geeky and useful: you own your data and d - Sample files to create your own public interface -**Shipped version:** 1.9~ynh1 +**Shipped version:** 1.9~ynh2 **Demo:** https://yourls.org/cookie+ @@ -40,7 +40,7 @@ Running your own URL shortener is fun, geeky and useful: you own your data and d ## Documentation and resources * Official app website: https://yourls.org/ -* Official admin documentation: https://github.com/YOURLS/YOURLS/wiki +* Official admin documentation: https://docs.yourls.org/ * Upstream app code repository: https://github.com/YOURLS/YOURLS * YunoHost documentation for this app: https://yunohost.org/app_yourls * Report a bug: https://github.com/YunoHost-Apps/yourls_ynh/issues diff --git a/README_fr.md b/README_fr.md index 69464f4..b807017 100644 --- a/README_fr.md +++ b/README_fr.md @@ -25,7 +25,7 @@ Running your own URL shortener is fun, geeky and useful: you own your data and d - Sample files to create your own public interface -**Version incluse :** 1.9~ynh1 +**Version incluse :** 1.9~ynh2 **Démo :** https://yourls.org/cookie+ @@ -36,7 +36,7 @@ Running your own URL shortener is fun, geeky and useful: you own your data and d ## Documentations et ressources * Site officiel de l'app : https://yourls.org/ -* Documentation officielle de l'admin : https://github.com/YOURLS/YOURLS/wiki +* Documentation officielle de l'admin : https://docs.yourls.org/ * Dépôt de code officiel de l'app : https://github.com/YOURLS/YOURLS * Documentation YunoHost pour cette app : https://yunohost.org/app_yourls * Signaler un bug : https://github.com/YunoHost-Apps/yourls_ynh/issues diff --git a/manifest.json b/manifest.json index 5e3a65c..f402f15 100644 --- a/manifest.json +++ b/manifest.json @@ -6,13 +6,13 @@ "en": "URL shortening service", "fr": "Service de raccourcisseur d'URL" }, - "version": "1.9~ynh1", + "version": "1.9~ynh2", "url": "https://yourls.org/", "upstream": { "license": "MIT", "website": "https://yourls.org/", "demo": "https://yourls.org/cookie+", - "admindoc": "https://github.com/YOURLS/YOURLS/wiki", + "admindoc": "https://docs.yourls.org/", "code": "https://github.com/YOURLS/YOURLS" }, "license": "MIT", diff --git a/scripts/_common.sh b/scripts/_common.sh index e8e24e3..35190ba 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,10 +4,10 @@ # COMMON VARIABLES #================================================= -YNH_PHP_VERSION="8.0" +YNH_PHP_VERSION="7.4" # dependencies used by the app -pkg_dependencies="php${YNH_PHP_VERSION}-gmp php${YNH_PHP_VERSION}-bcmath php${YNH_PHP_VERSION}-curl php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-xml" +pkg_dependencies="php${YNH_PHP_VERSION}-gmp php${YNH_PHP_VERSION}-bcmath php${YNH_PHP_VERSION}-curl php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-xml" #================================================= # PERSONAL HELPERS