From 6dc3c982db1891fa14f4727e431708f3cf9c3b95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 29 Oct 2023 22:02:59 +0100 Subject: release: 1.8.2 --- ChangeLog | 70 +++++++++++++++++++++++++++++++++++++ data/org.gajim.Gajim.appdata.xml.in | 3 ++ flatpak/org.gajim.Gajim.yaml | 2 +- gajim/__init__.py | 2 +- 4 files changed, 75 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4c621bbfe..ad4b26909 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,73 @@ +Gajim 1.8.2 (29 Oct 2023) + + New + + * Allow adjusting user interface font size via hotkeys (#11343) + * Display composing participants in MUC chat banner + * ChatBanner: Show contact tooltip when hovering the avatar + * Hint that a contact is a bot in the chat banner + * Support multiple item dataforms (#10857) + * Display gateway icon in avatars + * RosterTooltip: Display BareContact presence (#10963) + * Display status message in banner + * ChatMenu: Always show "Execute command" action + + Improvements + + * MUC features: Use better icons for public and anonymous properties (#11585) + * Allow GroupChatInfoScrolled to be set with minimal information (#11662) + * Settings: Allow to set step size for spin settings; bind setting value + * StartChat: Better discover MUC services + * StartChat: Allow to start chats with domain JIDs + * ChatBanner: Don't show QR code for privated MUCs (#11647) + * Windows: Add gst-plugins-bad dependency for broader media preview support (#11638) + * MUC: Raise rejoin timeout + * Accounts: Be more consistent with chat state settings + * GroupChatInfo: Improve scaling of subject text (#11586) + * Windows appx: Add URI handler for xmpp: URIs + + Change + + * Raise GLib version + * Avatar: Don’t use custom avatar for IRC group chats + * Raise nbxmpp version + * Depend on Pillow >= 9.1.0 + + Performance + + * View: Reset view faster + + Bug Fixes + + * VideoPreview: Disable preview on destroy (#11657) + * GroupchatDetails: Depend on joined state for some elements (#11661) + * GroupChatInfo: Align max width of labels + * SynchronizeAccounts: Adapt to connection state changes (#11650, #11651) + * Tooltip: Do not escape presence status text + * Chatstates: Remove timeout id on remote timeout + * NotificationManager: Update actions if online state changes (#11642) + * Caps: Add disco info to cache after query + * MUC: Don’t show old join errors when disconnected from room + * MUC: Always remove rejoin timer when closing chat + * MUC: Update state correctly on disco info error + * Switch phone icon to something more widely supported + * ChatListStack: Handle missing last visible child + * Observable: Fix race condition when removing handlers + * PasswordDialog: Use verb instead of noun for log in button + * AdHoc: Wrap notes label + * Unpack string correctly while handling update error + * CSSConfig: Quote font-family property correctly (#11600) + * File transfers: Don't fail when tryting to send non-existing file + * MusicTrackListener: Don't fail if playing track could not be determined (#11607) + * Catch error if loading image with PIL fails due to unidentifiable image (#11616) + * CSSConfig: Fix parsing float sizes for font description + * Modules: Make sure BaseModule.cleanup() is always called on destroy + * Roster: Unregister all handlers on destroy + * Observable: Don’t allow to register handler multiple times + * View: Add newline after username when copying a message (#11610) + * Show notification on group chat mentions again (#11613) + * Make it impossible to connect without config (#11608) + Gajim 1.8.1 (07 Aug 2023) New diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in index 927207031..d9c18444b 100644 --- a/data/org.gajim.Gajim.appdata.xml.in +++ b/data/org.gajim.Gajim.appdata.xml.in @@ -74,6 +74,9 @@ pointing + + https://dev.gajim.org/gajim/gajim/-/releases/1.8.2 + https://dev.gajim.org/gajim/gajim/-/releases/1.8.1 diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml index b22ebb5d3..a0afac4b3 100644 --- a/flatpak/org.gajim.Gajim.yaml +++ b/flatpak/org.gajim.Gajim.yaml @@ -361,7 +361,7 @@ modules: sources: - type: git url: https://dev.gajim.org/gajim/gajim.git - tag: 1.8.1 + tag: 1.8.2 - type: file path: app-overrides.json post-install: diff --git a/gajim/__init__.py b/gajim/__init__.py index 745639602..abdde8a47 100644 --- a/gajim/__init__.py +++ b/gajim/__init__.py @@ -1,7 +1,7 @@ import sys from pathlib import Path -__version__ = '1.8.1' +__version__ = '1.8.2' IS_FLATPAK = Path('/app/share/run-as-flatpak').exists() -- cgit v1.2.3