From 79bde0a6980405dc52f21239e23702961dc16505 Mon Sep 17 00:00:00 2001 From: ljf Date: Sun, 11 Nov 2018 00:41:45 +0100 Subject: [PATCH 1/5] [enh] Remove me from maintainer --- manifest.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 40cc0c4..3a6d85b 100644 --- a/manifest.json +++ b/manifest.json @@ -11,9 +11,13 @@ "de": "OpenSondage ist ein Online-Dienst, der Ihnen bei der Absprache von Terminen oder der Entscheidungsfindung hilft." }, "maintainer": { - "name": "ljf", - "email": "ljf+yunohost@grimaud.me" + "name": "YunoHost Contributors", + "email": "apps@yunohost.org" }, + "previous_maintainers": [{ + "name": "ljf", + "email": "ljf+opensondage_ynh@grimaud.me" + }], "requirements": { "yunohost": ">= 2.7" }, From 4f3b5909877d048c975f357abfcb9a1eb6b11b77 Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Sun, 24 Mar 2019 16:46:32 +0100 Subject: [PATCH 2/5] Update pull_request_template.md --- pull_request_template.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pull_request_template.md b/pull_request_template.md index cac1ac7..ed358ef 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -19,7 +19,6 @@ - [ ] **Approval (LGTM)** : - [ ] **Approval (LGTM)** : - **CI succeeded** : -[![Build Status](https://ci-apps-dev.yunohost.org/jenkins/job/opensondage_ynh%20-BRANCH-%20(Official)/badge/icon)](https://ci-apps-dev.yunohost.org/jenkins/job/opensondage_ynh%20-BRANCH-%20(Official)/) *Please replace '-BRANCH-' in this link for a PR from a local branch.* -or -[![Build Status](https://ci-apps-dev.yunohost.org/jenkins/job/opensondage_ynh%20PR-NUM-%20(Official_fork)/badge/icon)](https://ci-apps-dev.yunohost.org/jenkins/job/opensondage_ynh%20PR-NUM-%20(Official_fork)/) *Replace '-NUM-' by the PR number in this link for a PR from a forked repository.* +[![Build Status](https://ci-apps-dev.yunohost.org/jenkins/job/opensondage_ynh%20PR-NUM-/badge/icon)](https://ci-apps-dev.yunohost.org/jenkins/job/opensondage_ynh%20PR-NUM-/) +*Please replace '-NUM-' in this link by the PR number.* When the PR is marked as ready to merge, you have to wait for 3 days before really merging it. From 3a00d2815bcfc680d1ee53716a5812e14654ca37 Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Mon, 15 Apr 2019 20:55:38 +0200 Subject: [PATCH 3/5] Move from ci-apps-dev to ci-apps-hq --- pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pull_request_template.md b/pull_request_template.md index ed358ef..28b67d1 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -19,6 +19,6 @@ - [ ] **Approval (LGTM)** : - [ ] **Approval (LGTM)** : - **CI succeeded** : -[![Build Status](https://ci-apps-dev.yunohost.org/jenkins/job/opensondage_ynh%20PR-NUM-/badge/icon)](https://ci-apps-dev.yunohost.org/jenkins/job/opensondage_ynh%20PR-NUM-/) +[![Build Status](https://ci-apps-hq.yunohost.org/jenkins/job/opensondage_ynh%20PR-NUM-/badge/icon)](https://ci-apps-hq.yunohost.org/jenkins/job/opensondage_ynh%20PR-NUM-/) *Please replace '-NUM-' in this link by the PR number.* When the PR is marked as ready to merge, you have to wait for 3 days before really merging it. From 14859141daa59388331e4dcc8ad9f3cd7aeeda83 Mon Sep 17 00:00:00 2001 From: pitchum Date: Fri, 26 Apr 2019 20:14:24 +0200 Subject: [PATCH 4/5] Add explicit dependency on php-xml. Fix #44 https://github.com/YunoHost-Apps/opensondage_ynh/issues/44 --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 0dee5b2..b22d2b3 100644 --- a/scripts/install +++ b/scripts/install @@ -60,7 +60,7 @@ ynh_app_setting_set "$app" is_public "$is_public" # INSTALL DEPENDENCIES #================================================= -ynh_install_app_dependencies php-fpdf +ynh_install_app_dependencies php-fpdf php-xml #================================================= # CREATE A MYSQL DATABASE From b19385fdba93f08e2dd0163ebebd557ba43d1aff Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Sun, 28 Apr 2019 00:01:10 +0200 Subject: [PATCH 5/5] Add explicit dependency on php-xml in restore script --- scripts/restore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/restore b/scripts/restore index 1d82ae8..917b0f2 100644 --- a/scripts/restore +++ b/scripts/restore @@ -96,7 +96,7 @@ ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < ./db.sql #================================================= # Dependences -ynh_install_app_dependencies php-fpdf +ynh_install_app_dependencies php-fpdf php-xml #================================================= # GENERIC FINALIZATION