Skip to content

Commit

Permalink
Release 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Sep 16, 2021
1 parent e07f992 commit 4c8be3d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.1.4] - 2021-09-16
### Added
- [PR#17](https://github.com/EmbarkStudios/discord-sdk/pull/17) added [Voice](https://discord.com/developers/docs/game-sdk/discord-voice) support. Even though this functionality is going to be deprecated and removed by Discord, it was fairly easy to implement so there is little harm.

## [0.1.3] - 2021-08-23
### Changed
- [PR#16](https://github.com/EmbarkStudios/discord-sdk/pull/16) exposed the `Snowflake` type publicly, as there are cases where you might need to use it directly as it is the underlying type for most of the unique identifiers throught the SDK.
Expand All @@ -34,7 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial crate squat

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.3...HEAD
[Unreleased]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.4...HEAD
[0.1.4]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.3...0.1.4
[0.1.3]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.2...0.1.3
[0.1.2]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.1...0.1.2
[0.1.1]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.0...0.1.1
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,18 @@ An (unofficial) open source Rust implementation of the [Discord Game SDK](https:

### ⚠️ [Voice](https://discord.com/developers/docs/game-sdk/discord-voice)

#### Commands

- [x] [Set Input Mode](https://discord.com/developers/docs/game-sdk/discord-voice#setinputmode)
- [x] [Set Self Mute](https://discord.com/developers/docs/game-sdk/discord-voice#setselfmute)
- [x] [Set Self Deaf](https://discord.com/developers/docs/game-sdk/discord-voice#setselfdeaf)
- [x] [Set Local Mute](https://discord.com/developers/docs/game-sdk/discord-voice#setlocalmute)
- [x] [Set Local Volume](https://discord.com/developers/docs/game-sdk/discord-voice#setlocalvolume)

#### Events

- [x] `VOICE_SETTINGS_UPDATE_2` - Undocumented, but this event is fired for all voice settings changes, _except_ for "Set Local Volume".

### TODO: [Images](https://discord.com/developers/docs/game-sdk/images)

### ⚠️ [Lobbies](https://discord.com/developers/docs/game-sdk/lobbies)
Expand Down
4 changes: 3 additions & 1 deletion sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.1.4] - 2021-09-16
### Added
- [PR#17](https://github.com/EmbarkStudios/discord-sdk/pull/17) added [Voice](https://discord.com/developers/docs/game-sdk/discord-voice) support. Even though this functionality is going to be deprecated and removed by Discord, it was fairly easy to implement so there is little harm.

Expand Down Expand Up @@ -37,7 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial crate squat

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.3...HEAD
[Unreleased]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.4...HEAD
[0.1.4]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.3...0.1.4
[0.1.3]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.2...0.1.3
[0.1.2]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.1...0.1.2
[0.1.1]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.0...0.1.1
Expand Down
2 changes: 1 addition & 1 deletion sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "discord-sdk"
version = "0.1.3"
version = "0.1.4"
authors = [
"Embark <[email protected]>",
"Jake Shadle <[email protected]>",
Expand Down

0 comments on commit 4c8be3d

Please sign in to comment.