1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tiddlywiki_ynh.git synced 2024-09-03 20:26:34 +02:00

Merge branch 'testing' into nodeJS

This commit is contained in:
ericgaspar 2021-03-27 18:47:06 +01:00
commit 83ec3c4470
No known key found for this signature in database
GPG key ID: 574F281483054D44
5 changed files with 16832 additions and 4 deletions

View file

@ -22,6 +22,11 @@ TiddlyWiki is a complete interactive wiki in JavaScript. It can be used as a sin
* [Official demo](https://tiddlywiki.com/) * [Official demo](https://tiddlywiki.com/)
## Documentation
* Official documentation: Link to the official documentation of this app
* YunoHost documentation: If specific documentation is needed, feel free to contribute.
#### Supported architectures #### Supported architectures
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/tiddlywiki%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/tiddlywiki/) * x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/tiddlywiki%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/tiddlywiki/)

View file

@ -22,6 +22,11 @@ TiddlyWiki est un wiki interactif complet en JavaScript. Il peut être utilisé
* [Démo officielle](https://tiddlywiki.com/) * [Démo officielle](https://tiddlywiki.com/)
## Documentation
* Documentation officielle : https://tiddlywiki.com/languages/fr-FR/index.html
* Documentation YunoHost : Si une documentation spécifique est nécessaire, n'hésitez pas à contribuer.
#### Architectures supportées #### Architectures supportées
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/tiddlywiki%40%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/tiddlywiki/) * x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/tiddlywiki%40%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/tiddlywiki/)

View file

@ -45,6 +45,16 @@
"fr": "Si cette case est cochée, TiddlyWiki sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin." "fr": "Si cette case est cochée, TiddlyWiki sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
}, },
"default": true "default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
} }
] ]
} }

View file

@ -85,9 +85,6 @@ if [ "$upgrade_type" == "UPGRADE_APP" ]
then then
ynh_print_info --message="Upgrading source files..." ynh_print_info --message="Upgrading source files..."
# Download, check integrity, uncompress and patch the source from app.src
#ynh_setup_source --dest_dir="$final_path"
pushd $final_path pushd $final_path
ynh_use_nodejs ynh_use_nodejs
npm update -g tiddlywiki npm update -g tiddlywiki
@ -123,7 +120,7 @@ ynh_add_systemd_config
#================================================= #=================================================
# Set permissions on app files # Set permissions on app files
chown -R $app: $final_path chown -R $app:$app $final_path
#================================================= #=================================================
# ADVERTISE SERVICE IN ADMIN PANEL # ADVERTISE SERVICE IN ADMIN PANEL

16811
sources/empty_fr.html Normal file

File diff suppressed because one or more lines are too long