Skip to content

Commit

Permalink
change action ID to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonoughe committed May 16, 2020
1 parent 61483f5 commit a6c6916
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [v0.1.2] - 2020-05-16
### Fixed
- Changed action ID to lowercase for compatibility with Stream Deck 4.6.4.

## [v0.1.1] - 2019-06-15
### Fixed
- No longer crashes when used with Stream Deck 4.3.0.
Expand All @@ -26,7 +30,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Button for switching between headphones and speakers.

[Unreleased]: https://github.com/mdonoughe/sbz-switch/compare/v0.1.1...HEAD
[Unreleased]: https://github.com/mdonoughe/sbz-switch/compare/v0.1.2...HEAD
[v0.1.1]: https://github.com/mdonoughe/sbz-switch/compare/v0.1.1...v0.1.2
[v0.1.1]: https://github.com/mdonoughe/sbz-switch/compare/v0.1.0...v0.1.1
[v0.1.0]: https://github.com/mdonoughe/sbz-switch/compare/v0.1.0-preview2...v0.1.0
[v0.1.0-preview2]: https://github.com/mdonoughe/sbz-switch/compare/v0.1.0-preview1...v0.1.0-preview2
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
],
"SupportedInMultiActions": true,
"Tooltip": "Switch between speakers and headphones",
"UUID": "io.github.mdonoughe.sbzdeck.selectOutput"
"UUID": "io.github.mdonoughe.sbzdeck.selectoutput"
}
],
"SDKVersion": 2,
Expand All @@ -28,7 +28,7 @@
"Name": "sbzdeck",
"Icon": "actionSpeaker",
"URL": "https://github.com/mdonoughe/sbzdeck/",
"Version": "0.1.1",
"Version": "0.1.2",
"OS": [
{
"Platform": "windows",
Expand Down
2 changes: 1 addition & 1 deletion plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "plugin"
version = "0.1.1"
version = "0.1.2"
authors = ["Matthew Donoughe <mdonoughe@gmail.com>"]
description = "Steam Deck plugin for Sound Blaster devices"
repository = "https://github.com/mdonoughe/sbzdeck/"
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use streamdeck_rs::socket::{ConnectError, StreamDeckSocket};
use streamdeck_rs::{KeyPayload, Message, MessageOut, StatePayload};
use tokio::prelude::*;

const ACTION_SELECT_OUTPUT: &str = "io.github.mdonoughe.sbzdeck.selectOutput";
const ACTION_SELECT_OUTPUT: &str = "io.github.mdonoughe.sbzdeck.selectoutput";

fn connect(
params: &RegistrationParams,
Expand Down

0 comments on commit a6c6916

Please sign in to comment.