1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/invoiceninja5_ynh.git synced 2024-09-03 19:26:23 +02:00

Merge pull request #71 from YunoHost-Apps/testing

Testing
This commit is contained in:
Sebastian Gumprich 2022-11-21 15:38:03 +01:00 committed by GitHub
commit c0aac3a41c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 5 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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