From e58fa4f3aea85d5a0f75ff135b09f276e6bfbd6f Mon Sep 17 00:00:00 2001 From: Evan Paterakis Date: Tue, 24 Dec 2024 05:45:48 +0200 Subject: [PATCH] feat: 0.9.1 (#1296) --- data/dev.geopjr.Tuba.metainfo.xml.in | 15 +++++++++++++++ meson.build | 2 +- src/Services/Accounts/InstanceAccount.vala | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/data/dev.geopjr.Tuba.metainfo.xml.in b/data/dev.geopjr.Tuba.metainfo.xml.in index 5cd88c3a..afeba2d9 100644 --- a/data/dev.geopjr.Tuba.metainfo.xml.in +++ b/data/dev.geopjr.Tuba.metainfo.xml.in @@ -62,6 +62,21 @@ touch + + +
    +
  • Fixed schedule month being wrong when re-scheduling
  • +
  • Fixed FediWrapped default style being set to transparent
  • +
  • Fixed some filter rows being invisible due to markup
  • +
  • Enabled thread muting when the active account is mentioned
  • +
  • Decreased the new post queue prepending scroll threshold
  • +
  • Added Chuckya bubble timeline support
  • +
  • Fixed URI opening during scripted exits caused by the switch to the async APIs
  • +
  • Fixed visual glitches and performance issues caused by the clamp and styling in timelines
  • +
  • Updated translations
  • +
+
+
    diff --git a/meson.build b/meson.build index 7e5e2590..20590732 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'dev.geopjr.Tuba', ['c', 'vala'], - version: '0.9.0', + version: '0.9.1', meson_version: '>= 0.56.0', default_options: [ 'warning_level=2', diff --git a/src/Services/Accounts/InstanceAccount.vala b/src/Services/Accounts/InstanceAccount.vala index f80b7dc3..2effe3b6 100644 --- a/src/Services/Accounts/InstanceAccount.vala +++ b/src/Services/Accounts/InstanceAccount.vala @@ -611,7 +611,7 @@ public class Tuba.InstanceAccount : API.Account, Streamable { if (list.id in settings.favorite_lists_ids) { fav_lists += new Place () { icon = "tuba-list-compact-symbolic", - title = GLib.Markup.escape_text (list.title), + title = list.title, extra_data = list, open_func = (win, list) => { win.open_view (set_as_sidebar_item (new Views.List ((API.List) list)));