Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.6.0 #343

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## 0.6.0

### Added

- Render a message when there are no channels/messages ([#338])
- Keyboard bindings for emoji reactions ([#327], [#330])

### Fixes

- Random state reusage ([#326]):
This fixes the long-stating issue [#234] about losing the Signal session and
losing messages between linked clients.
- Replace reaction in UI instead of always removing it when replacing it ([#332])
- Ignore empty names from contact store ([#336])

### Internal

- Respect `RUST_LOG` when specifying --verbose ([#322])

[#234]: https://github.com/boxdot/gurk-rs/issues/234
[#326]: https://github.com/boxdot/gurk-rs/pull/326
[#332]: https://github.com/boxdot/gurk-rs/pull/332
[#336]: https://github.com/boxdot/gurk-rs/pull/336
[#338]: https://github.com/boxdot/gurk-rs/pull/338
[#330]: https://github.com/boxdot/gurk-rs/pull/330
[#327]: https://github.com/boxdot/gurk-rs/pull/327


## 0.5.2

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gurk"
description = "Signal messenger client for terminal"
version = "0.5.3-dev"
version = "0.6.0"
authors = ["boxdot <[email protected]>"]
edition = "2021"
keywords = ["signal", "tui"]
Expand Down
Loading