1 +Ripcord version 0.4.29 (2021-6-4)
2 +---------------------------------
3 +
4 +### General
5 +
6 +* Added option to add extra highlighting to the active tab with an extra line of color (off by default.)
7 +* Minor tweaks to the GUI style engine to make disabled widgets more distinct from enabled widgets.
8 +
9 +### Slack
10 +
11 +* Fixed sign-in with username & password no longer working.
12 + * Some stuff changed on Slack's servers. Now Ripcord has been updated to deal with it.
13 +* Fixed file upload no longer working.
14 + * Same as above.
15 +* Added per-message explicit timestamp in the right-click menu for messages.
16 +* Increased per-workspace custom emoji limit from 100,000 to 1,000,000.
17 +* Added a workaround for Apple `rdar://12345` links being mangled due to URL parsing treating the `12345` part as an integer IP address.
18 + * This integer parsing is apparently the "correct" behavior for parsing URLs, but results in `rdar://12345` links being useless in Ripcord.
19 + * Ripcord now has a workaround that will rewrite those URLs to `rdar://problem/12345` when they're clicked on or copied to the clipboard. This prevents the the number part from being (correctly?) parsed as integer, and should still work with the `rdar://` URL handlers.
20 +* Added `gemini://` as a whitelisted URL scheme.
21 +* Added `snrx://` as a whitelisted URL scheme.
22 +
23 +Note for Slack users: there is a known and unresolved issue where your channel sidebar may become cluttered with junk channels named like `#mpdm-foo--bar`. I know about this and I'm fixing it. The fix for it didn't make it into this version, 0.4.29, because a complete and flexible solution for it involves changing some code that will require heavy testing, and I didn't want to delay releasing an update any longer. Sorry about that.
24 +
25 +### Discord
26 +
27 +* Added a dedicated mute button for other users in voice chats.
28 + * Finally.
29 +* Added ability to bookmark group DM channels.
30 + * Finally.
31 +* Added support for replying to messages in DM and group DM channels.
32 +* Added support for newer permissions flags, like "request to speak" for stage channels.
33 +* Added a menu item and a toolbar button to join or start DM and group DM voice calls.
34 + * The only way to do this previously was to right-click on the DM channel in the sidebar. That was stupid. Now there's a regular menu item and toolbar button.
35 +* Added guild creation date in the right-click menu for guilds.
36 +* Added channel creation date in the right-click menu for channels.
37 +* Added anti-spam warning in the "accept invite" menu/dialog.
38 +* Changed the URL used when clicking on the thumbnail of an uploaded video so that web browsers will prefer to play the video in a tab instead of download the video as a file to disk.
39 + * Finally.
40 +* Fixed a bug where angle brackets could be treated as Qt's pseudo-HTML text styling markers in the rich embed text sub-view.
41 + * This was not an exploitable bug. It was caused by Qt's document layout system automatically trying to apply bold, italic, etc. styling if it thought the plain text had HTML-like tags in it.
42 +* Fixed unsent input text being cleared when navigating from one Discord channel to another while quick reply input mode is engaged.
43 +
44 +### Windows
45 +
46 +* Reordered some initialization procedures to slightly reduce startup time.
47 +
1 48 Ripcord version 0.4.28 (2020-12-25)
2 49 -----------------------------------
3 50
4 51 ### Slack and Discord
5 52
6 53 * Added Ctrl+Up/Down to select messages without using a mouse.
7 54 * On Mac, the Ctrl key is still used for this, not Cmd. Cmd+Up/Down is already used as a text editing shortcut.