1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lufi_ynh.git synced 2024-09-03 19:36:28 +02:00
* Small fixs

* Auto-update README

* Version 2 (#79)

* v2

* Auto-update README

* v2

* Auto-update README

* fix

* Update install

* Update systemd.service

* fix

* fix

* fix

* fix

* Update manifest.toml

* cleaning

* Update config_panel.toml

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* Delete check_process

* Update manifest.toml

* Update tests.toml

* fix(upgrade): missing use_ldap in upgrade (#82)

* fix(upgrade): missing use_ldap loading in upgrade

* style: tabs

* Update manifest.toml

* Auto-update README

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>
Co-authored-by: Hugo Poissonnet <hugo@poissonnet.fr>
This commit is contained in:
Éric Gaspar 2023-07-18 18:36:37 +02:00 committed by GitHub
parent 4311a7ac2d
commit 27ed0d5684
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 19 additions and 4 deletions

View file

@ -21,7 +21,7 @@ The administrator of the Lufi instance you use will not be able to see what is i
The encryption key part of the URL is a anchor (Cf. [Fragment Identifier](https://en.wikipedia.org/wiki/Fragment_identifier)), that means this part is only processed client-side and does not reach the server. :-)
**Shipped version:** 0.05.21~ynh1
**Shipped version:** 0.05.21~ynh2
**Demo:** https://demo.lufi.io/

View file

@ -21,7 +21,7 @@ The administrator of the Lufi instance you use will not be able to see what is i
The encryption key part of the URL is a anchor (Cf. [Fragment Identifier](https://en.wikipedia.org/wiki/Fragment_identifier)), that means this part is only processed client-side and does not reach the server. :-)
**Version incluse :** 0.05.21~ynh1
**Version incluse :** 0.05.21~ynh2
**Démo :** https://demo.lufi.io/

View file

@ -5,7 +5,7 @@ name = "Lufi"
description.en = "Files and sharing anonymous application"
description.fr = "Application de partage de fichiers anonyme"
version = "0.05.21~ynh1"
version = "0.05.21~ynh2"
maintainers = ["frju365, cyp"]
@ -17,7 +17,7 @@ code = "https://framagit.org/fiat-tux/hat-softwares/lufi"
website = "https://git.framasoft.org/luc/lufi"
[integration]
yunohost = ">= 11.1.17"
yunohost = ">= 11.1.21"
architectures = "all"
multi_instance = true
ldap = true

View file

@ -34,6 +34,15 @@ if [ -z "${max_file_size:-}" ]; then
ynh_app_setting_set --app=$app --key=max_file_size --value=$max_file_size
fi
if [ -z "${use_ldap:-}" ]; then
use_ldap=0
ynh_app_setting_set --app=$app --key=use_ldap --value=$use_ldap
fi
if [ -z "${secret:-}" ]; then
secret=$(ynh_string_random --length=24)
ynh_app_setting_set --app=$app --key=secret --value=$secret
fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================

View file

@ -7,3 +7,9 @@ test_format = 1.0
# -------------------------------
args.use_ldap=0
# -------------------------------
# Commits to test upgrade from
# -------------------------------
test_upgrade_from.4311a7ac2df01a866bd50a83fbdb95b9c1c154ef.name = "Upgrade from 0.05.21~ynh1"