diff --git a/README.md b/README.md index 240a953..20d5779 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview A copylefted libre software, modern and powerful wiki app built on Node.js, Git and Markdown for YunoHost. -**Shipped version:** 2.4.75 +**Shipped version:** 2.4.107 ## Important points before installing diff --git a/check_process b/check_process index efe3824..e5f1b57 100644 --- a/check_process +++ b/check_process @@ -22,6 +22,8 @@ upgrade=1 from_commit=8c74d870a550e99db4b6cac0a695f3155b28b514 # 2.3.81~ynh1 upgrade=1 from_commit=ddb3a60b6f0f8024169db5a79ea07a9ac936b290 + # 2.4.75~ynh1 + upgrade=1 from_commit=164ef6bac3a65fe075850ec060edcd9c3249f83a backup_restore=1 multi_instance=1 # This test is no longer necessary since the version 2.7 (PR: https://github.com/YunoHost/yunohost/pull/304), you can still do it if your app could be installed with this version. @@ -47,4 +49,5 @@ Notification=yes name=2.3.77 ; commit=ddb3a60b6f0f8024169db5a79ea07a9ac936b290 name=2.3.81~ynh1 -/ + ; commit=164ef6bac3a65fe075850ec060edcd9c3249f83a + name=2.4.75~ynh1 diff --git a/conf/app.src b/conf/app.src index 76cf956..9b9b6d0 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/Requarks/wiki/releases/download/2.4.75/wiki-js.tar.gz -SOURCE_SUM=f4c6849c98e9fe0612c10d515ff5e06221e904ea5a8b6986bc341997ebb1b2e1 +SOURCE_URL=https://github.com/Requarks/wiki/releases/download/2.4.107/wiki-js.tar.gz +SOURCE_SUM=ac5c389015578d145f440763ad68724bdf652691c7334fef5fe4b5c695cdc033 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=false diff --git a/conf/config.sample.yml b/conf/config.sample.yml index 0606f73..7367e76 100644 --- a/conf/config.sample.yml +++ b/conf/config.sample.yml @@ -105,18 +105,6 @@ bindIP: 0.0.0.0 logLevel: info -# --------------------------------------------------------------------- -# Upload Limits -# --------------------------------------------------------------------- -# If you're using a reverse-proxy in front of Wiki.js, you must also -# change your proxy upload limits! - -uploads: - # Maximum upload size in bytes per file (default: 5242880 (5 MB)) - maxFileSize: 5242880 - # Maximum file uploads per request (default: 10) - maxFiles: 10 - # --------------------------------------------------------------------- # Offline Mode # --------------------------------------------------------------------- diff --git a/manifest.json b/manifest.json index a829ebc..8d8380c 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "An open source, modern and powerful wiki app built on Node.js, Git and Markdown.", "fr": "Un wiki moderne et open source propulsé Node.js, Git et Markdown." }, - "version": "2.4.75~ynh1", + "version": "2.4.107~ynh1", "url": "https://wiki.js.org/", "license": "AGPL-3.0-or-later", "maintainer": { diff --git a/scripts/install b/scripts/install index a1147e7..a226c09 100644 --- a/scripts/install +++ b/scripts/install @@ -52,7 +52,6 @@ ynh_script_progression --message="Storing installation settings..." 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=is_public --value=$is_public - ynh_app_setting_set --app=$app --key=ldap_user --value=$ldap_user ynh_app_setting_set --app=$app --key=ldap_password --value=$ldap_password diff --git a/scripts/remove b/scripts/remove index 769b29d..18e3850 100644 --- a/scripts/remove +++ b/scripts/remove @@ -21,7 +21,6 @@ port=$(ynh_app_setting_get --app=$app --key=port) db_name=$(ynh_app_setting_get --app=$app --key=db_name) db_user=$db_name final_path=$(ynh_app_setting_get --app=$app --key=final_path) - ldap_user=$(ynh_app_setting_get --app=$app --key=ldap_user) #=================================================