6 Commits

Author SHA1 Message Date
deepend-tildeclub
64a9c6e5d7 Merge pull request #397 from ZoiteChat/fix-issue-392
Fix Wayland text selection crash
2026-09-17 10:14:14 -07:00
66196013bc Fix Wayland text selection crash 2026-09-16 16:23:38 -06:00
deepend-tildeclub
61ff308c9f Merge pull request #395 from B4reMetal/fix-userlist-color-pref
fix(userlist): decouple userlist nick colors from text_color_nicks
2026-09-16 14:00:16 -07:00
2672f9b087 Start acknowleding 2.20 development 2026-09-16 01:16:35 -06:00
4315a75a12 add 2.19.1 release notes 2026-09-16 00:10:49 -06:00
BareMetal
15905bebb1 fix(userlist): decouple userlist nick colors from text_color_nicks 2026-09-15 19:38:34 -06:00
6 changed files with 35 additions and 5 deletions

View File

@@ -1 +1 @@
2.19.0
2.20.0-dev

View File

@@ -29,6 +29,22 @@
<id>zoitechat.desktop</id>
</provides>
<releases>
<release date="2026-09-15" version="2.19.1">
<description>
<ul>
<li>Fixed /msg messages showing twice on servers using IRCv3 <code>echo-message</code>.</li>
<li>Fixed escaping a leading command slash so <code>//text</code> sends <code>/text</code> as normal chat.</li>
<li>Fixed automatic away clearing when sending messages on servers using <code>echo-message</code>.</li>
<li>Fixed other users' away status not updating until rejoining a channel when <code>away-notify</code> updates are missed.</li>
<li>Fixed private messages and <code>/me</code> actions being routed to the wrong window when using WeeChat's IRC relay, while preserving channel ACTION routing.</li>
<li>Fixed a Flatpak startup error caused by the D-Bus service still using the old HexChat app ID.</li>
<li>Fixed optional Windows 10 theme downloads in the Windows installer.</li>
<li>Fixed the GTK warning when switching from channel tabs to the channel tree.</li>
<li>Fixed GTK3 theme archive root detection so themes with an <code>index.theme</code> file are preferred correctly.</li>
<li>Fixed source-build configuration when plugin AppStream metadata installation is disabled, and corrected the minimum Meson version to 0.59.</li>
</ul>
</description>
</release>
<release date="2026-07-28" version="2.19.0">
<description>
<ul>

View File

@@ -1,6 +1,20 @@
ZoiteChat ChangeLog
=================
2.19.1 (2026-09-15)
-------------------
- Fixed ``/msg`` messages showing twice on servers using IRCv3 ``echo-message``.
- Fixed escaping a leading command slash so ``//text`` sends ``/text`` as normal chat.
- Fixed automatic away clearing when sending messages on servers using ``echo-message``.
- Fixed other users' away status not updating until rejoining a channel when ``away-notify`` updates are missed.
- Fixed private messages and ``/me`` actions being routed to the wrong window when using WeeChat's IRC relay, while preserving channel ACTION routing.
- Fixed a Flatpak startup error caused by the D-Bus service still using the old HexChat app ID.
- Fixed optional Windows 10 theme downloads in the Windows installer.
- Fixed the GTK warning when switching from channel tabs to the channel tree.
- Fixed GTK3 theme archive root detection so themes with an ``index.theme`` file are preferred correctly.
- Fixed source-build configuration when plugin AppStream metadata installation is disabled, and corrected the minimum Meson version to 0.59.
2.19.0 (2026-07-28)
-------------------

View File

@@ -683,7 +683,7 @@ theme_manager_get_userlist_palette_behavior (const PangoFontDescription *font_de
behavior.font_desc = font_desc;
behavior.apply_background = TRUE;
behavior.apply_foreground = (prefs.hex_gui_ulist_color || prefs.hex_text_color_nicks) ? FALSE : TRUE;
behavior.apply_foreground = prefs.hex_gui_ulist_color ? FALSE : TRUE;
return behavior;
}

View File

@@ -594,7 +594,7 @@ fe_userlist_rehash (session *sess, struct User *user)
nick_token = THEME_TOKEN_TAB_AWAY;
have_nick_token = TRUE;
}
else if (prefs.hex_gui_ulist_color || prefs.hex_text_color_nicks)
else if (prefs.hex_gui_ulist_color)
{
int mirc_index = text_color_of (user->nick);
@@ -635,7 +635,7 @@ fe_userlist_insert (session *sess, struct User *newuser, gboolean sel)
nick_token = THEME_TOKEN_TAB_AWAY;
have_nick_token = TRUE;
}
else if (prefs.hex_gui_ulist_color || prefs.hex_text_color_nicks)
else if (prefs.hex_gui_ulist_color)
{
int mirc_index = text_color_of (newuser->nick);

View File

@@ -3172,7 +3172,7 @@ gtk_xtext_selection_get (GtkWidget * widget,
if (!window || !GDK_IS_WINDOW (window))
break;
display = gdk_window_get_display (window);
if (!display)
if (!display || !GDK_IS_X11_DISPLAY (display))
break;
GdkAtom encoding;
gint format;