diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index b64063c..0e83455 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.1 # x-release-please-version + placeholder: v2.2.0 # x-release-please-version validations: required: true - type: input diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 19588bd..bfc26f9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.1" + ".": "2.2.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 78a06cf..bc15356 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.2.0](https://github.com/XeroxDev/YTMD-StreamDeck/compare/v2.1.1...v2.2.0) (2024-08-18) + + +### Features + +* add streamdeck+ support ([ba5e573](https://github.com/XeroxDev/YTMD-StreamDeck/commit/ba5e5736898c8e296f8900c5c432afcf9a969dcd)) + + +### Bug Fixes + +* english grammar issues. ([6b6b8b4](https://github.com/XeroxDev/YTMD-StreamDeck/commit/6b6b8b4d933821da0f29f1f505e6779e2b60ee8a)) + ## [2.1.1](https://github.com/XeroxDev/YTMD-StreamDeck/compare/v2.1.0...v2.1.1) (2024-06-06) diff --git a/manifest.json b/manifest.json index 47f6e4c..314a42a 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.1", + "Version": "2.2.0", "Category": "YTMD Connector", "CategoryIcon": "icons/category-icon", "SDKVersion": 2, @@ -37,7 +37,10 @@ "FontSize": "16" } ], - "Controllers": ["Keypad", "Encoder"], + "Controllers": [ + "Keypad", + "Encoder" + ], "DisableAutomaticStates": false, "Encoder": { "layout": "$B1", @@ -160,7 +163,10 @@ "FontSize": "16" } ], - "Controllers": ["Keypad", "Encoder"], + "Controllers": [ + "Keypad", + "Encoder" + ], "DisableAutomaticStates": false, "Encoder": { "layout": "$B1", diff --git a/package-lock.json b/package-lock.json index 1d8bf53..953b29d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "fun.shiro.ytmd.sdplugin", - "version": "2.1.1", + "version": "2.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "fun.shiro.ytmd.sdplugin", - "version": "2.1.1", + "version": "2.2.0", "license": "MIT", "dependencies": { "streamdeck-typescript": "^3.1.4", diff --git a/package.json b/package.json index ae71f16..9945930 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fun.shiro.ytmd.sdplugin", - "version": "2.1.1", + "version": "2.2.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 6affb28..3287422 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ -const VERSION = '2.1.1'; // x-release-please-version +const VERSION = '2.2.0'; // x-release-please-version export default VERSION; \ No newline at end of file