diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2023-09-22 23:20:56 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2023-09-22 23:20:56 +0200 |
commit | 3e7c754837afc7df87143f69f74a8130b033e812 (patch) | |
tree | fd67d6e170e2f6e56ef8e571cb7236c0f0536a5a | |
parent | 99a232a7be043fbeca4e38bb752b103033495d18 (diff) | |
download | wee-slack-2.10.1.tar.gz |
Release v2.10.1v2.10.1
-rw-r--r-- | CHANGELOG.md | 16 | ||||
-rw-r--r-- | wee_slack.py | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 44b4d5d..e310541 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 2.10.1 (2023-09-22) + +### Slack API changes + +- Fix the connection to the websocket when using session (`xoxc-`) tokens. These connections started failing after a change in the Slack API which made wee-slack unable to run at all (issue #901). + +### Bug fixes + +- Fix being invited to a private channel not working. +- Add join messages for your own user to hotlist (if unread). +- Prevent errors being printed in core buffer on events for unknown channels. +- Fix rendering of `<` and `>`. A regression in 2.10.0 made these be removed. +- Fix rendering of huddles. A regression in 2.10.0 made the text for huddle messages duplicated. +- Fix rendering of emojis when `render_emoji_as_string` is set to `both`. A regression in 2.10.0 made emojis show twice with this option (PR #902). +- Print an error message when running the `/reply` command without any arguments (issue #900). + ## 2.10.0 (2023-08-24) ### WeeChat compatibility diff --git a/wee_slack.py b/wee_slack.py index 5b34691..2825114 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -76,7 +76,7 @@ except ImportError: SCRIPT_NAME = "slack" SCRIPT_AUTHOR = "Trygve Aaberge <trygveaa@gmail.com>" -SCRIPT_VERSION = "2.10.0" +SCRIPT_VERSION = "2.10.1" SCRIPT_LICENSE = "MIT" SCRIPT_DESC = "Extends WeeChat for typing notification/search/etc on slack.com" REPO_URL = "https://github.com/wee-slack/wee-slack" |