diff --git a/README.md b/README.md index d9939b5..a61566b 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to ## Overview Web client for reading and editing Keepass files locally. It can also sync with WebDAV (Owncloud, Nextcloud...), Dropbox, Google Drive, OneDrive... -**Shipped version:** 1.6.3 +**Shipped version:** 1.7.4 ## Screenshots diff --git a/README_fr.md b/README_fr.md index 4c5e5f0..d935139 100644 --- a/README_fr.md +++ b/README_fr.md @@ -11,7 +11,7 @@ Si vous n'avez pas YunoHost, merci de regarder [ici](https://yunohost.org/#/inst ## Résumé Client Web pour la lecture et l'édition de fichiers Keepass en local. Il peut également synchroniser avec WebDAV (Owncloud, Nextcloud...), Dropbox, Google Drive, OneDrive.... -**Version embarquée:** 1.6.3 +**Version embarquée:** 1.7.4 ## Captures d'écran diff --git a/conf/app.src b/conf/app.src index 62cf48e..0c02606 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,6 +1,6 @@ -SOURCE_URL=https://github.com/keeweb/keeweb/archive/v1.6.3.tar.gz -SOURCE_SUM=097afbc94215206a3f7268e9e55c1a3c +SOURCE_URL=https://github.com/keeweb/keeweb/archive/gh-pages.zip +SOURCE_SUM=73ff6c1d52b2ef61ce951bcd602fa8af SOURCE_SUM_PRG=md5sum -SOURCE_FORMAT=tar.gz +SOURCE_FORMAT=zip SOURCE_IN_SUBDIR=true SOURCE_FILENAME= diff --git a/conf/nginx.conf b/conf/nginx.conf index eeb9a51..b7dc034 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,6 +1,6 @@ #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; location __PATH__/ { - alias __FINALPATH__/app/; + alias __FINALPATH__/; if ($scheme = http) { rewrite ^ https://$server_name$request_uri? permanent; diff --git a/scripts/install b/scripts/install index 3e61ec1..d4c897a 100644 --- a/scripts/install +++ b/scripts/install @@ -74,20 +74,20 @@ ynh_add_nginx_config # USE THE CONFIG FILE #================================================= -ynh_replace_string "(no-config)" "config.json" "$final_path/app/index.html" +ynh_replace_string "(no-config)" "config.json" "$final_path/index.html" #================================================= # COPY THE CONFIG FILE #================================================= -cp ../conf/config.json "$final_path/app/" +cp ../conf/config.json "$final_path/" #================================================= # STORE THE CHECKSUM OF THE CONFIG FILE #================================================= # Enregistre la somme de contrôle du fichier de config -ynh_store_file_checksum "$final_path/app/config.json" +ynh_store_file_checksum "$final_path/config.json" #================================================= # GENERIC FINALISATION