diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2021-05-11 22:30:36 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2021-05-11 22:30:36 +0200 |
commit | f3f08ddb34d642c1b8b0eab3a18e1b85c9af43d3 (patch) | |
tree | 1b382faaf0355f33a4ec1c83dd58f50cc2084b9e | |
parent | e06322d05af4e67c62585a5a7263e7b55e9238bb (diff) | |
download | wee-slack-f3f08ddb34d642c1b8b0eab3a18e1b85c9af43d3.tar.gz |
Release v2.8.0v2.8.0
-rw-r--r-- | CHANGELOG.md | 19 | ||||
-rw-r--r-- | wee_slack.py | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4567c40..7a5dd93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 2.8.0 (2021-05-11) + +### WeeChat compability + +- Add compatibility with WeeChat >= 3.2 (XDG directories). + +### Features + +- Include channel name in file names for downloaded files (fixes #836). +- Add indicator for broadcast thread messages (PR #838). + +### Bug fixes + +- Fix nick not being shown for unknown/external users. +- Fix a bug where the first line would use `prefix_same_nick` after reprinting messages if the first and last message were from the same person. +- Fix some nicks missing in the nicklist of some channels (fixes #829). +- Fix new MPIMs (group private chats) not appearing (fixes #825, fixes #833). +- Fix some MPIMs showing up as private channels. + ## 2.7.0 (2021-02-24) Note that this version changes the default value of the `background_load_all_history` option to `true`, but this will not change for existing installations. It is recommended to set it to `true` unless you experience performance issues. If you keep it at `false` you will experience these issues: diff --git a/wee_slack.py b/wee_slack.py index c77f2da..cec821c 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -76,7 +76,7 @@ except ImportError: SCRIPT_NAME = "slack" SCRIPT_AUTHOR = "Ryan Huber <rhuber@gmail.com>" -SCRIPT_VERSION = "2.7.0" +SCRIPT_VERSION = "2.8.0" SCRIPT_LICENSE = "MIT" SCRIPT_DESC = "Extends weechat for typing notification/search/etc on slack.com" REPO_URL = "https://github.com/wee-slack/wee-slack" |