From cb3e3673ecc0a55ec93c1eef6f96a8fa5d1a3f6a Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 11 Sep 2023 18:08:56 +0200 Subject: [PATCH 01/16] Fix php version for fpm --- manifest.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 39f7c09..e2d75d3 100644 --- a/manifest.toml +++ b/manifest.toml @@ -47,4 +47,14 @@ ram.runtime = "50M" main.url = "/" [resources.apt] - packages = "php8.0-fpm" \ No newline at end of file + packages_from_raw_bash = """ + if [[ "$php_version" == "7.4" ]]; then + echo "php7.4-fpm" + elif [[ "$php_version" == "8.0" ]]; then + echo "php8.0-fpm" + elif [[ "$php_version" == "8.1" ]]; then + echo "php8.1-fpm" + elif [[ "$php_version" == "8.2" ]]; then + echo "php8.2-fpm" + fi + """ From b5d3bc7904c109aa2a12a355cd66bc036a80b7b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sat, 11 Nov 2023 23:43:08 +0100 Subject: [PATCH 02/16] cleaning --- manifest.toml | 7 +++++-- tests.toml | 10 ++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/manifest.toml b/manifest.toml index e2d75d3..fc8359b 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,18 +7,21 @@ description.fr = "Simple phpinfo" version = "1.0~ynh4" -maintainers = ["Maniack Crudelis"] +maintainers = [""] [upstream] license = "GPL-3.0-or-later" website = "https://www.php.net/manual/fr/function.phpinfo.php" [integration] -yunohost = ">= 11.1.21" +yunohost = ">= 11.2" architectures = "all" multi_instance = true + ldap = false + sso = false + disk = "50M" ram.build = "50M" ram.runtime = "50M" diff --git a/tests.toml b/tests.toml index e31077c..e673017 100644 --- a/tests.toml +++ b/tests.toml @@ -11,3 +11,13 @@ test_format = 1.0 # ------------------------------- # Default args to use for install # ------------------------------- + + [80_test] + + only = ["install.subdir", "backup_restore", "upgrade" ] + args.phpversion = "8.0" + + [82_test] + + only = ["install.subdir", "backup_restore", "upgrade" ] + args.phpversion = "8.2" From cf9d3b82454517f002c799ecc5d50602705e6053 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 12 Nov 2023 09:04:43 +0100 Subject: [PATCH 03/16] cleaning --- manifest.toml | 4 ++++ scripts/install | 2 +- scripts/upgrade | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/manifest.toml b/manifest.toml index fc8359b..f7ee15e 100644 --- a/manifest.toml +++ b/manifest.toml @@ -34,6 +34,10 @@ ram.runtime = "50M" type = "path" default = "/phpinfo" + [install.init_main_permission] + type = "group" + default = "visitors" + [install.phpversion] ask.en = "Choose the version of PHP to use." ask.fr = "Choisissez la version de PHP à utiliser." diff --git a/scripts/install b/scripts/install index 1c78ff1..73101fd 100755 --- a/scripts/install +++ b/scripts/install @@ -28,7 +28,7 @@ chown -R $app:www-data "$install_dir" ynh_script_progression --message="Configuring PHP-FPM..." # Create a dedicated PHP-FPM config -ynh_add_fpm_config --usage=low --footprint=low +ynh_add_fpm_config #================================================= # NGINX CONFIGURATION diff --git a/scripts/upgrade b/scripts/upgrade index fbdedec..e717174 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -36,7 +36,7 @@ chown -R $app:www-data "$install_dir" ynh_script_progression --message="Upgrading PHP-FPM configuration..." # Create a dedicated PHP-FPM config -ynh_add_fpm_config --usage=low --footprint=low +ynh_add_fpm_config #================================================= # NGINX CONFIGURATION From bd4a204d53e6e7c861bed847440bdcde06aab17f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 12 Nov 2023 09:05:38 +0100 Subject: [PATCH 04/16] Update tests.toml --- tests.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests.toml b/tests.toml index e673017..5d67cb1 100644 --- a/tests.toml +++ b/tests.toml @@ -12,10 +12,11 @@ test_format = 1.0 # Default args to use for install # ------------------------------- - [80_test] + args.phpversion = "7.4" - only = ["install.subdir", "backup_restore", "upgrade" ] - args.phpversion = "8.0" + # ------------------------------- + # Commits to test upgrade from + # ------------------------------- [82_test] From 1fe8742d102e247b3e6d79d8abb871fa9ef214a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 12 Nov 2023 09:05:55 +0100 Subject: [PATCH 05/16] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index f7ee15e..5de3157 100644 --- a/manifest.toml +++ b/manifest.toml @@ -43,7 +43,7 @@ ram.runtime = "50M" ask.fr = "Choisissez la version de PHP à utiliser." type = "string" choices = ["7.4", "8.0", "8.1", "8.2"] - default = "8.0" + default = "8.2" [resources] [resources.system_user] From 0a6f9dd842a191aa3423fcc08bac2209db7d2798 Mon Sep 17 00:00:00 2001 From: eric_G <46165813+ericgaspar@users.noreply.github.com> Date: Tue, 4 Jun 2024 23:06:41 +0200 Subject: [PATCH 06/16] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index e4cbfb2..c1860ab 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,7 +7,7 @@ description.fr = "Simple phpinfo" version = "1.0~ynh5" -maintainers = [""] +maintainers = [] [upstream] license = "GPL-3.0-or-later" From 3c697d107293c3b349355e41b22461efc4697143 Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 26 Aug 2024 10:19:50 -0500 Subject: [PATCH 07/16] Update manifest.toml Add PHP8.3 as choice for PHP version --- manifest.toml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/manifest.toml b/manifest.toml index c1860ab..01a06a1 100644 --- a/manifest.toml +++ b/manifest.toml @@ -42,7 +42,7 @@ ram.runtime = "50M" ask.en = "Choose the version of PHP to use." ask.fr = "Choisissez la version de PHP à utiliser." type = "select" - choices = ["7.4", "8.0", "8.1", "8.2"] + choices = ["7.4", "8.0", "8.1", "8.2", "8.3"] default = "8.2" [resources] @@ -54,15 +54,7 @@ ram.runtime = "50M" main.url = "/" [resources.apt] - packages = "" + packages = "nginx" # Kind of "dummy" value to be sure to have a non-empty dep list packages_from_raw_bash = """ - if [[ "$php_version" == "7.4" ]]; then - echo "php7.4-fpm" - elif [[ "$php_version" == "8.0" ]]; then - echo "php8.0-fpm" - elif [[ "$php_version" == "8.1" ]]; then - echo "php8.1-fpm" - elif [[ "$php_version" == "8.2" ]]; then - echo "php8.2-fpm" - fi - """ + echo "php${phpversion}-fpm" + """ From 15e285ef66276ad2903a19c8e0a6edf043e41227 Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 26 Aug 2024 10:23:04 -0500 Subject: [PATCH 08/16] Update install Explicitly define PHP version when adding fpm config --- scripts/install | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 447784c..25ff04e 100755 --- a/scripts/install +++ b/scripts/install @@ -27,8 +27,16 @@ chown -R $app:www-data "$install_dir" #================================================= ynh_script_progression --message="Configuring PHP-FPM..." +fpm_footprint="low" +fpm_free_footprint=0 +fpm_usage="low" + +ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint +ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint +ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage + # Create a dedicated PHP-FPM config -ynh_add_fpm_config +ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --phpversion=$phpversion # Create a dedicated NGINX config ynh_add_nginx_config From 1a485c978387a88e25337534547d2c5e753c0863 Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 26 Aug 2024 10:25:08 -0500 Subject: [PATCH 09/16] Update upgrade Explicitly define PHP version when adding fpm config --- scripts/upgrade | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index dac6b85..45ad50e 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -15,6 +15,29 @@ source /usr/share/yunohost/helpers upgrade_type=$(ynh_check_app_version_changed) +#================================================= +# ENSURE DOWNWARD COMPATIBILITY +#================================================= +ynh_script_progression --message="Ensuring downward compatibility..." + +# If fpm_footprint doesn't exist, create it +if [ -z "${fpm_footprint:-}" ]; then + fpm_footprint=low + ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint +fi + +# If fpm_free_footprint doesn't exist, create it +if [ -z "${fpm_free_footprint:-}" ]; then + fpm_free_footprint=0 + ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint +fi + +# If fpm_usage doesn't exist, create it +if [ -z "${fpm_usage:-}" ]; then + fpm_usage=low + ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage +fi + #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= @@ -36,7 +59,7 @@ chown -R $app:www-data "$install_dir" ynh_script_progression --message="Upgrading PHP-FPM configuration..." # Create a dedicated PHP-FPM config -ynh_add_fpm_config +ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --phpversion=$phpversion # Create a dedicated NGINX config ynh_add_nginx_config From f700cafed6067f6f20c010b94e3775cd1f0ce271 Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 26 Aug 2024 11:06:51 -0500 Subject: [PATCH 10/16] Update tests.toml Add tests for all PHP versions --- tests.toml | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/tests.toml b/tests.toml index 5d67cb1..7021b53 100644 --- a/tests.toml +++ b/tests.toml @@ -6,19 +6,35 @@ test_format = 1.0 # Tests to run # ------------ - exclude = ["install.private", "change_url"] + exclude = ["change_url"] # ------------------------------- # Default args to use for install # ------------------------------- - args.phpversion = "7.4" + args.phpversion = "8.3" # ------------------------------- # Commits to test upgrade from # ------------------------------- - [82_test] +[74_test] + + only = ["install.subdir", "backup_restore", "upgrade" ] + args.phpversion = "7.4" + +[80_test] + + only = ["install.subdir", "backup_restore", "upgrade" ] + args.phpversion = "8.0" + +[81_test] + + only = ["install.subdir", "backup_restore", "upgrade" ] + args.phpversion = "8.1" + + +[82_test] only = ["install.subdir", "backup_restore", "upgrade" ] args.phpversion = "8.2" From dca7738b048ba02dab158312ef6ef408ec0a530f Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 26 Aug 2024 11:07:26 -0500 Subject: [PATCH 11/16] Update manifest.toml Change default PHP version to 8.3 --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 01a06a1..493be78 100644 --- a/manifest.toml +++ b/manifest.toml @@ -43,7 +43,7 @@ ram.runtime = "50M" ask.fr = "Choisissez la version de PHP à utiliser." type = "select" choices = ["7.4", "8.0", "8.1", "8.2", "8.3"] - default = "8.2" + default = "8.3" [resources] [resources.system_user] From 684c480dcd27cf96eff7699f6397ed3067be6fde Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 26 Aug 2024 19:22:07 -0500 Subject: [PATCH 12/16] Update install Remove FPM footprint and usage --- scripts/install | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/install b/scripts/install index 25ff04e..2f77605 100755 --- a/scripts/install +++ b/scripts/install @@ -27,16 +27,9 @@ chown -R $app:www-data "$install_dir" #================================================= ynh_script_progression --message="Configuring PHP-FPM..." -fpm_footprint="low" -fpm_free_footprint=0 -fpm_usage="low" - -ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint -ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint -ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage # Create a dedicated PHP-FPM config -ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --phpversion=$phpversion +ynh_add_fpm_config --phpversion=$phpversion # Create a dedicated NGINX config ynh_add_nginx_config From 0deb3b264e5eb26b711f5deb78ba00372d6e300a Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Mon, 26 Aug 2024 19:22:54 -0500 Subject: [PATCH 13/16] Update upgrade Remove FPM footprint and usage --- scripts/upgrade | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 45ad50e..26a440f 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -15,29 +15,6 @@ source /usr/share/yunohost/helpers upgrade_type=$(ynh_check_app_version_changed) -#================================================= -# ENSURE DOWNWARD COMPATIBILITY -#================================================= -ynh_script_progression --message="Ensuring downward compatibility..." - -# If fpm_footprint doesn't exist, create it -if [ -z "${fpm_footprint:-}" ]; then - fpm_footprint=low - ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint -fi - -# If fpm_free_footprint doesn't exist, create it -if [ -z "${fpm_free_footprint:-}" ]; then - fpm_free_footprint=0 - ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint -fi - -# If fpm_usage doesn't exist, create it -if [ -z "${fpm_usage:-}" ]; then - fpm_usage=low - ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage -fi - #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= @@ -59,7 +36,7 @@ chown -R $app:www-data "$install_dir" ynh_script_progression --message="Upgrading PHP-FPM configuration..." # Create a dedicated PHP-FPM config -ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --phpversion=$phpversion +ynh_add_fpm_config --phpversion=$phpversion # Create a dedicated NGINX config ynh_add_nginx_config From a1a800042b59a518602aae3e0440b9e9a6b4b68e Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 27 Aug 2024 06:47:55 +0000 Subject: [PATCH 14/16] Auto-update READMEs --- ALL_README.md | 2 ++ README.md | 2 +- README_es.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_id.md | 40 ++++++++++++++++++++++++++++++++++++++++ README_ru.md | 40 ++++++++++++++++++++++++++++++++++++++++ README_zh_Hans.md | 2 +- 9 files changed, 88 insertions(+), 6 deletions(-) create mode 100644 README_id.md create mode 100644 README_ru.md diff --git a/ALL_README.md b/ALL_README.md index 152f2e7..e3c80d2 100644 --- a/ALL_README.md +++ b/ALL_README.md @@ -5,4 +5,6 @@ - [Irakurri README euskaraz](README_eu.md) - [Lire le README en français](README_fr.md) - [Le o README en galego](README_gl.md) +- [Baca README dalam bahasa bahasa Indonesia](README_id.md) +- [Прочитать README на русский](README_ru.md) - [阅读中文(简体)的 README](README_zh_Hans.md) diff --git a/README.md b/README.md index 080d5b0..ab22d26 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ It shall NOT be edited by hand. # Phpinfo for YunoHost -[![Integration level](https://dash.yunohost.org/integration/phpinfo.svg)](https://dash.yunohost.org/appci/app/phpinfo) ![Working status](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) +[![Integration level](https://dash.yunohost.org/integration/phpinfo.svg)](https://ci-apps.yunohost.org/ci/apps/phpinfo/) ![Working status](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) [![Install Phpinfo with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=phpinfo) diff --git a/README_es.md b/README_es.md index 90b1002..6dd28c0 100644 --- a/README_es.md +++ b/README_es.md @@ -5,7 +5,7 @@ No se debe editar a mano. # Phpinfo para Yunohost -[![Nivel de integración](https://dash.yunohost.org/integration/phpinfo.svg)](https://dash.yunohost.org/appci/app/phpinfo) ![Estado funcional](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Estado En Mantención](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) +[![Nivel de integración](https://dash.yunohost.org/integration/phpinfo.svg)](https://ci-apps.yunohost.org/ci/apps/phpinfo/) ![Estado funcional](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Estado En Mantención](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) [![Instalar Phpinfo con Yunhost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=phpinfo) diff --git a/README_eu.md b/README_eu.md index 9ca4956..04ed3e7 100644 --- a/README_eu.md +++ b/README_eu.md @@ -5,7 +5,7 @@ EZ editatu eskuz. # Phpinfo YunoHost-erako -[![Integrazio maila](https://dash.yunohost.org/integration/phpinfo.svg)](https://dash.yunohost.org/appci/app/phpinfo) ![Funtzionamendu egoera](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Mantentze egoera](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) +[![Integrazio maila](https://dash.yunohost.org/integration/phpinfo.svg)](https://ci-apps.yunohost.org/ci/apps/phpinfo/) ![Funtzionamendu egoera](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Mantentze egoera](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) [![Instalatu Phpinfo YunoHost-ekin](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=phpinfo) diff --git a/README_fr.md b/README_fr.md index a002bf9..a419c83 100644 --- a/README_fr.md +++ b/README_fr.md @@ -5,7 +5,7 @@ Il NE doit PAS être modifié à la main. # Phpinfo pour YunoHost -[![Niveau d’intégration](https://dash.yunohost.org/integration/phpinfo.svg)](https://dash.yunohost.org/appci/app/phpinfo) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) +[![Niveau d’intégration](https://dash.yunohost.org/integration/phpinfo.svg)](https://ci-apps.yunohost.org/ci/apps/phpinfo/) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) [![Installer Phpinfo avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=phpinfo) diff --git a/README_gl.md b/README_gl.md index 6bb8b83..48525b8 100644 --- a/README_gl.md +++ b/README_gl.md @@ -5,7 +5,7 @@ NON debe editarse manualmente. # Phpinfo para YunoHost -[![Nivel de integración](https://dash.yunohost.org/integration/phpinfo.svg)](https://dash.yunohost.org/appci/app/phpinfo) ![Estado de funcionamento](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Estado de mantemento](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) +[![Nivel de integración](https://dash.yunohost.org/integration/phpinfo.svg)](https://ci-apps.yunohost.org/ci/apps/phpinfo/) ![Estado de funcionamento](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Estado de mantemento](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) [![Instalar Phpinfo con YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=phpinfo) diff --git a/README_id.md b/README_id.md new file mode 100644 index 0000000..10757e5 --- /dev/null +++ b/README_id.md @@ -0,0 +1,40 @@ + + +# Phpinfo untuk YunoHost + +[![Tingkat integrasi](https://dash.yunohost.org/integration/phpinfo.svg)](https://ci-apps.yunohost.org/ci/apps/phpinfo/) ![Status kerja](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Status pemeliharaan](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) + +[![Pasang Phpinfo dengan YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=phpinfo) + +*[Baca README ini dengan bahasa yang lain.](./ALL_README.md)* + +> *Paket ini memperbolehkan Anda untuk memasang Phpinfo secara cepat dan mudah pada server YunoHost.* +> *Bila Anda tidak mempunyai YunoHost, silakan berkonsultasi dengan [panduan](https://yunohost.org/install) untuk mempelajari bagaimana untuk memasangnya.* + +## Ringkasan + +Simple phpinfo + +**Versi terkirim:** 1.0~ynh5 +## Dokumentasi dan sumber daya + +- Website aplikasi resmi: +- Gudang YunoHost: +- Laporkan bug: + +## Info developer + +Silakan kirim pull request ke [`testing` branch](https://github.com/YunoHost-Apps/phpinfo_ynh/tree/testing). + +Untuk mencoba branch `testing`, silakan dilanjutkan seperti: + +```bash +sudo yunohost app install https://github.com/YunoHost-Apps/phpinfo_ynh/tree/testing --debug +atau +sudo yunohost app upgrade phpinfo -u https://github.com/YunoHost-Apps/phpinfo_ynh/tree/testing --debug +``` + +**Info lebih lanjut mengenai pemaketan aplikasi:** diff --git a/README_ru.md b/README_ru.md new file mode 100644 index 0000000..fb719b9 --- /dev/null +++ b/README_ru.md @@ -0,0 +1,40 @@ + + +# Phpinfo для YunoHost + +[![Уровень интеграции](https://dash.yunohost.org/integration/phpinfo.svg)](https://ci-apps.yunohost.org/ci/apps/phpinfo/) ![Состояние работы](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![Состояние сопровождения](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) + +[![Установите Phpinfo с YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=phpinfo) + +*[Прочтите этот README на других языках.](./ALL_README.md)* + +> *Этот пакет позволяет Вам установить Phpinfo быстро и просто на YunoHost-сервер.* +> *Если у Вас нет YunoHost, пожалуйста, посмотрите [инструкцию](https://yunohost.org/install), чтобы узнать, как установить его.* + +## Обзор + +Simple phpinfo + +**Поставляемая версия:** 1.0~ynh5 +## Документация и ресурсы + +- Официальный веб-сайт приложения: +- Магазин YunoHost: +- Сообщите об ошибке: + +## Информация для разработчиков + +Пришлите Ваш запрос на слияние в [ветку `testing`](https://github.com/YunoHost-Apps/phpinfo_ynh/tree/testing). + +Чтобы попробовать ветку `testing`, пожалуйста, сделайте что-то вроде этого: + +```bash +sudo yunohost app install https://github.com/YunoHost-Apps/phpinfo_ynh/tree/testing --debug +или +sudo yunohost app upgrade phpinfo -u https://github.com/YunoHost-Apps/phpinfo_ynh/tree/testing --debug +``` + +**Больше информации о пакетировании приложений:** diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 696d9d6..40548f4 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -5,7 +5,7 @@ # YunoHost 上的 Phpinfo -[![集成程度](https://dash.yunohost.org/integration/phpinfo.svg)](https://dash.yunohost.org/appci/app/phpinfo) ![工作状态](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![维护状态](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) +[![集成程度](https://dash.yunohost.org/integration/phpinfo.svg)](https://ci-apps.yunohost.org/ci/apps/phpinfo/) ![工作状态](https://ci-apps.yunohost.org/ci/badges/phpinfo.status.svg) ![维护状态](https://ci-apps.yunohost.org/ci/badges/phpinfo.maintain.svg) [![使用 YunoHost 安装 Phpinfo](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=phpinfo) From dc371d3e95f122e9d28c0fb7a7cf48aecf17cb7b Mon Sep 17 00:00:00 2001 From: eric_G <46165813+ericgaspar@users.noreply.github.com> Date: Tue, 27 Aug 2024 08:48:27 +0200 Subject: [PATCH 15/16] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 493be78..345f0d3 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Phpinfo" description.en = "Simple phpinfo" description.fr = "Simple phpinfo" -version = "1.0~ynh5" +version = "1.0~ynh6" maintainers = [] From ff50c4dda2ff41cad1d909cbbc21f8e0d1a73676 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 27 Aug 2024 06:48:30 +0000 Subject: [PATCH 16/16] Auto-update READMEs --- README.md | 2 +- README_es.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_id.md | 2 +- README_ru.md | 2 +- README_zh_Hans.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index ab22d26..f052dcf 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ It shall NOT be edited by hand. Simple phpinfo -**Shipped version:** 1.0~ynh5 +**Shipped version:** 1.0~ynh6 ## Documentation and resources - Official app website: diff --git a/README_es.md b/README_es.md index 6dd28c0..46d96cd 100644 --- a/README_es.md +++ b/README_es.md @@ -18,7 +18,7 @@ No se debe editar a mano. Simple phpinfo -**Versión actual:** 1.0~ynh5 +**Versión actual:** 1.0~ynh6 ## Documentaciones y recursos - Sitio web oficial: diff --git a/README_eu.md b/README_eu.md index 04ed3e7..b389b3d 100644 --- a/README_eu.md +++ b/README_eu.md @@ -18,7 +18,7 @@ EZ editatu eskuz. Simple phpinfo -**Paketatutako bertsioa:** 1.0~ynh5 +**Paketatutako bertsioa:** 1.0~ynh6 ## Dokumentazioa eta baliabideak - Aplikazioaren webgune ofiziala: diff --git a/README_fr.md b/README_fr.md index a419c83..f8501d1 100644 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,7 @@ Il NE doit PAS être modifié à la main. Simple phpinfo -**Version incluse :** 1.0~ynh5 +**Version incluse :** 1.0~ynh6 ## Documentations et ressources - Site officiel de l’app : diff --git a/README_gl.md b/README_gl.md index 48525b8..ec544ac 100644 --- a/README_gl.md +++ b/README_gl.md @@ -18,7 +18,7 @@ NON debe editarse manualmente. Simple phpinfo -**Versión proporcionada:** 1.0~ynh5 +**Versión proporcionada:** 1.0~ynh6 ## Documentación e recursos - Web oficial da app: diff --git a/README_id.md b/README_id.md index 10757e5..fe9c1bb 100644 --- a/README_id.md +++ b/README_id.md @@ -18,7 +18,7 @@ Ini TIDAK boleh diedit dengan tangan. Simple phpinfo -**Versi terkirim:** 1.0~ynh5 +**Versi terkirim:** 1.0~ynh6 ## Dokumentasi dan sumber daya - Website aplikasi resmi: diff --git a/README_ru.md b/README_ru.md index fb719b9..41207bc 100644 --- a/README_ru.md +++ b/README_ru.md @@ -18,7 +18,7 @@ Simple phpinfo -**Поставляемая версия:** 1.0~ynh5 +**Поставляемая версия:** 1.0~ynh6 ## Документация и ресурсы - Официальный веб-сайт приложения: diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 40548f4..5ac4cc5 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -18,7 +18,7 @@ Simple phpinfo -**分发版本:** 1.0~ynh5 +**分发版本:** 1.0~ynh6 ## 文档与资源 - 官方应用网站: