aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrygve Aaberge <trygveaa@gmail.com>2019-05-05 21:34:20 +0200
committerTrygve Aaberge <trygveaa@gmail.com>2019-05-05 21:34:20 +0200
commit0939fd32fbd6d2763187919c6cc06088a79a3c6d (patch)
treef1466f35598f73d69d265e357986a93209981f87
parentf0bd47437f968ea11cc8277612f860d582e569f0 (diff)
downloadwee-slack-0939fd32fbd6d2763187919c6cc06088a79a3c6d.tar.gz
Release v2.3.0v2.3.0
-rw-r--r--CHANGELOG.md23
-rw-r--r--wee_slack.py2
2 files changed, 23 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ef32d8f..d5012cc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,27 @@
# Changelog
-## Next version
+## 2.3.0 (2019-05-05)
+
+- Python 3 support. Python 2 will continue to be supported at least until the end of 2019 (fixes #258, fixes #331, fixes #555, fixes #576, fixes #598).
+- Improve detection of connection loss to the server, and improve reconnection (fixes #238, fixes #480, fixes #561, fixes #687).
+- Add option `files_download_location` to download uploaded files automatically (fixes #562, PR #666).
+- Add option `show_buflist_presence` to show/hide presence from buflist (PR #558).
+- Add command `/help` and add descriptions for all commands (fixes #363).
+- Remove command `/leave` (weechat aliases it to `/part` by default so we don't need to implement it specifically).
+- Remove command `/slack p` (only used for debugging).
+- Remove command `/slack openweb`, use `/slack linkarchive` instead.
+- Make command `/thread` open last thread in channel when called without arguments (PR #677).
+- Support command `/away -all` for marking you away on all servers/teams (fixes #596).
+- Show human readable names for user groups properly (PR #680).
+- Add tab completion of user groups (PR #680).
+- Support uploading files to threads (fixes #672, PR #683).
+- Include threads when marking latest message as read (PR #653).
+- Some fixes for formatting of messages (bold/italic) (PR #567).
+- Show human readable references (e.g. user names) instead of ids in topic (PR #665).
+- Show join/leave correctly in private channels (fixes #625, PR #684).
+- Print error if user/channel is not found when querying/joining (fixes #597).
+- Print a message when another client or the server closes an IM.
+- Various small bug fixes.
## 2.2.0 (2018-11-12)
diff --git a/wee_slack.py b/wee_slack.py
index d8b16b9..d643903 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -46,7 +46,7 @@ except ImportError:
SCRIPT_NAME = "slack"
SCRIPT_AUTHOR = "Ryan Huber <rhuber@gmail.com>"
-SCRIPT_VERSION = "2.2.0"
+SCRIPT_VERSION = "2.3.0"
SCRIPT_LICENSE = "MIT"
SCRIPT_DESC = "Extends weechat for typing notification/search/etc on slack.com"