From 93d8a1f5451a8d0cb3548915abc7fdac993ed001 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Thu, 4 Apr 2019 08:37:18 +1300 Subject: [PATCH 1/5] Version bump --- VERSION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION.md b/VERSION.md index e82a983d..35da7d0c 100755 --- a/VERSION.md +++ b/VERSION.md @@ -1 +1 @@ -3.34.0 \ No newline at end of file +3.34.1 \ No newline at end of file From 9c52b028429d833738b490c0d7e8044ec05832f9 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Thu, 4 Apr 2019 08:38:04 +1300 Subject: [PATCH 2/5] Releasing 3.34.1 --- mopidy_iris/__init__.py | 2 +- mopidy_iris/static/index.html | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mopidy_iris/__init__.py b/mopidy_iris/__init__.py index 8dd32c2a..7a48d016 100755 --- a/mopidy_iris/__init__.py +++ b/mopidy_iris/__init__.py @@ -12,7 +12,7 @@ from handlers import WebsocketHandler, HttpHandler from core import IrisCore logger = logging.getLogger(__name__) -__version__ = '3.34.0' +__version__ = '3.34.1' ## # Core extension class diff --git a/mopidy_iris/static/index.html b/mopidy_iris/static/index.html index 6ef040f6..5f5a8643 100644 --- a/mopidy_iris/static/index.html +++ b/mopidy_iris/static/index.html @@ -98,8 +98,8 @@ // Release details // These are automatically injected to built HTML - var build = "1554253014"; - var version = "3.34.0"; + var build = "1554320245"; + var version = "3.34.1"; // Construct the script tag var js = document.createElement("script"); diff --git a/package.json b/package.json index 0f3d8b48..b0740de6 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mopidy-iris", - "version": "3.34.0", + "version": "3.34.1", "description": "Mopidy HTTP interface", "repository": "https://github.com/jaedb/iris", "author": "James Barnsley ", From b4346114aa56fd909f73878a7df17b763d7fb84c Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Sat, 6 Apr 2019 15:30:57 +1300 Subject: [PATCH 3/5] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 38 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..dd84ea78 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +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. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..bbcbbe7d --- /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: '' +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. From 54eb0cadc127a2ad968c0dd9c7ef548af2887c78 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Sat, 6 Apr 2019 15:34:26 +1300 Subject: [PATCH 4/5] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 14 ++++---------- .github/ISSUE_TEMPLATE/feature_request.md | 4 ++-- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index dd84ea78..2077d96e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,8 +1,8 @@ --- name: Bug report -about: Create a report to help us improve +about: You've found a bug, let's fix it together! title: '' -labels: '' +labels: bug assignees: '' --- @@ -23,16 +23,10 @@ A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. -**Desktop (please complete the following information):** +**Environment details:** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] + - Iris version [e.g. 3.33.0] **Additional context** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index bbcbbe7d..0772a084 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,8 +1,8 @@ --- name: Feature request -about: Suggest an idea for this project +about: Let's make Iris even better title: '' -labels: '' +labels: feature request assignees: '' --- From 944a8630312d58f2527754ca5a923d5aae355d08 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Sat, 6 Apr 2019 15:34:47 +1300 Subject: [PATCH 5/5] Delete ISSUE_TEMPLATE.md --- .github/ISSUE_TEMPLATE.md | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100755 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100755 index f685cbf4..00000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,36 +0,0 @@ -## Expected behavior - -## Actual behavior - -## Steps to replicate -1. -2. - -## Tested environment(s) -#### Operating systems affected -- [ ] Windows: -- [ ] Mac: -- [ ] Linux: -- [ ] iOS: -- [ ] Andriod: -- [ ] Other: - -#### Browsers affected -- [ ] Chrome: -- [ ] Firefox: -- [ ] Internet Explorer: -- [ ] Opera: -- [ ] Other: - -#### Screen sizes affected -- [ ] Huge (ie desktop) -- [ ] Large (ie laptop) -- [ ] Medium (ie slim laptop/tablet) -- [ ] Small (phone) - -## Additional details, debug data, logs, etc - -## Before you submit -- [ ] Yes, I have tested this issue thoroughly -- [ ] Yes, I have attached screenshots and/or screencast of the issue in action -- [ ] Yes, I have included any relevant debug data and error logs