mirror of
https://github.com/YunoHost-Apps/nullboard_ynh.git
synced 2024-09-03 19:46:08 +02:00
commit
6a59d5dbd1
6 changed files with 7 additions and 13 deletions
|
@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
|
||||
Minimalist kanban board, focused on compactness and readability
|
||||
|
||||
**Shipped version:** 1.0~ynh4
|
||||
**Shipped version:** 1.0~ynh5
|
||||
|
||||
**Demo:** https://nullboard.io/preview
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
|
|||
|
||||
Kanban minimaliste, axé sur la compacité et la lisibilité
|
||||
|
||||
**Version incluse :** 1.0~ynh4
|
||||
**Version incluse :** 1.0~ynh5
|
||||
|
||||
**Démo :** https://nullboard.io/preview
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOURCE_URL=https://github.com/apankrat/nullboard/archive/f803756b054d1cf4aa2094800e1ac4a0561df9df.tar.gz
|
||||
SOURCE_SUM=b24f38872c8d4327ea570c41e0454dd9bce0b6f337c68aa3440fc7ac42901912
|
||||
SOURCE_URL=https://github.com/apankrat/nullboard/archive/46525687c4da36b36f123af4364a1c193fedf637.tar.gz
|
||||
SOURCE_SUM=7406dfd698245f4ebc8e91b9d3f0f5ced29fb2370de69ba60ed14cf819b77d0e
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=tar.gz
|
||||
SOURCE_IN_SUBDIR=true
|
||||
|
|
|
@ -6,11 +6,6 @@ location __PATH__/ {
|
|||
|
||||
index nullboard.html;
|
||||
|
||||
# Force usage of https
|
||||
if ($scheme = http) {
|
||||
rewrite ^ https://$server_name$request_uri? permanent;
|
||||
}
|
||||
|
||||
# Include SSOWAT user panel.
|
||||
include conf.d/yunohost_panel.conf.inc;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Minimalist kanban board, focused on compactness and readability",
|
||||
"fr": "Kanban minimaliste, axé sur la compacité et la lisibilité"
|
||||
},
|
||||
"version": "1.0~ynh4",
|
||||
"version": "1.0~ynh5",
|
||||
"url": "https://nullboard.io/preview",
|
||||
"upstream": {
|
||||
"license": "BSD-2-Clause",
|
||||
|
@ -20,7 +20,7 @@
|
|||
"email": ""
|
||||
},
|
||||
"requirements": {
|
||||
"yunohost": ">= 4.2.4"
|
||||
"yunohost": ">= 4.3.0"
|
||||
},
|
||||
"multi_instance": true,
|
||||
"services": [
|
||||
|
|
|
@ -30,8 +30,7 @@ final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|||
#=================================================
|
||||
ynh_script_progression --message="Validating restoration parameters..." --weight=1
|
||||
|
||||
test ! -d $final_path \
|
||||
|| ynh_die --message="There is already a directory: $final_path "
|
||||
test ! -d $final_path || ynh_die --message="There is already a directory: $final_path "
|
||||
|
||||
#=================================================
|
||||
# STANDARD RESTORATION STEPS
|
||||
|
|
Loading…
Reference in a new issue