mirror of
https://github.com/YunoHost-Apps/wekan_ynh.git
synced 2024-09-03 20:36:09 +02:00
commit
cbc854d712
7 changed files with 16 additions and 16 deletions
|
@ -9,7 +9,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to
|
|||
## Overview
|
||||
Wekan is an open-source kanban board (task manager and organizer)
|
||||
|
||||
**Shipped version:** 3.45
|
||||
**Shipped version:** 3.55
|
||||
|
||||
## Screenshots
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# This is on YunoHost server just to avoid the file from disappearing
|
||||
# Original source is https://releases.wekan.team/raspi3/wekan-3.45-arm64.zip
|
||||
# YunoHost source is https://build.yunohost.org/apps/wekan-3.45-arm64.zip
|
||||
SOURCE_URL=https://build.yunohost.org/apps/wekan-3.45-arm64.zip
|
||||
SOURCE_SUM=854c4a47125b616da3a36b7a766dbcf23adc1d926060c3e8b370e6c16b53bc25
|
||||
# Original source is https://releases.wekan.team/raspi3/wekan-3.55-arm64.zip
|
||||
# YunoHost source is https://build.yunohost.org/apps/wekan-3.55-arm64.zip
|
||||
SOURCE_URL=https://releases.wekan.team/raspi3/wekan-3.55-arm64.zip
|
||||
SOURCE_SUM=1d5aa2f1366bc817e94488862a8938be142f3dc0630b5e8bd00531dc1b249be1
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=zip
|
||||
SOURCE_IN_SUBDIR=true
|
||||
SOURCE_FILENAME=wekan-3.45-arm64.zip
|
||||
SOURCE_FILENAME=wekan-3.55-arm64.zip
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# This is on YunoHost server just to avoid the file from disappearing
|
||||
# Original source is https://releases.wekan.team/wekan-3.45.zip
|
||||
# YunoHost source is https://build.yunohost.org/apps/wekan-3.45.zip
|
||||
SOURCE_URL=https://build.yunohost.org/apps/wekan-3.45.zip
|
||||
SOURCE_SUM=b5385e2aadefe01a5f21d669475f8c33bd34992d2b019a5417576dbfc4ed77b1
|
||||
# Original source is https://releases.wekan.team/wekan-3.55.zip
|
||||
# YunoHost source is https://build.yunohost.org/apps/wekan-3.55.zip
|
||||
SOURCE_URL=https://releases.wekan.team/wekan-3.55.zip
|
||||
SOURCE_SUM=9b5c9d7d3a72d3864ee68cc537f924738430dde208aac0e3139b8faccd3a8197
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=zip
|
||||
SOURCE_IN_SUBDIR=true
|
||||
SOURCE_FILENAME=wekan-3.45.zip
|
||||
SOURCE_FILENAME=wekan-3.55.zip
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Trello-like kanban",
|
||||
"fr": "Un kanban similaire à Trello"
|
||||
},
|
||||
"version": "3.45~ynh1",
|
||||
"version": "3.55~ynh1",
|
||||
"url": "https://wekan.io",
|
||||
"license": "MIT",
|
||||
"maintainer": [
|
||||
|
|
|
@ -73,7 +73,7 @@ ynh_app_setting_set --app=$app --key=port --value=$port
|
|||
#=================================================
|
||||
ynh_print_info --message="Installing dependencies..."
|
||||
|
||||
ynh_install_nodejs --nodejs_version="8.16.1"
|
||||
ynh_install_nodejs --nodejs_version="8.16.2"
|
||||
ynh_use_nodejs
|
||||
|
||||
ynh_install_app_dependencies $pkg_dependencies
|
||||
|
|
|
@ -82,7 +82,7 @@ find "$final_path" -type d -print0 | xargs -0 chmod 750
|
|||
ynh_print_info --message="Reinstalling dependencies..."
|
||||
|
||||
# Define and install dependencies
|
||||
ynh_install_nodejs --nodejs_version="8.16.1"
|
||||
ynh_install_nodejs --nodejs_version="8.16.2"
|
||||
ynh_use_nodejs
|
||||
|
||||
ynh_install_app_dependencies $pkg_dependencies
|
||||
|
|
|
@ -132,10 +132,10 @@ if ynh_version_gt "2.48~ynh1" "${previous_version}" ; then
|
|||
ynh_store_file_checksum "$config_file"
|
||||
fi
|
||||
|
||||
if ynh_version_gt "3.45~ynh1" "${previous_version}" ; then
|
||||
if ynh_version_gt "3.55~ynh1" "${previous_version}" ; then
|
||||
# Install dependencies
|
||||
ynh_remove_nodejs
|
||||
ynh_install_nodejs --nodejs_version="8.16.1"
|
||||
ynh_install_nodejs --nodejs_version="8.16.2"
|
||||
ynh_use_nodejs
|
||||
|
||||
# Create a dedicated systemd config
|
||||
|
|
Loading…
Reference in a new issue