mirror of
https://github.com/YunoHost-Apps/hedgedoc_ynh.git
synced 2024-09-03 19:25:52 +02:00
Merge branch 'testing' of https://github.com/YunoHost-Apps/hedgedoc_ynh into testing
This commit is contained in:
commit
3e98be8524
6 changed files with 12 additions and 6 deletions
|
@ -6,6 +6,7 @@ It shall NOT be edited by hand.
|
|||
# HedgeDoc for YunoHost
|
||||
|
||||
[![Integration level](https://dash.yunohost.org/integration/hedgedoc.svg)](https://dash.yunohost.org/appci/app/hedgedoc) ![Working status](https://ci-apps.yunohost.org/ci/badges/hedgedoc.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/hedgedoc.maintain.svg)
|
||||
|
||||
[![Install HedgeDoc with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=hedgedoc)
|
||||
|
||||
*[Lire ce readme en français.](./README_fr.md)*
|
||||
|
@ -28,7 +29,7 @@ You can use it to easily collaborate on notes, graphs and even presentations in
|
|||
- Easy to use permission system
|
||||
- Low system requirements
|
||||
|
||||
**Shipped version:** 1.9.6~ynh2
|
||||
**Shipped version:** 1.9.7~ynh1
|
||||
|
||||
**Demo:** https://demo.hedgedoc.org/
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ It shall NOT be edited by hand.
|
|||
# HedgeDoc pour YunoHost
|
||||
|
||||
[![Niveau d’intégration](https://dash.yunohost.org/integration/hedgedoc.svg)](https://dash.yunohost.org/appci/app/hedgedoc) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/hedgedoc.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/hedgedoc.maintain.svg)
|
||||
|
||||
[![Installer HedgeDoc avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=hedgedoc)
|
||||
|
||||
*[Read this readme in english.](./README.md)*
|
||||
|
@ -28,7 +29,7 @@ You can use it to easily collaborate on notes, graphs and even presentations in
|
|||
- Easy to use permission system
|
||||
- Low system requirements
|
||||
|
||||
**Version incluse :** 1.9.6~ynh2
|
||||
**Version incluse :** 1.9.7~ynh1
|
||||
|
||||
**Démo :** https://demo.hedgedoc.org/
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOURCE_URL=https://github.com/hedgedoc/hedgedoc/releases/download/1.9.6/hedgedoc-1.9.6.tar.gz
|
||||
SOURCE_SUM=dfd0fca006f9075f072df058476ea542adb32b63964afb2985211e1114ab333e
|
||||
SOURCE_URL=https://github.com/hedgedoc/hedgedoc/releases/download/1.9.7/hedgedoc-1.9.7.tar.gz
|
||||
SOURCE_SUM=c9bd99c65cf45fa1d7808855b46abbfa13b24400254d8da5e81dae2965494bb3
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=tar.gz
|
||||
SOURCE_IN_SUBDIR=true
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
location ^~ __PATH__/ {
|
||||
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||||
location __PATH__/ {
|
||||
|
||||
proxy_pass http://127.0.0.1:__PORT__/;
|
||||
proxy_redirect off;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Collaborative editor to work on notes written in Markdown",
|
||||
"fr": "Éditeur collaboratif pour travailler sur des notes en Markdown"
|
||||
},
|
||||
"version": "1.9.6~ynh2",
|
||||
"version": "1.9.7~ynh1",
|
||||
"url": "https://hedgedoc.org",
|
||||
"upstream": {
|
||||
"license": "AGPL-3.0-only",
|
||||
|
|
|
@ -34,7 +34,10 @@ db_user=$db_name
|
|||
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
|
||||
|
||||
allow_anonymous=$(ynh_app_setting_get --app=$app --key=allow_anonymous)
|
||||
allow_anonymous_edits=$(ynh_app_setting_get --app=$app --key=allow_anonymous_edits)
|
||||
allow_email_registration=$(ynh_app_setting_get --app=$app --key=allow_email_registration)
|
||||
allow_free_url=$(ynh_app_setting_get --app=$app --key=allow_free_url)
|
||||
require_free_url_authentication=$(ynh_app_setting_get --app=$app --key=require_free_url_authentication)
|
||||
|
||||
#=================================================
|
||||
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
||||
|
|
Loading…
Reference in a new issue