diff --git a/README.md b/README.md index b268940..16a41f1 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,12 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in [Scovie](https://github.com/eldertek/scovie) is an open-source digital signage system for high schools, built using Python and Django. It provides an easy-to-use interface for administrators to upload and manage multimedia content, which is then displayed on screens throughout the school. -**Shipped version:** 0.0.6~ynh1 +**Shipped version:** 0.0.6~ynh2 + +## Screenshots + +![Screenshot of Scovie](./doc/screenshots/all.png) + ## Disclaimers / important information ## Links diff --git a/README_fr.md b/README_fr.md index cd6db8d..e0ee248 100644 --- a/README_fr.md +++ b/README_fr.md @@ -19,7 +19,12 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po [Scovie](https://github.com/eldertek/scovie) is an open-source digital signage system for high schools, built using Python and Django. It provides an easy-to-use interface for administrators to upload and manage multimedia content, which is then displayed on screens throughout the school. -**Version incluse :** 0.0.6~ynh1 +**Version incluse :** 0.0.6~ynh2 + +## Captures d’écran + +![Capture d’écran de Scovie](./doc/screenshots/all.png) + ## Avertissements / informations importantes ## Links diff --git a/doc/screenshots/all.png b/doc/screenshots/all.png new file mode 100644 index 0000000..2485ce9 Binary files /dev/null and b/doc/screenshots/all.png differ diff --git a/manifest.json b/manifest.json index 3c4c7a2..975d93d 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Digital signage system for high schools", "fr": "Affichage dynamique open-source pour les lycées" }, - "version": "0.0.6~ynh1", + "version": "0.0.6~ynh2", "url": "https://github.com/eldertek/scovie", "upstream": { "license": "GPL-3.0", diff --git a/scripts/install b/scripts/install index dcbb6fa..5bc75f7 100644 --- a/scripts/install +++ b/scripts/install @@ -20,10 +20,10 @@ ynh_abort_if_errors ynh_script_progression --message="Validating installation parameters..." # Path for e.g. "static" files, served by nginx: -# test ! -e "$public_path" || ynh_die --message="This path already contains a folder" +test ! -e "$public_path" || ynh_die --message="This path already contains a folder" # Path for own config files, e.g.: Django's settings.py: -# test ! -e "$final_path" || ynh_die --message="This path already contains a folder" +test ! -e "$final_path" || ynh_die --message="This path already contains a folder" # Register (book) web path ynh_webpath_register --app="$app" --domain="$domain" --path_url="$path_url"