diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index ace3696..b64063c 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.1.0 # x-release-please-version + placeholder: v2.1.1 # x-release-please-version validations: required: true - type: input diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 656a2ef..19588bd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.0" + ".": "2.1.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 72a441b..78a06cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.1.1](https://github.com/XeroxDev/YTMD-StreamDeck/compare/v2.1.0...v2.1.1) (2024-06-06) + + +### Bug Fixes + +* **likedislike:** ignore unknown state for like/dislike state due to ytmd native issues ([#121](https://github.com/XeroxDev/YTMD-StreamDeck/issues/121)) ([36b44eb](https://github.com/XeroxDev/YTMD-StreamDeck/commit/36b44eb7252c63c523ba52809199bae0b1d0f5f1)), closes [#116](https://github.com/XeroxDev/YTMD-StreamDeck/issues/116) +* **pi:** settings don't get auto-populated ([7e4d781](https://github.com/XeroxDev/YTMD-StreamDeck/commit/7e4d7818c4854fdf09c644564dec3f7aa7895c6e)), closes [#115](https://github.com/XeroxDev/YTMD-StreamDeck/issues/115) + ## [2.1.0](https://github.com/XeroxDev/YTMD-StreamDeck/compare/v2.0.0...v2.1.0) (2024-02-14) diff --git a/manifest.json b/manifest.json index 65a6f3e..b9cc029 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.1.0", + "Version": "2.1.1", "Category": "YTMD Connector", "CategoryIcon": "icons/category-icon", "SDKVersion": 2, diff --git a/package.json b/package.json index 347e0a7..246b774 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fun.shiro.ytmd.sdplugin", - "version": "2.1.0", + "version": "2.1.1", "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 e4c89d0..6affb28 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ -const VERSION = '2.1.0'; // x-release-please-version +const VERSION = '2.1.1'; // x-release-please-version export default VERSION; \ No newline at end of file