mirror of
https://github.com/YunoHost-Apps/Cubiks-2048_ynh.git
synced 2024-09-03 18:25:55 +02:00
Small fixes
This commit is contained in:
parent
4e5fbf54c1
commit
e291cdeee3
5 changed files with 10 additions and 12 deletions
|
@ -1,11 +1,11 @@
|
||||||
# Cubiks 2048 for YunoHost
|
# Cubiks 2048 for YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/cubiks-2048)  
|
[](https://dash.yunohost.org/appci/app/cubiks-2048)  
|
||||||
[](https://install-app.yunohost.org/?app=cubiks-2048)
|
[](https://install-app.yunohost.org/?app=cubiks-2048)
|
||||||
|
|
||||||
*[Lire ce readme en français.](./README_fr.md)*
|
*[Lire ce readme en français.](./README_fr.md)*
|
||||||
|
|
||||||
> *This package allow you to install Cubiks-2048 quickly and simply on a YunoHost server.
|
> *This package allow you to install Cubiks 2048 quickly and simply on a YunoHost server.
|
||||||
If you don’t have YunoHost, please see [here](https://yunohost.org/#/install) to know how to install and enjoy it.*
|
If you don’t have YunoHost, please see [here](https://yunohost.org/#/install) to know how to install and enjoy it.*
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# Cubiks 2048 pour YunoHost
|
# Cubiks 2048 pour YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/cubiks-2048)  
|
[](https://dash.yunohost.org/appci/app/cubiks-2048)  
|
||||||
[](https://install-app.yunohost.org/?app=cubiks-2048)
|
[](https://install-app.yunohost.org/?app=cubiks-2048)
|
||||||
|
|
||||||
*[Read this readme in english.](./README.md)*
|
*[Read this readme in english.](./README.md)*
|
||||||
|
|
||||||
> *This package allow you to install Cubiks-2048 quickly and simply on a YunoHost server.
|
> *This package allow you to install Cubiks 2048 quickly and simply on a YunoHost server.
|
||||||
If you don’t have YunoHost, please see [here](https://yunohost.org/#/install) to know how to install and enjoy it.*
|
If you don’t have YunoHost, please see [here](https://yunohost.org/#/install) to know how to install and enjoy it.*
|
||||||
|
|
||||||
## Vue d’ensemble
|
## Vue d’ensemble
|
||||||
|
|
|
@ -6,12 +6,12 @@
|
||||||
"en": "2048 game clone in 3D",
|
"en": "2048 game clone in 3D",
|
||||||
"fr": "Clone du jeu 2048 en 3D"
|
"fr": "Clone du jeu 2048 en 3D"
|
||||||
},
|
},
|
||||||
"version": "1.0~ynh3",
|
"version": "1.0~ynh4",
|
||||||
"url": "https://github.com/Kshitij-Banerjee/Cubiks-2048/",
|
"url": "https://github.com/Kshitij-Banerjee/Cubiks-2048/",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
"name": "eric_G",
|
"name": "eric_G",
|
||||||
"email": "ericgaspar@free.fr"
|
"email": ""
|
||||||
},
|
},
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">= 4.0.0"
|
"yunohost": ">= 4.0.0"
|
||||||
|
|
|
@ -13,6 +13,4 @@
|
||||||
|
|
||||||
## Package_check results
|
## Package_check results
|
||||||
---
|
---
|
||||||
*If you have access to [App Continuous Integration for packagers](https://yunohost.org/#/packaging_apps_ci) you can provide a link to the package_check results like below, replacing '-NUM-' in this link by the PR number and USERNAME by your username on the ci-apps-dev. Or you provide a screenshot or a pastebin of the results*
|
* An automatic package_check will be launch at https://ci-apps-dev.yunohost.org/, when you add a specific comment to your Pull Request: "!testme", "!gogogadgetoci" or "By the power of systemd, I invoke The Great App CI to test this Pull Request!"*
|
||||||
|
|
||||||
[/badge/icon)](https://ci-apps-dev.yunohost.org/jenkins/job/cubiks-2048_ynh%20PR-NUM-%20(USERNAME)/)
|
|
||||||
|
|
|
@ -43,8 +43,8 @@ ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Storing installation settings..." --weight=2
|
ynh_script_progression --message="Storing installation settings..." --weight=2
|
||||||
|
|
||||||
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
||||||
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
||||||
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
|
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -82,7 +82,7 @@ chown -R root: $final_path
|
||||||
ynh_script_progression --message="Configuring SSOwat..." --weight=1
|
ynh_script_progression --message="Configuring SSOwat..." --weight=1
|
||||||
|
|
||||||
# Make app public if necessary or protect it
|
# Make app public if necessary or protect it
|
||||||
[ $is_public -eq 0 ] || ynh_permission_update --permission "main" --add "visitors"
|
[ $is_public -eq 0 ] || ynh_permission_update --permission="main" --add="visitors"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RELOAD NGINX
|
# RELOAD NGINX
|
||||||
|
|
Loading…
Add table
Reference in a new issue