From 355aa3392cfacec0b4f5e3f306398841e1a3ca47 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Mon, 21 Nov 2022 06:21:17 +0000 Subject: [PATCH 1/3] Upgrade to v5.5.41 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index 016f103..93dcff2 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/invoiceninja/invoiceninja/releases/download/v5.5.39/invoiceninja.zip -SOURCE_SUM=d2c191b4df06172cbe97f51b66649ed7943c57d904c88536634030c2929a50b2 +SOURCE_URL=https://github.com/invoiceninja/invoiceninja/releases/download/v5.5.41/invoiceninja.zip +SOURCE_SUM=22311878748ac502cf9fad792c90fd6341965091aaf2234586f97e30140e1033 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=zip SOURCE_IN_SUBDIR=false diff --git a/manifest.json b/manifest.json index 5554f5a..4ee25f8 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Create and email invoices, track payments, expenses, and time tasks", "fr": "Créer et envoyer des factures par e-mail, suivre les paiements, les dépenses et les tâches horaires" }, - "version": "5.5.39~ynh1", + "version": "5.5.41~ynh1", "url": "https://invoiceninja.org", "upstream": { "license": "Elastic-2.0", From bd828f862aaa50916acb5f3215d82ed95f45b1af Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Mon, 21 Nov 2022 06:21:25 +0000 Subject: [PATCH 2/3] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 66b89d0..154d439 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Create and email invoices, track payments, expenses, and time tasks -**Shipped version:** 5.5.39~ynh1 +**Shipped version:** 5.5.41~ynh1 **Demo:** https://app.invoiceninja.com/dashboard diff --git a/README_fr.md b/README_fr.md index 0effe5f..f7682dc 100644 --- a/README_fr.md +++ b/README_fr.md @@ -17,7 +17,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Créer et envoyer des factures par e-mail, suivre les paiements, les dépenses et les tâches horaires -**Version incluse :** 5.5.39~ynh1 +**Version incluse :** 5.5.41~ynh1 **Démo :** https://app.invoiceninja.com/dashboard From a00e1cc8c9e1ecf42f9c084f135ee9e50b72c561 Mon Sep 17 00:00:00 2001 From: Sebastian Gumprich Date: Mon, 21 Nov 2022 09:08:12 +0100 Subject: [PATCH 3/3] install snappdf, since its not included by default anymore --- scripts/install | 4 ++++ scripts/upgrade | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/scripts/install b/scripts/install index 1751443..77d3fb8 100755 --- a/scripts/install +++ b/scripts/install @@ -150,6 +150,10 @@ pushd "$final_path" php$phpversion artisan optimize --no-interaction --verbose php$phpversion artisan view:clear php$phpversion artisan cache:clear + + # install snappdf, since it isn't included by default anymore since + # 5.5.12: https://invoiceninja.github.io/docs/self-host-troubleshooting/#pdf-conversion-issues + php$phpversion vendor/bin/snappdf download popd chmod 750 "$final_path" diff --git a/scripts/upgrade b/scripts/upgrade index 0d98727..8e277d0 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -152,6 +152,10 @@ pushd "$final_path" # clear cached stuff under /app/data/storage/framework (https://github.com/laravel/framework/issues/17377) php$phpversion artisan view:clear php$phpversion artisan cache:clear + + # install snappdf, since it isn't included by default anymore since + # 5.5.12: https://invoiceninja.github.io/docs/self-host-troubleshooting/#pdf-conversion-issues + php$phpversion vendor/bin/snappdf download popd chmod 750 "$final_path"