1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mytinytodo_ynh.git synced 2024-09-03 19:46:01 +02:00

Upgrade to version 1.6.4 (#14)

This commit is contained in:
Éric Gaspar 2021-04-25 08:54:46 +02:00 committed by GitHub
parent 750b9e75c9
commit b598d72359
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 19 deletions

View file

@ -11,7 +11,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
## Overview ## Overview
Simple way to manage your todo list in AJAX style. Written in PHP and jQuery. Data stored in MySQL database. Simple way to manage your todo list in AJAX style. Written in PHP and jQuery. Data stored in MySQL database.
**Shipped version:** 1.6.3 **Shipped version:** 1.6.4
## Screenshots ## Screenshots
@ -39,8 +39,8 @@ Simple way to manage your todo list in AJAX style. Written in PHP and jQuery. Da
#### Supported architectures #### Supported architectures
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mytinytodo%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/mytinytodo/) * x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mytinytodo.svg)](https://ci-apps.yunohost.org/ci/apps/mytinytodo/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/mytinytodo%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mytinytodo/) * ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/mytinytodo.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mytinytodo/)
## Limitations ## Limitations

View file

@ -11,7 +11,7 @@ Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/#/install
## Vue d'ensemble ## Vue d'ensemble
Un moyen simple de gérer votre liste de tâches dans le style AJAX. Écrit en PHP et jQuery. Données stockées dans la base de données MySQL. Un moyen simple de gérer votre liste de tâches dans le style AJAX. Écrit en PHP et jQuery. Données stockées dans la base de données MySQL.
**Version incluse :** 1.6.3 **Version incluse :** 1.6.4
## Captures d'écran ## Captures d'écran
@ -39,8 +39,8 @@ Comment configurer cette application : via le panneau d'administration.
#### Architectures supportées #### Architectures supportées
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mytinytodo%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/mytinytodo/) * x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mytinytodo.svg)](https://ci-apps.yunohost.org/ci/apps/mytinytodo/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/mytinytodo%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mytinytodo/) * ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/mytinytodo.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mytinytodo/)
## Limitations ## Limitations

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://www.mytinytodo.net/latest.php SOURCE_URL=https://github.com/maxpozdeev/mytinytodo/releases/download/v1.6.4/mytinytodo-v1.6.4.zip
SOURCE_SUM=8bb32d48c96091403bfc9a54f574f92c87e018544ddb4c526b45a5d1a67a9831 SOURCE_SUM=10e9a696bf2d05852393866c255ecf00f16e704783bd85763a65d820861eacc3
SOURCE_SUM_PRG=sha256sum SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=zip SOURCE_FORMAT=zip
SOURCE_IN_SUBDIR=true SOURCE_IN_SUBDIR=true

View file

@ -8,7 +8,7 @@
}, },
"url": "http://www.mytinytodo.net/", "url": "http://www.mytinytodo.net/",
"license": "GPL-2.0", "license": "GPL-2.0",
"version": "1.6.3~ynh2", "version": "1.6.4~ynh1",
"maintainer": { "maintainer": {
"name": "plabuse", "name": "plabuse",
"email": "pierre.levasseur@free.fr" "email": "pierre.levasseur@free.fr"

View file

@ -99,16 +99,6 @@ phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
# MODIFY A CONFIG FILE # MODIFY A CONFIG FILE
#================================================= #=================================================
# # verifier la valeur de $final_path pour moi il y a /var/www/mytinytodo
# # la nom de la base et l'utilisateur de la base on la même valeur
# # mise en place de la config de la base au niveau de myTinyTodo
# cp ../conf/config.php $final_path/db/config.php
# ynh_replace_string --match_string="__LANGUAGE__" --replace_string="$language" --target_file="$final_path/db/config.php"
# ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/db/config.php"
# ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$final_path/db/config.php"
ynh_add_config --template="../conf/config.php" --destination="$final_path/db/config.php" ynh_add_config --template="../conf/config.php" --destination="$final_path/db/config.php"
ynh_secure_remove --file="$final_path/setup.php" ynh_secure_remove --file="$final_path/setup.php"