From 81401893055519ab3853fb67b6d38e8f45375f36 Mon Sep 17 00:00:00 2001 From: lapineige Date: Tue, 7 Feb 2017 09:56:40 +0100 Subject: [PATCH 1/3] Change download server to Wallabag's site (was Framabag) --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 4981226..5585ee5 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -9,7 +9,7 @@ VERSION="2.1.4" DEPS_PKG_NAME="wallabag-deps" # Full Wallabag sources tarball URL -WALLABAG_SOURCE_URL="https://framabag.org/wallabag-release-${VERSION}.tar.gz" +WALLABAG_SOURCE_URL="https://static.wallabag.org/releases/wallabag-release-${VERSION}.tar.gz" # Full Wallabag sources tarball checksum WALLABAG_SOURCE_SHA256="eb64205a4d7c161527edd08bed22e8dd9799fe8a4130c5964c18cba3a94c9768" From 2190dc39a10a09067555a569d5aedc6968800549 Mon Sep 17 00:00:00 2001 From: lapineige Date: Tue, 7 Feb 2017 09:58:19 +0100 Subject: [PATCH 2/3] [enh] Update to Wallabag 2.2.1 --- README.md | 2 +- manifest.json | 2 +- scripts/_common.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5cfcc36..72c49d1 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Wallabag v2 for Yunohost **This is a work-in-progress Wallabag v2 package for YunoHost. It's currently looking for new maintainer(s), so feel free to give a shout if you're interested in!** -**Shipped version:** 2.1.4 +**Shipped version:** 2.2.1 [Wallabag](https://www.wallabag.org/) is a self hostable application allowing you to not miss any content anymore. Click, save, read it when you can. It diff --git a/manifest.json b/manifest.json index dfb0742..fd4d8a9 100644 --- a/manifest.json +++ b/manifest.json @@ -8,7 +8,7 @@ }, "url": "https://www.wallabag.org", "license": "MIT", - "version": "2.1.4", + "version": "2.2.1", "maintainer": { "name": "jerome", "email": "jerome@yunohost.org" diff --git a/scripts/_common.sh b/scripts/_common.sh index 5585ee5..856ba86 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -3,7 +3,7 @@ # # Wallabag version -VERSION="2.1.4" +VERSION="2.2.1" # Package name for Wallabag dependencies DEPS_PKG_NAME="wallabag-deps" @@ -12,7 +12,7 @@ DEPS_PKG_NAME="wallabag-deps" WALLABAG_SOURCE_URL="https://static.wallabag.org/releases/wallabag-release-${VERSION}.tar.gz" # Full Wallabag sources tarball checksum -WALLABAG_SOURCE_SHA256="eb64205a4d7c161527edd08bed22e8dd9799fe8a4130c5964c18cba3a94c9768" +WALLABAG_SOURCE_SHA256="0f60cbab3c89be14a0ae9ce5dbb924458f6527b707847b27097fe91bdd74e14e" # App package root directory should be the parent folder PKGDIR=$(cd ../; pwd) From bd71f60af80a36f7f00282afc043320867cab96e Mon Sep 17 00:00:00 2001 From: lapineige Date: Tue, 7 Feb 2017 11:52:44 +0100 Subject: [PATCH 3/3] Added database_charset parameter According to the [doc](http://doc.wallabag.org/en/master/user/parameters.html), it's utf8mb4 for MySQL. --- conf/parameters.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conf/parameters.yml b/conf/parameters.yml index 7f8c4c9..d7f30ec 100644 --- a/conf/parameters.yml +++ b/conf/parameters.yml @@ -8,7 +8,8 @@ parameters: database_path: null database_table_prefix: null database_socket: null - + database_charset: utf8mb4 + mailer_transport: smtp mailer_host: 127.0.0.1 mailer_user: null