From 74a94c862cbdee03f7141675006ee01c877da7f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 13:01:36 +0100 Subject: [PATCH] chore(master): release 2.1.0 (#103) --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 2 +- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ manifest.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 23 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 3d4463d..ace3696 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -52,7 +52,7 @@ body: attributes: label: Plugin Version description: "Which Version does your plugin has?" - placeholder: v2.0.0 # x-release-please-version + placeholder: v2.1.0 # x-release-please-version validations: required: true - type: input diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 65f558e..656a2ef 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0" + ".": "2.1.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c0908d0..72a441b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [2.1.0](https://github.com/XeroxDev/YTMD-StreamDeck/compare/v2.0.0...v2.1.0) (2024-02-14) + + +### Features + +* add better error logging ([6408555](https://github.com/XeroxDev/YTMD-StreamDeck/commit/6408555e11cd6bbc16c70a6608bbd1208cf95ca4)) +* add French translation ([#102](https://github.com/XeroxDev/YTMD-StreamDeck/issues/102)) ([cfca17a](https://github.com/XeroxDev/YTMD-StreamDeck/commit/cfca17a615a429eb3189e095fe037e6b93d1c784)) + + +### Bug Fixes + +* missing actions in property inspector ([ad39dd8](https://github.com/XeroxDev/YTMD-StreamDeck/commit/ad39dd8677306601f0d5b169a99b39856d643fd9)) +* missing translation file causes crash ([716c464](https://github.com/XeroxDev/YTMD-StreamDeck/commit/716c464578b291cfdff41f52fb88fbc074541373)) +* mute/unmute just mutes ([64d546d](https://github.com/XeroxDev/YTMD-StreamDeck/commit/64d546dab289078e9c58c5760c1ac727261fa85e)) +* repeat mode only disables ([20c89d1](https://github.com/XeroxDev/YTMD-StreamDeck/commit/20c89d1e0d4f29bcf6ad64977dbeef9926972623)) +* track info breaks when adding two instances ([cd33b8d](https://github.com/XeroxDev/YTMD-StreamDeck/commit/cd33b8da4ad36c46bd14324cab0ebe7afc9acf8f)) +* variables are wrong calculated ([083a2dd](https://github.com/XeroxDev/YTMD-StreamDeck/commit/083a2dd40bcd6d461e806b3d52a972c25637e1cf)) + ## [2.0.0](https://github.com/XeroxDev/YTMD-StreamDeck/compare/v1.7.0...v2.0.0) (2024-02-12) diff --git a/manifest.json b/manifest.json index 466830d..65a6f3e 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "Description": "This Stream Deck Plugin allows you to control the YouTube Music Desktop App (https://github.com/ytmdesktop/ytmdesktop). If you need help, please visit my repository and open a issue https://github.com/XeroxDev/YTMD-StreamDeck/issues/new/choose", "URL": "https://github.com/XeroxDev/YTMD-StreamDeck", "Icon": "icons/action-image", - "Version": "2.0.0", + "Version": "2.1.0", "Category": "YTMD Connector", "CategoryIcon": "icons/category-icon", "SDKVersion": 2, diff --git a/package.json b/package.json index 2589506..347e0a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fun.shiro.ytmd.sdplugin", - "version": "2.0.0", + "version": "2.1.0", "description": "", "scripts": { "watch": "start watchify --debug -p tsify src/ytmd-pi.ts -o bundle-pi.js && start watchify --debug -p tsify src/ytmd.ts -o bundle.js", diff --git a/src/version.ts b/src/version.ts index a38c81b..e4c89d0 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ -const VERSION = '2.0.0'; // x-release-please-version +const VERSION = '2.1.0'; // x-release-please-version export default VERSION; \ No newline at end of file