Merge pull request #58 from YunoHost-Apps/ci-auto-update-0.7.2

Upgrade to v0.7.2

/!\ Version number doesn't change but the admin forget to change it, so we are in 0.7.2 /!\
This commit is contained in:
oufmilo 2024-02-15 01:39:59 +01:00 committed by GitHub
commit 22c8390103
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 21 additions and 7 deletions

View file

@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
BookWyrm is a social network for tracking your reading, talking about books, writing reviews, and discovering what to read next. BookWyrm is a social network for tracking your reading, talking about books, writing reviews, and discovering what to read next.
**Shipped version:** 0.7.1~ynh1 **Shipped version:** 0.7.2~ynh1
**Demo:** https://joinbookwyrm.com/fr/ **Demo:** https://joinbookwyrm.com/fr/

View file

@ -19,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
BookWyrm est un réseau social pour garder la trace de vos lectures, parler de livres, écrire des critiques et découvrir quoi lire ensuite. BookWyrm est un réseau social pour garder la trace de vos lectures, parler de livres, écrire des critiques et découvrir quoi lire ensuite.
**Version incluse :** 0.7.1~ynh1 **Version incluse :** 0.7.2~ynh1
**Démo :** https://joinbookwyrm.com/fr/ **Démo :** https://joinbookwyrm.com/fr/

View file

@ -1,12 +1,26 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ { location __PATH__/ {
proxy_pass http://127.0.0.1:__PORT__/; proxy_pass http://127.0.0.1:__PORT__/;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_redirect off; proxy_redirect off;
} }
# directly serve images and static files from the
# bookwyrm filesystem using sendfile.
# make the logs quieter by not reporting these requests
location ~ \.(bmp|ico|jpg|jpeg|png|tif|tiff|webp|css|js)$ {
root __INSTALL_DIR__;
try_files $uri =404;
more_set_headers "X-Cache-Status: STATIC";
access_log off;
}
# block access to any non-image files from images or static
location ~ ^/images/ {
return 403;
}
location /images/ { location /images/ {
alias __INSTALL_DIR__/images/; alias __INSTALL_DIR__/images/;
} }

View file

@ -5,7 +5,7 @@ name = "BookWyrm"
description.en = "Platform for social reading" description.en = "Platform for social reading"
description.fr = "Plateforme de lecture sociale" description.fr = "Plateforme de lecture sociale"
version = "0.7.1~ynh1" version = "0.7.2~ynh1"
maintainers = ["oufmilo"] maintainers = ["oufmilo"]
@ -49,8 +49,8 @@ ram.runtime = "50M"
[resources.sources] [resources.sources]
[resources.sources.main] [resources.sources.main]
url = "https://github.com/bookwyrm-social/bookwyrm/archive/refs/tags/v0.7.1.tar.gz" url = "https://github.com/bookwyrm-social/bookwyrm/archive/refs/tags/v0.7.2.tar.gz"
sha256 = "a5a1422bf26728b6d73c267f57946717c6d26513e48dc25687ab633a673ebf4e" sha256 = "258831fa54c15fd8ea9a3ba06bb9afab016d754a0850118e65fdb70dfa022df7"
autoupdate.strategy = "latest_github_tag" autoupdate.strategy = "latest_github_tag"

View file

@ -17,6 +17,6 @@ test_format = 1.0
# Commits to test upgrade from # Commits to test upgrade from
# ------------------------------- # -------------------------------
test_upgrade_from.7600f04.name = "0.5.4"
test_upgrade_from.d291f0e.name = "0.6.4" test_upgrade_from.d291f0e.name = "0.6.4"
test_upgrade_from.749f46f.name = "0.6.6" test_upgrade_from.749f46f.name = "0.6.6"
test_upgrade_from.4ad5a01.name = "0.7.1"