1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mygpo_ynh.git synced 2024-09-03 19:55:52 +02:00

Update to version 2021-10-11

This commit is contained in:
Jules Bertholet 2021-10-17 23:44:50 -04:00
parent 2fdde73a99
commit c2c70ec509
7 changed files with 25 additions and 12 deletions

8
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,8 @@
{
"markdownlint.config": {
"MD028": false,
"MD025": {
"front_matter_title": ""
}
}
}

View file

@ -12,7 +12,7 @@
This is the webservice powering the https://gpodder.net website. It can be used to sync podcast subscriptions with [supported clients](https://gpoddernet.readthedocs.io/en/latest/user/clients.html). This is the webservice powering the https://gpodder.net website. It can be used to sync podcast subscriptions with [supported clients](https://gpoddernet.readthedocs.io/en/latest/user/clients.html).
**Shipped version:** 2021-09-13 **Shipped version:** 2021-10-11
## Screenshots ## Screenshots

View file

@ -12,7 +12,7 @@ Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/#/install
Ceci est le service derrière https://gpodder.net. Il peut servir pour synchronizer vos flux balado entre [clients compatibles](https://gpoddernet.readthedocs.io/en/latest/user/clients.html). Ceci est le service derrière https://gpodder.net. Il peut servir pour synchronizer vos flux balado entre [clients compatibles](https://gpoddernet.readthedocs.io/en/latest/user/clients.html).
**Version incluse :** 2021-09-13 **Version incluse :** 2021-10-11
## Captures d'écran ## Captures d'écran

View file

@ -1,7 +1,7 @@
SOURCE_URL=https://github.com/gpodder/mygpo/tarball/dc7dd8992a6b84cbc0d2d9a2d34d68d5fdd9e016 SOURCE_URL=https://github.com/gpodder/mygpo/tarball/bc050144d7071f30dd42b11f442e0a8034346acc
SOURCE_SUM=5913aa6f0eb3eeea0830218a6cb6f90a4c2b4267062cd66dc7b184f55a386b01 SOURCE_SUM=9fb970ac49f5b06c83ed52596c962d875d0be8ab1f27f89ffc402139d931e48e
SOURCE_SUM_PRG=sha256sum SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true SOURCE_IN_SUBDIR=true
SOURCE_FILENAME=dc7dd8992a6b84cbc0d2d9a2d34d68d5fdd9e016 SOURCE_FILENAME=bc050144d7071f30dd42b11f442e0a8034346acc
SOURCE_EXTRACT=true SOURCE_EXTRACT=true

View file

@ -6,7 +6,7 @@
"en": "Manage podcast subscriptions, and sync them between apps and devices", "en": "Manage podcast subscriptions, and sync them between apps and devices",
"fr": "Gérez vos sousciptions balado, et sychronisez-lez entre vos applis et appareils" "fr": "Gérez vos sousciptions balado, et sychronisez-lez entre vos applis et appareils"
}, },
"version": "2.11.20210913~ynh1", "version": "2.11.20211011~ynh1",
"url": "https://github.com/gpodder/mygpo", "url": "https://github.com/gpodder/mygpo",
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",
"maintainer": { "maintainer": {

View file

@ -1,13 +1,15 @@
diff --git a/conf/gunicorn.conf.py b/conf/gunicorn.conf.py diff --git a/conf/gunicorn.conf.py b/conf/gunicorn.conf.py
index c72ebeeb..cf0d5a3a 100644 index 726cd5f4..c13809cc 100644
--- a/conf/gunicorn.conf.py --- a/conf/gunicorn.conf.py
+++ b/conf/gunicorn.conf.py +++ b/conf/gunicorn.conf.py
@@ -1,15 +1,11 @@ @@ -1,16 +1,16 @@
import multiprocessing import multiprocessing
import os import os
-bind = "unix:/tmp/mygpo.sock" -bind = "unix:/tmp/mygpo.sock"
workers = multiprocessing.cpu_count() +#bind = "unix:/tmp/mygpo.sock"
#workers = multiprocessing.cpu_count()
workers = 3
# The maximum number of requests a worker will process before restarting. # The maximum number of requests a worker will process before restarting.
# max_requests = 1000 # max_requests = 1000
@ -15,6 +17,9 @@ index c72ebeeb..cf0d5a3a 100644
-errorlog = "/var/log/gunicorn/error.log" -errorlog = "/var/log/gunicorn/error.log"
-accesslog = "/var/log/gunicorn/access.log" -accesslog = "/var/log/gunicorn/access.log"
-loglevel = "info" -loglevel = "info"
+#errorlog = "/var/log/gunicorn/error.log"
+#accesslog = "/var/log/gunicorn/access.log"
+#loglevel = "info"
access_log_format = '%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s %(T)s "%(f)s" "%(a)s"'
timeout = 120 timeout = 120
graceful_timeout = 60

View file

@ -1,5 +1,5 @@
diff --git a/mygpo/settings.py b/mygpo/settings.py diff --git a/mygpo/settings.py b/mygpo/settings.py
index 33bd283f..2666ade6 100644 index b3927315..f295c326 100644
--- a/mygpo/settings.py --- a/mygpo/settings.py
+++ b/mygpo/settings.py +++ b/mygpo/settings.py
@@ -2,6 +2,7 @@ import re @@ -2,6 +2,7 @@ import re