From 2249f40aa278bb60a76681c415642752e4d4180a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Benoist?= Date: Mon, 14 Dec 2020 11:19:43 +0100 Subject: [PATCH 1/4] Update issue templates Define new issue templates following new structure for them. Also add a new template related to site config. --- .github/ISSUE_TEMPLATE/bug_report.md | 32 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++ .github/ISSUE_TEMPLATE/fetching-content.md | 24 ++++++++++++++++ .github/ISSUE_TEMPLATE/fetching-issue.md | 11 ++++++++ 4 files changed, 87 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/fetching-content.md create mode 100644 .github/ISSUE_TEMPLATE/fetching-issue.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..c766dcc8e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +### Issue details + +Please provide issue details here. +Remember, this is _not_ a place to ask questions. For that, go to our chat at http://gitter.im/wallabag/wallabag or https://matrix.to/#/#wallabag_wallabag:gitter.im. + +### Environment + +* wallabag version (or git revision) that exhibits the issue: +* How did you install wallabag? Via `git clone` or by downloading the package? +* Last wallabag version that did not exhibit the issue (if applicable): +* php version: +* OS: +* type of hosting (shared or dedicated): +* which storage system you choose at install (SQLite, MySQL/MariaDB or PostgreSQL): +*
+ Paste your `app/config/parameters.yml` below + PASTE HERE +
+ +### Steps to reproduce/test case + +Please provide necessary steps for reproduction of this issue, or better the +reduced test case (without any external dependencies, if possible). diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..e74cb57fa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: Feature +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/fetching-content.md b/.github/ISSUE_TEMPLATE/fetching-content.md new file mode 100644 index 000000000..72e9124fa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/fetching-content.md @@ -0,0 +1,24 @@ +--- +name: Fetching content +about: If wallabag can't extract content for an URL +title: Wrong display in wallabag (HOST) +labels: Site Config +assignees: '' + +--- + +**Before submitting the issue, please read:** +If wallabag can't parse / extract content for a given link, please first read the documentation about it: +http://doc.wallabag.org/en/user/errors_during_fetching.html#how-can-i-help-to-fix-that + +We have a lot of request about fetching config issue. It'll help us a lot if you give a try to fix it on your own following the doc. +If you failed to fix it yourself, tick the following box: +- [ ] I've tried myself without success +- [ ] I've replaced `HOST` in the issue title with the host of the URL that can't be fetched (ie: `nytimes.com`, `20minutes.fr`, `bbc.com`, etc.) + +**Content related:** + - URL: [full url of the content] + - wallabag version: [e.g. 2.4.0] + +**Describe what's wrong:** +A clear and concise description of what you expected to happen. diff --git a/.github/ISSUE_TEMPLATE/fetching-issue.md b/.github/ISSUE_TEMPLATE/fetching-issue.md new file mode 100644 index 000000000..d9847f80e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/fetching-issue.md @@ -0,0 +1,11 @@ +--- +name: Fetching issue +about: If wallabag can't extract content for a content +title: '' +labels: Site Config +assignees: '' + +--- + +If wallabag can't parse / extract content for a given link, please first read the documentation about it: +http://doc.wallabag.org/en/user/errors_during_fetching.html#how-can-i-help-to-fix-that From 5e5cb502f41a697d4e540a9dd9b5198b43f59197 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 14 Dec 2020 11:20:33 +0100 Subject: [PATCH 2/4] Remove old template --- .github/ISSUE_TEMPLATE.md | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index ca81f8949..000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,21 +0,0 @@ -:warning: If your issue is about an error during fetching a link, please read: http://doc.wallabag.org/en/user/errors_during_fetching.html#how-can-i-help-to-fix-that - -### Issue details - -Please provide issue details here. -Remember, this is _not_ a place to ask questions. For that, go to our chat at http://gitter.im/wallabag/wallabag or https://matrix.to/#/#wallabag_wallabag:gitter.im. - -### Environment - -* wallabag version (or git revision) that exhibits the issue: -* How did you install wallabag? Via `git clone` or by downloading the package? -* Last wallabag version that did not exhibit the issue (if applicable): -* php version: -* OS: -* type of hosting (shared or dedicated): -* which storage system you choose at install (SQLite, MySQL/MariaDB or PostgreSQL): - -### Steps to reproduce/test case - -Please provide necessary steps for reproduction of this issue, or better the -reduced test case (without any external dependencies, if possible). From 03b531c360447ed98af897421b2e70b42e28ea78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Benoist?= Date: Mon, 14 Dec 2020 11:22:22 +0100 Subject: [PATCH 3/4] Delete fetching-issue.md --- .github/ISSUE_TEMPLATE/fetching-issue.md | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/fetching-issue.md diff --git a/.github/ISSUE_TEMPLATE/fetching-issue.md b/.github/ISSUE_TEMPLATE/fetching-issue.md deleted file mode 100644 index d9847f80e..000000000 --- a/.github/ISSUE_TEMPLATE/fetching-issue.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Fetching issue -about: If wallabag can't extract content for a content -title: '' -labels: Site Config -assignees: '' - ---- - -If wallabag can't parse / extract content for a given link, please first read the documentation about it: -http://doc.wallabag.org/en/user/errors_during_fetching.html#how-can-i-help-to-fix-that From 415da16e77f86bdc7341899c87614cb1efe58f26 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 14 Dec 2020 11:43:27 +0100 Subject: [PATCH 4/4] Enhancement and config --- ...ching-content.md => 1-fetching-content.md} | 10 ++++- .github/ISSUE_TEMPLATE/2-bug-report.md | 38 +++++++++++++++++++ ...eature_request.md => 3-feature-request.md} | 6 +++ .github/ISSUE_TEMPLATE/bug_report.md | 32 ---------------- .github/ISSUE_TEMPLATE/config.yml | 5 +++ 5 files changed, 57 insertions(+), 34 deletions(-) rename .github/ISSUE_TEMPLATE/{fetching-content.md => 1-fetching-content.md} (71%) create mode 100644 .github/ISSUE_TEMPLATE/2-bug-report.md rename .github/ISSUE_TEMPLATE/{feature_request.md => 3-feature-request.md} (82%) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/fetching-content.md b/.github/ISSUE_TEMPLATE/1-fetching-content.md similarity index 71% rename from .github/ISSUE_TEMPLATE/fetching-content.md rename to .github/ISSUE_TEMPLATE/1-fetching-content.md index 72e9124fa..a3ba9758c 100644 --- a/.github/ISSUE_TEMPLATE/fetching-content.md +++ b/.github/ISSUE_TEMPLATE/1-fetching-content.md @@ -7,12 +7,18 @@ assignees: '' --- + + **Before submitting the issue, please read:** If wallabag can't parse / extract content for a given link, please first read the documentation about it: http://doc.wallabag.org/en/user/errors_during_fetching.html#how-can-i-help-to-fix-that -We have a lot of request about fetching config issue. It'll help us a lot if you give a try to fix it on your own following the doc. -If you failed to fix it yourself, tick the following box: +We have a lot of requests about fetching config issue. It'll help us A LOT if you give a try to fix it on your own following the doc. +If you failed to fix it yourself, tick the following boxes: - [ ] I've tried myself without success - [ ] I've replaced `HOST` in the issue title with the host of the URL that can't be fetched (ie: `nytimes.com`, `20minutes.fr`, `bbc.com`, etc.) diff --git a/.github/ISSUE_TEMPLATE/2-bug-report.md b/.github/ISSUE_TEMPLATE/2-bug-report.md new file mode 100644 index 000000000..a369501ba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2-bug-report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + + +### Environment + +* **Version**: +* **Installation**: +* **PHP version**: +* **OS**: +* **Database**: +* **Parameters**:
+ Your `app/config/parameters.yml` below + PASTE HERE +
+ +### What steps will reproduce the bug? + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/3-feature-request.md similarity index 82% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/3-feature-request.md index e74cb57fa..3d66dd221 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/3-feature-request.md @@ -7,6 +7,12 @@ assignees: '' --- + + **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index c766dcc8e..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -### Issue details - -Please provide issue details here. -Remember, this is _not_ a place to ask questions. For that, go to our chat at http://gitter.im/wallabag/wallabag or https://matrix.to/#/#wallabag_wallabag:gitter.im. - -### Environment - -* wallabag version (or git revision) that exhibits the issue: -* How did you install wallabag? Via `git clone` or by downloading the package? -* Last wallabag version that did not exhibit the issue (if applicable): -* php version: -* OS: -* type of hosting (shared or dedicated): -* which storage system you choose at install (SQLite, MySQL/MariaDB or PostgreSQL): -*
- Paste your `app/config/parameters.yml` below - PASTE HERE -
- -### Steps to reproduce/test case - -Please provide necessary steps for reproduction of this issue, or better the -reduced test case (without any external dependencies, if possible). diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3be7f77da --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Want to ask something? + url: https://gitter.im/wallabag/wallabag + about: Use Gitter to ask questions.