mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-15 18:20:20 +00:00
Merge pull request #117 from ZoiteChat/pre3-incoming
release: bump 2.18.0~pre3; sync version refs + release notes
This commit is contained in:
@@ -1,6 +1,25 @@
|
|||||||
ZoiteChat ChangeLog
|
ZoiteChat ChangeLog
|
||||||
=================
|
=================
|
||||||
|
|
||||||
|
2.18.0~pre3 (2026-03-13)
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
- Added a major GTK3 theming overhaul with improved theme importing, inheritance, rollback safety, and caching.
|
||||||
|
- Merged theme settings into Appearance and added a new Advanced section.
|
||||||
|
- Added a full color editor and improved widget, chat text, userlist, and tab color handling.
|
||||||
|
- Added `colors.conf` import support and improved compatibility with older themes.
|
||||||
|
- Improved chat background image handling and switched to a native file picker.
|
||||||
|
- Bundled more built-in icons, including OK/Cancel, and improved emoji fallback support.
|
||||||
|
- Embedded the app SVG icon and improved headerbar icon handling.
|
||||||
|
- Fixed KDE Wayland alert flashing.
|
||||||
|
- Fixed tray hide/restore labels so they stay in sync with the real window state.
|
||||||
|
- Fixed several GTK3 styling issues, warning spam, and imported CSS cleanup problems.
|
||||||
|
- Removed menubar icons and simplified Away menu behavior.
|
||||||
|
- Improved Flatpak behavior on KDE and enabled Python/Perl plugin support.
|
||||||
|
- Manual addons now persist properly by being copied into the user addon directory.
|
||||||
|
- Updated `servlist.c` to remove dead servers and added a checker script.
|
||||||
|
|
||||||
|
|
||||||
2.18.0~pre2 (2026-02-25)
|
2.18.0~pre2 (2026-02-25)
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,27 @@
|
|||||||
<id>zoitechat.desktop</id>
|
<id>zoitechat.desktop</id>
|
||||||
</provides>
|
</provides>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release date="2026-03-13" version="2.18.0~pre3">
|
||||||
|
<description>
|
||||||
|
<p>GTK3 theming, UI, and platform improvements:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Added a major GTK3 theming overhaul with improved theme importing, inheritance, rollback safety, and caching.</li>
|
||||||
|
<li>Merged theme settings into Appearance and added a new Advanced section.</li>
|
||||||
|
<li>Added a full color editor and improved widget, chat text, userlist, and tab color handling.</li>
|
||||||
|
<li>Added <code>colors.conf</code> import support and improved compatibility with older themes.</li>
|
||||||
|
<li>Improved chat background image handling and switched to a native file picker.</li>
|
||||||
|
<li>Bundled more built-in icons, including OK/Cancel, and improved emoji fallback support.</li>
|
||||||
|
<li>Embedded the app SVG icon and improved headerbar icon handling.</li>
|
||||||
|
<li>Fixed KDE Wayland alert flashing.</li>
|
||||||
|
<li>Fixed tray hide/restore labels so tray state stays in sync with the real window state.</li>
|
||||||
|
<li>Fixed several GTK3 styling issues, warning spam, and imported CSS cleanup problems.</li>
|
||||||
|
<li>Removed menubar icons and simplified Away menu behavior.</li>
|
||||||
|
<li>Improved Flatpak behavior on KDE and enabled Python/Perl plugin support.</li>
|
||||||
|
<li>Manual addons now persist properly by being copied into the user addon directory.</li>
|
||||||
|
<li>Updated the bundled server list and added a checker script for server list maintenance.</li>
|
||||||
|
</ul>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release date="2026-02-25" version="2.18.0~pre2">
|
<release date="2026-02-25" version="2.18.0~pre2">
|
||||||
<description>
|
<description>
|
||||||
<p>Compatibility and UI improvements:</p>
|
<p>Compatibility and UI improvements:</p>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
project('zoitechat', 'c',
|
project('zoitechat', 'c',
|
||||||
version: '2.18.0~pre2',
|
version: '2.18.0~pre3',
|
||||||
meson_version: '>= 0.55.0',
|
meson_version: '>= 0.55.0',
|
||||||
default_options: [
|
default_options: [
|
||||||
'c_std=c17',
|
'c_std=c17',
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ else:
|
|||||||
if not hasattr(sys, 'argv'):
|
if not hasattr(sys, 'argv'):
|
||||||
sys.argv = ['<zoitechat>']
|
sys.argv = ['<zoitechat>']
|
||||||
|
|
||||||
VERSION = b'2.18.0~pre2'
|
VERSION = b'2.18.0~pre3'
|
||||||
PLUGIN_NAME = ffi.new('char[]', b'Python')
|
PLUGIN_NAME = ffi.new('char[]', b'Python')
|
||||||
PLUGIN_DESC = ffi.new('char[]', b'Python %d.%d scripting interface' % (sys.version_info[0], sys.version_info[1]))
|
PLUGIN_DESC = ffi.new('char[]', b'Python %d.%d scripting interface' % (sys.version_info[0], sys.version_info[1]))
|
||||||
PLUGIN_VERSION = ffi.new('char[]', VERSION)
|
PLUGIN_VERSION = ffi.new('char[]', VERSION)
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
2.18.0~pre2
|
2.18.0~pre3
|
||||||
|
|||||||
Reference in New Issue
Block a user