diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 96be927..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "cSpell.words": [ - "ldap", - "librephotos", - "yunohost" - ] -} \ No newline at end of file diff --git a/README.md b/README.md index 2b25377..42175bb 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview LibrePhotos is a Google Photos-like app. It supports automatic classification of faces, grouping photos by date, location, or objects present, and album creation. -**Shipped version:** 2020-04-13 +**Shipped version:** 2020-04-22 ## Screenshots @@ -48,9 +48,9 @@ LDAP is supported. The scan directory of each user is automatically set to `/hom ## Links - * Report a bug: https://github.com/YunoHost-Apps/librephotos_ynh/issues - * Upstream app repository: https://github.com/LibrePhotos/librephotos - * YunoHost website: https://yunohost.org/ +* Report a bug: https://github.com/YunoHost-Apps/librephotos_ynh/issues +* Upstream app repository: https://github.com/LibrePhotos/librephotos +* YunoHost website: https://yunohost.org/ --- diff --git a/README_fr.md b/README_fr.md index 7d46e41..96bd6a6 100644 --- a/README_fr.md +++ b/README_fr.md @@ -27,7 +27,7 @@ Il y a un panneau d'administration à `https://votre-domaine.tld/admin`. ## Documentation - * Documentation officielle : https://github.com/LibrePhotos/librephotos +* Documentation officielle : https://github.com/LibrePhotos/librephotos ## Caractéristiques spécifiques YunoHost LDAP est pris charge. Le dossier de photos de chaque utilisateur est defini comme `/home/yunohost.multimedia/$username/Picture` par défaut. @@ -48,9 +48,9 @@ LDAP est pris charge. Le dossier de photos de chaque utilisateur est defini comm ## Liens - * Signaler un bug : https://github.com/YunoHost-Apps/librephotos_ynh/issues - * Dépôt de l'application principale : https://github.com/LibrePhotos/librephotos - * Site web YunoHost : https://yunohost.org/ +* Signaler un bug : https://github.com/YunoHost-Apps/librephotos_ynh/issues +* Dépôt de l'application principale : https://github.com/LibrePhotos/librephotos +* Site web YunoHost : https://yunohost.org/ --- diff --git a/conf/backend.src b/conf/backend.src index e97026e..f0bb14a 100644 --- a/conf/backend.src +++ b/conf/backend.src @@ -1,7 +1,7 @@ -SOURCE_URL=https://github.com/LibrePhotos/librephotos/tarball/84f4109fbe046fd352e82d3985a0386fd09d9b03 -SOURCE_SUM=e6424ed95afcc0c490ead79ddf629c78d1d330910000e51c4ca8233fec7968f9 +SOURCE_URL=https://github.com/LibrePhotos/librephotos/tarball/88c29c910fddcf0f8a3c88c8538460a8fcc15aa4 +SOURCE_SUM=c1a2bd55fd7bbf48eef7cafefcca0af33d8a07763bf764322f29f74227d68391 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true -SOURCE_FILENAME=84f4109fbe046fd352e82d3985a0386fd09d9b03 +SOURCE_FILENAME=88c29c910fddcf0f8a3c88c8538460a8fcc15aa4 SOURCE_EXTRACT=true diff --git a/manifest.json b/manifest.json index 031df12..12e99a1 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "A photo viewer and manager similar to Google Photos", "fr": "Un gestionnaire de photos semblable à Google Photos" }, - "version": "0.0.20210412~ynh1", + "version": "0.0.20210422~ynh1", "url": "https://github.com/LibrePhotos/librephotos", "license": "MIT", "maintainer": { diff --git a/scripts/_common.sh b/scripts/_common.sh index 7562315..cbd1fee 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -41,7 +41,7 @@ function set_up_virtualenv { chown -R $app:$app $backend_path sudo -u $app python3 -m venv $backend_path/venv sudo -u $app $backend_path/venv/bin/pip --cache-dir $backend_path/.cache/pip install -U wheel pip setuptools 2>&1 - sudo -u $app $backend_path/venv/bin/pip --cache-dir $backend_path/.cache/pip install -U torch==1.7.1+cpu torchvision==0.8.2+cpu -f https://download.pytorch.org/whl/torch_stable.html 2>&1 + sudo -u $app $backend_path/venv/bin/pip --cache-dir $backend_path/.cache/pip install -U torch==1.8.0+cpu torchvision==0.9.0+cpu -f https://download.pytorch.org/whl/torch_stable.html 2>&1 sudo -u $app $backend_path/venv/bin/pip --cache-dir $backend_path/.cache/pip install -U --install-option="--no" --install-option="DLIB_USE_CUDA" --install-option="--no" --install-option="USE_AVX_INSTRUCTIONS" --install-option="--no" --install-option="USE_SSE4_INSTRUCTIONS" dlib 2>&1 sudo -u $app $backend_path/venv/bin/pip --cache-dir $backend_path/.cache/pip install -U --requirement $backend_path/requirements.txt 2>&1 sudo -u $app $backend_path/venv/bin/pip --cache-dir $backend_path/.cache/pip install -U --requirement $backend_path/requirements-ynh.txt 2>&1