From 4b02c966f150326ea5983530f1c4e7f71c1559a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Mon, 26 Apr 2021 22:03:21 +0200 Subject: [PATCH 1/4] Upgrade element to 1.7.26 --- README.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1b38a13..30ac822 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ It's a webclient for matrix. For a matrix server you can install synapse on your Yunohost chattroom with matrix : [https://app.element.io/#/room/#yunohost:matrix.org](https://app.element.io/#/room/#yunohost:matrix.org) -**Shipped version:** 1.7.25 +**Shipped version:** 1.7.26 Screenshots ----------- diff --git a/conf/app.src b/conf/app.src index b23553b..8f069c1 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/vector-im/element-web/releases/download/v1.7.25/element-v1.7.25.tar.gz -SOURCE_SUM=4f896c1954941e4c3847bb5279328f89f6e1c1a4dffd8176bd501a9054abb7d9 +SOURCE_URL=https://github.com/vector-im/element-web/releases/download/v1.7.26/element-v1.7.26.tar.gz +SOURCE_SUM=8f4f1c8dd19c1d9501b8c738a87e54d9d1786722c5d3eb72c867fac00de6c69f # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 5cc64a1..d3b5042 100644 --- a/manifest.json +++ b/manifest.json @@ -9,7 +9,7 @@ "en": "A web client for matrix", "fr": "Un client web pour matrix" }, - "version": "1.7.25~ynh1", + "version": "1.7.26~ynh1", "url": "https://element.im", "license": "Apache-2.0", "maintainer": { From efe63b25c13e4f1761c45af97a30c77efbf5fcfb Mon Sep 17 00:00:00 2001 From: Yunohost-Bot Date: Thu, 13 May 2021 17:52:05 +0200 Subject: [PATCH 2/4] [autopatch] Update issue and PR templates --- .github/ISSUE_TEMPLATE.md | 55 ++++++++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 16 ++++++++++ 2 files changed, 71 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..2729a6b --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,55 @@ +--- +name: Bug report +about: When creating a bug report, please use the following template to provide all the relevant information and help debugging efficiently. + +--- + +**How to post a meaningful bug report** +1. *Read this whole template first.* +2. *Determine if you are on the right place:* + - *If you were performing an action on the app from the webadmin or the CLI (install, update, backup, restore, change_url...), you are on the right place!* + - *Otherwise, the issue may be due to the app itself. Refer to its documentation or repository for help.* + - *When in doubt, post here and we will figure it out together.* +3. *Delete the italic comments as you write over them below, and remove this guide.* +--- + +### Describe the bug + +*A clear and concise description of what the bug is.* + +### Context + +- Hardware: *VPS bought online / Old laptop or computer / Raspberry Pi at home / Internet Cube with VPN / Other ARM board / ...* +- YunoHost version: x.x.x +- I have access to my server: *Through SSH | through the webadmin | direct access via keyboard / screen | ...* +- Are you in a special context or did you perform some particular tweaking on your YunoHost instance?: *no / yes* + - If yes, please explain: +- Using, or trying to install package version/branch: +- If upgrading, current package version: *can be found in the admin, or with `yunohost app info $app_id`* + +### Steps to reproduce + +- *If you performed a command from the CLI, the command itself is enough. For example:* + ```sh + sudo yunohost app install the_app + ``` +- *If you used the webadmin, please perform the equivalent command from the CLI first.* +- *If the error occurs in your browser, explain what you did:* + 1. *Go to '...'* + 2. *Click on '...'* + 3. *Scroll down to '...'* + 4. *See error* + +### Expected behavior + +*A clear and concise description of what you expected to happen. You can remove this section if the command above is enough to understand your intent.* + +### Logs + +*When an operation fails, YunoHost provides a simple way to share the logs.* +- *In the webadmin, the error message contains a link to the relevant log page. On that page, you will be able to 'Share with Yunopaste'. If you missed it, the logs of previous operations are also available under Tools > Logs.* +- *In command line, the command to share the logs is displayed at the end of the operation and looks like `yunohost log display [log name] --share`. If you missed it, you can find the log ID of a previous operation using `yunohost log list`.* + +*After sharing the log, please copypaste directly the link provided by YunoHost (to help readability, no need to copypaste the entire content of the log here, just the link is enough...)* + +*If applicable and useful, add screenshots to help explain your problem.* diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..ef70e18 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,16 @@ +## Problem + +- *Description of why you made this PR* + +## Solution + +- *And how do you fix that problem* + +## PR Status + +- [ ] Code finished and ready to be reviewed/tested +- [ ] The fix/enhancement were manually tested (if applicable) + +## Automatic tests + +Automatic tests can be triggered on https://ci-apps-dev.yunohost.org/ *after creating the PR*, by commenting "!testme", "!gogogadgetoci" or "By the power of systemd, I invoke The Great App CI to test this Pull Request!". (N.B. : for this to work you need to be a member of the Yunohost-Apps organization) From 49dfccac5e4e15be13b4f9020741da4ff0b0f5fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Mon, 10 May 2021 22:03:23 +0200 Subject: [PATCH 3/4] Upgrade element to 1.7.27 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Josué Tille --- README.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 30ac822..dd300af 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ It's a webclient for matrix. For a matrix server you can install synapse on your Yunohost chattroom with matrix : [https://app.element.io/#/room/#yunohost:matrix.org](https://app.element.io/#/room/#yunohost:matrix.org) -**Shipped version:** 1.7.26 +**Shipped version:** 1.7.27 Screenshots ----------- diff --git a/conf/app.src b/conf/app.src index 8f069c1..741e648 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/vector-im/element-web/releases/download/v1.7.26/element-v1.7.26.tar.gz -SOURCE_SUM=8f4f1c8dd19c1d9501b8c738a87e54d9d1786722c5d3eb72c867fac00de6c69f +SOURCE_URL=https://github.com/vector-im/element-web/releases/download/v1.7.27/element-v1.7.27.tar.gz +SOURCE_SUM=2994c7975dfa8bea74495ae9ad4e0c7eb1503c99cb72507b04133bc4250b8b00 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index d3b5042..be402e1 100644 --- a/manifest.json +++ b/manifest.json @@ -9,7 +9,7 @@ "en": "A web client for matrix", "fr": "Un client web pour matrix" }, - "version": "1.7.26~ynh1", + "version": "1.7.27~ynh1", "url": "https://element.im", "license": "Apache-2.0", "maintainer": { From 52d1840fc7cde426c5b987046fe701ce90664183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Mon, 17 May 2021 22:03:21 +0200 Subject: [PATCH 4/4] Upgrade element to 1.7.28 --- README.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dd300af..ae84fcf 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ It's a webclient for matrix. For a matrix server you can install synapse on your Yunohost chattroom with matrix : [https://app.element.io/#/room/#yunohost:matrix.org](https://app.element.io/#/room/#yunohost:matrix.org) -**Shipped version:** 1.7.27 +**Shipped version:** 1.7.28 Screenshots ----------- diff --git a/conf/app.src b/conf/app.src index 741e648..2d83c15 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/vector-im/element-web/releases/download/v1.7.27/element-v1.7.27.tar.gz -SOURCE_SUM=2994c7975dfa8bea74495ae9ad4e0c7eb1503c99cb72507b04133bc4250b8b00 +SOURCE_URL=https://github.com/vector-im/element-web/releases/download/v1.7.28/element-v1.7.28.tar.gz +SOURCE_SUM=d3bff9f4037e95cc4cf37c96552c2c79926b0e89ebdf80dd68f5fb3330bfb4a9 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index be402e1..ca7ed2a 100644 --- a/manifest.json +++ b/manifest.json @@ -9,7 +9,7 @@ "en": "A web client for matrix", "fr": "Un client web pour matrix" }, - "version": "1.7.27~ynh1", + "version": "1.7.28~ynh1", "url": "https://element.im", "license": "Apache-2.0", "maintainer": {