1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/castopod_ynh.git synced 2024-09-03 18:16:14 +02:00
This commit is contained in:
Éric Gaspar 2022-07-19 22:45:26 +02:00
parent 79b0e4d12f
commit 7d3b4f9ac2
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 5 additions and 4 deletions

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://code.castopod.org/adaures/castopod/uploads/ca9489b2a78f3434dc7b98065ab8caab/castopod-1.0.0-beta.16.zip
SOURCE_SUM=dba778738f7d2800051422f57886f0230d3a4f30e94167528632de5e1267949a
SOURCE_URL=https://code.castopod.org/adaures/castopod/uploads/34c2c6a92d934a403425219e59524177/castopod-1.0.0-beta.18.zip
SOURCE_SUM=33889bf23cc133fbd735a19ec1cc92a61195da7d806163e4b266e668c5ad4833
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=zip
SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Hosting platform made for podcasters",
"fr": "Plateforme d'hébergement conçue pour les podcasteurs"
},
"version": "1.0.0-96~ynh1",
"version": "1.0.0-98~ynh1",
"url": "https://castopod.org/",
"upstream": {
"license": "GPL-3.0-only",

View file

@ -49,7 +49,6 @@ ynh_script_progression --message="Storing installation settings..." --weight=1
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
ynh_app_setting_set --app=$app --key=admin --value=$admin
ynh_app_setting_set --app=$app --key=phpversion --value=$phpversion
ynh_app_setting_set --app=$app --key=password --value="$password"
#=================================================
@ -160,6 +159,8 @@ ynh_script_progression --message="Configuring permissions..." --weight=10
# Make app public if necessary or protect it
if [ $is_public -eq 1 ]
then
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
ynh_permission_update --permission="main" --add="visitors"
fi