Skip to content

Commit e58fa4f

Browse files
authored
feat: 0.9.1 (#1296)
1 parent 0e8cc03 commit e58fa4f

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

data/dev.geopjr.Tuba.metainfo.xml.in

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,21 @@
6262
<control>touch</control>
6363
</recommends>
6464
<releases>
65+
<release version="0.9.1" date="2024-12-24">
66+
<description translate="no">
67+
<ul>
68+
<li>Fixed schedule month being wrong when re-scheduling</li>
69+
<li>Fixed FediWrapped default style being set to transparent</li>
70+
<li>Fixed some filter rows being invisible due to markup</li>
71+
<li>Enabled thread muting when the active account is mentioned</li>
72+
<li>Decreased the new post queue prepending scroll threshold</li>
73+
<li>Added Chuckya bubble timeline support</li>
74+
<li>Fixed URI opening during scripted exits caused by the switch to the async APIs</li>
75+
<li>Fixed visual glitches and performance issues caused by the clamp and styling in timelines</li>
76+
<li>Updated translations</li>
77+
</ul>
78+
</description>
79+
</release>
6580
<release version="0.9.0" date="2024-12-15">
6681
<description translate="no">
6782
<ul>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'dev.geopjr.Tuba',
33
['c', 'vala'],
4-
version: '0.9.0',
4+
version: '0.9.1',
55
meson_version: '>= 0.56.0',
66
default_options: [
77
'warning_level=2',

src/Services/Accounts/InstanceAccount.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ public class Tuba.InstanceAccount : API.Account, Streamable {
611611
if (list.id in settings.favorite_lists_ids) {
612612
fav_lists += new Place () {
613613
icon = "tuba-list-compact-symbolic",
614-
title = GLib.Markup.escape_text (list.title),
614+
title = list.title,
615615
extra_data = list,
616616
open_func = (win, list) => {
617617
win.open_view (set_as_sidebar_item (new Views.List ((API.List) list)));

0 commit comments

Comments
 (0)