Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-10-30 00:02:59 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-10-30 00:02:59 +0300
commit6dc3c982db1891fa14f4727e431708f3cf9c3b95 (patch)
tree240858a71b2b93c35487f87016cc0861e12d5f6d
parent174e8df17e4a7b987615bf94fe2f6794abbb8c87 (diff)
release: 1.8.21.8.2
-rw-r--r--ChangeLog70
-rw-r--r--data/org.gajim.Gajim.appdata.xml.in3
-rw-r--r--flatpak/org.gajim.Gajim.yaml2
-rw-r--r--gajim/__init__.py2
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 @@
<control>pointing</control>
</recommends>
<releases>
+ <release version="1.8.2" date="2023-10-29">
+ <url>https://dev.gajim.org/gajim/gajim/-/releases/1.8.2</url>
+ </release>
<release version="1.8.1" date="2023-08-07">
<url>https://dev.gajim.org/gajim/gajim/-/releases/1.8.1</url>
</release>
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()