1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00

Update to upstream version 1.0.40 (#41)

This commit is contained in:
JimboJoe 2017-03-10 22:01:34 +01:00 committed by tostaki
parent bedb6d4ba8
commit 096e55b26b
3 changed files with 15 additions and 13 deletions

View file

@ -33,7 +33,7 @@ From command line:
Infos Infos
----- -----
Kanboard v1.0.36 Kanboard v1.0.40
Yunohost forum thread: <https://forum.yunohost.org/t/kanboard-package/78> Yunohost forum thread: <https://forum.yunohost.org/t/kanboard-package/78>
@ -42,25 +42,21 @@ Kanboard and SSOwat
Kanboard use SSOwat for user authentification (it means it use the user that the web server (nginx) sent him throught SSOwat), but can't list all user of the system. Kanboard use SSOwat for user authentification (it means it use the user that the web server (nginx) sent him throught SSOwat), but can't list all user of the system.
If you wish to add a user, just log in with that user into Kanboard so the software knows him and displays it. If you wish to add a user, just log in with that user into Kanboard so the software knows him and displays it.
Developper infos Developer infos
---------------- ----------------
Please do your pull request to the dev branch. Please do your pull request to the dev branch.
Update package: Update package version in `scripts/_common.sh`
```
wget http://kanboard.net/kanboard-latest.zip Then do a manual diff between `conf/config.php` and `config.default.php` [from upstream Kanboard project](https://github.com/kanboard/kanboard/blob/master/config.default.php) to see if there are new config options
unzip kanboard-latest.zip
rm -Rf sources
mv kanboard sources
```
Then do a manual diff between `conf/config.php` and `sources/config.default.php` to see if there are new config options
Update readme with the new version Update readme with the new version
Test it Test it
Test or upgrade to dev version: Test or upgrade to dev version:
``` ```
su - admin su - admin
git clone -b dev https://github.com/YunoHost-Apps/kanboard_ynh git clone -b dev https://github.com/YunoHost-Apps/kanboard_ynh

View file

@ -1,7 +1,7 @@
<?php <?php
// Data folder (must be writeable by the web server user) // Data folder (must be writeable by the web server user and absolute)
define('DATA_DIR', 'data'); define('DATA_DIR', __DIR__.DIRECTORY_SEPARATOR.'data');
// Enable/Disable debug // Enable/Disable debug
define('DEBUG', false); define('DEBUG', false);
@ -30,6 +30,9 @@ define('CACHE_DIR', DATA_DIR.DIRECTORY_SEPARATOR.'cache');
// Folder for uploaded files (must be writeable by the web server user) // Folder for uploaded files (must be writeable by the web server user)
define('FILES_DIR', DATA_DIR.DIRECTORY_SEPARATOR.'files'); define('FILES_DIR', DATA_DIR.DIRECTORY_SEPARATOR.'files');
// Enable/disable email configuration from the user interface
define('MAIL_CONFIGURATION', true);
// E-mail address for the "From" header (notifications) // E-mail address for the "From" header (notifications)
define('MAIL_FROM', 'yuno_email'); define('MAIL_FROM', 'yuno_email');
@ -225,5 +228,8 @@ define('HTTP_PROXY_PORT', '3128');
define('HTTP_PROXY_USERNAME', ''); define('HTTP_PROXY_USERNAME', '');
define('HTTP_PROXY_PASSWORD', ''); define('HTTP_PROXY_PASSWORD', '');
// Set to false to allow self-signed certificates
define('HTTP_VERIFY_SSL_CERTIFICATE', false);
// TOTP (2FA) issuer name // TOTP (2FA) issuer name
define('TOTP_ISSUER', 'Kanboard'); define('TOTP_ISSUER', 'Kanboard');

View file

@ -3,7 +3,7 @@
# #
# Application version # Application version
VERSION="1.0.36" VERSION="1.0.40"
# Remote URL to fetch application source archive # Remote URL to fetch application source archive
APPLICATION_SOURCE_URL="https://kanboard.net/kanboard-${VERSION}.zip" APPLICATION_SOURCE_URL="https://kanboard.net/kanboard-${VERSION}.zip"