1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/librephotos_ynh.git synced 2024-09-03 19:36:12 +02:00

Update version

This commit is contained in:
Jules Bertholet 2021-04-22 14:33:49 -04:00
parent 9523e8a45b
commit 8f46553ab9
6 changed files with 13 additions and 20 deletions

View file

@ -1,7 +0,0 @@
{
"cSpell.words": [
"ldap",
"librephotos",
"yunohost"
]
}

View file

@ -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/
---

View file

@ -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/
---

View file

@ -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

View file

@ -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": {

View file

@ -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