diff --git a/README.md b/README.md index e648c44..8c9e41d 100755 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Castopod is currently in beta but already quite stable and used by podcasters ar - Multi-user: add contributors and set roles - i18n support: translated in English, French & Polish with more to come! -**Shipped version:** 1.0.1~ynh1 +**Shipped version:** 1.0.2~ynh1 **Demo:** https://podcast.podlibre.org/@podlibre_fr diff --git a/README_fr.md b/README_fr.md index 2afc7e5..fd78d64 100755 --- a/README_fr.md +++ b/README_fr.md @@ -40,7 +40,7 @@ Castopod is currently in beta but already quite stable and used by podcasters ar - Multi-user: add contributors and set roles - i18n support: translated in English, French & Polish with more to come! -**Version incluse :** 1.0.1~ynh1 +**Version incluse :** 1.0.2~ynh1 **Démo :** https://podcast.podlibre.org/@podlibre_fr diff --git a/conf/app.src b/conf/app.src index 3e89ed6..4c54167 100755 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://code.castopod.org/adaures/castopod/uploads/bbbe9a15a1218bdb7af5286125a64425/castopod-1.0.1.zip -SOURCE_SUM=ea5f0e97f0f637a3c88ec2287a82543487d922ef2d869167050368b6498b5966 +SOURCE_URL=https://code.castopod.org/adaures/castopod/uploads/55a64bc49012b0cb710dc7a91b467391/castopod-1.0.2.zip +SOURCE_SUM=f02847260eb12708c11a41adddc73d4b111df9aff80866295af84eb5fdb7e465 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=zip SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index a6d53d8..927e352 100755 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Hosting platform made for podcasters", "fr": "Plateforme d'hébergement conçue pour les podcasteurs" }, - "version": "1.0.1~ynh1", + "version": "1.0.2~ynh1", "url": "https://castopod.org/", "upstream": { "license": "GPL-3.0-only", diff --git a/scripts/_common.sh b/scripts/_common.sh index f41e323..947108f 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -6,7 +6,7 @@ YNH_PHP_VERSION="8.1" -pkg_dependencies="ffmpeg php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-intl php${YNH_PHP_VERSION}-curl php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-mysqlnd" +pkg_dependencies="ffmpeg php${YNH_PHP_VERSION}-fpm php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-intl php${YNH_PHP_VERSION}-curl php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-mysqlnd" #================================================= # PERSONAL HELPERS diff --git a/scripts/install b/scripts/install index 4d0679a..81ca0e1 100755 --- a/scripts/install +++ b/scripts/install @@ -27,6 +27,7 @@ ynh_abort_if_errors domain=$YNH_APP_ARG_DOMAIN path_url="/" is_public=$YNH_APP_ARG_IS_PUBLIC +phpversion=$YNH_PHP_VERSION app=$YNH_APP_INSTANCE_NAME @@ -100,7 +101,7 @@ chown -R $app:www-data "$final_path" ynh_script_progression --message="Configuring PHP-FPM..." --weight=1 # Create a dedicated PHP-FPM config -ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint +ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint phpversion=$(ynh_app_setting_get --app=$app --key=phpversion) #=================================================