-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(flutter_discord_rpc): bump version to v0.1.0
- Loading branch information
Showing
13 changed files
with
74 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
## 0.1.0 | ||
|
||
- **FIX**(flutter_discord_rpc): not working for snap/flatpak discord in linux. | ||
- **FIX**(flutter_discord_rpc): use box to rpc connect alive and remove sandbox to allow connecting to discord ipc. | ||
- **FEAT**(flutter_discord_rpc): retry on broken pipe. | ||
- **FEAT**(flutter_discord_rpc): add auto retry connect. | ||
- **FEAT**(flutter_discord_rpc): add complete support. | ||
|
||
## 1.0.0 | ||
|
||
- Initial version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
[package] | ||
name = "flutter_discord_rpc" | ||
version = "0.0.1" | ||
edition = "2021" | ||
name = 'flutter_discord_rpc' | ||
version = '0.1.0' | ||
edition = '2021' | ||
|
||
[lib] | ||
crate-type = ["staticlib", "cdylib"] | ||
crate-type = ['staticlib', 'cdylib'] | ||
|
||
[[bin]] | ||
name = "main" | ||
path = "src/main.rs" | ||
name = 'main' | ||
path = 'src/main.rs' | ||
|
||
[build-dependencies] | ||
flutter_rust_bridge_codegen = "1.82.*" | ||
flutter_rust_bridge_codegen = '1.82.*' | ||
|
||
[dependencies] | ||
anyhow = "1.0.82" | ||
discord-rich-presence = "0.2.4" | ||
flutter_rust_bridge = "1.82.*" | ||
lazy_static = "1.4.0" | ||
anyhow = '1.0.82' | ||
discord-rich-presence = '0.2.4' | ||
flutter_rust_bridge = '1.82.*' | ||
lazy_static = '1.4.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters