From e0ce90e07cd5f21751527d6b7864ad31cbdfd67a Mon Sep 17 00:00:00 2001 From: Krakinou Date: Tue, 18 Dec 2018 21:29:55 +0100 Subject: [PATCH 1/2] README update --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 75c37a7..03e2a1f 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,9 @@ sudo yunohost app upgrade calibreweb -u https://github.com/Yunohost-Apps/calibre ## Todo - [ ] Multiinstance -- [ ] Better Multimedia integration +- [ ] Better Multimedia integration +- [ ] Package_check integrtion +- [ ] On backup/remove/upgrade : check for database location to update settings ## License Package and software are GPL 3.0 From db68e5ecf139215aa93039d38c0ef6b0d0904780 Mon Sep 17 00:00:00 2001 From: Krakinou Date: Tue, 18 Dec 2018 22:34:16 +0100 Subject: [PATCH 2/2] Correct space in password Update README.md --- README.md | 2 +- scripts/install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03e2a1f..818c37a 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ chown -R calibreweb: path/to/library or chmod o+rw path/to/library ``` - +* Do not use a Nextcloud folder. It's all right if the folder is an external storage in Nextcloud but not if it's an internal one : Changing the data in the library will cause trouble with the sync ## Links * Report a bug: https://github.com/YunoHost-Apps/calibre_ynh/issues diff --git a/scripts/install b/scripts/install index 96c648d..588ade6 100755 --- a/scripts/install +++ b/scripts/install @@ -170,7 +170,7 @@ eval sqlite3 $final_path/app.db "$conf" #mise à jour du mot de passe (je ne sais pas pourquoi, je n'arrive pas à l'intégrer dans le fichier de conf, pb de " et ') ynh_print_OFF -sqlite3 $final_path/app.db "UPDATE user SET password='$(python ../conf/generate_password_hash.py $pass $final_path/vendor)' WHERE ID=1" +sqlite3 $final_path/app.db "UPDATE user SET password='$(python ../conf/generate_password_hash.py "$pass" $final_path/vendor)' WHERE ID=1" ynh_print_ON #=================================================