Skip to content

Commit

Permalink
feat: 0.9.1 (#1296)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeopJr authored Dec 24, 2024
1 parent 0e8cc03 commit e58fa4f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions data/dev.geopjr.Tuba.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,21 @@
<control>touch</control>
</recommends>
<releases>
<release version="0.9.1" date="2024-12-24">
<description translate="no">
<ul>
<li>Fixed schedule month being wrong when re-scheduling</li>
<li>Fixed FediWrapped default style being set to transparent</li>
<li>Fixed some filter rows being invisible due to markup</li>
<li>Enabled thread muting when the active account is mentioned</li>
<li>Decreased the new post queue prepending scroll threshold</li>
<li>Added Chuckya bubble timeline support</li>
<li>Fixed URI opening during scripted exits caused by the switch to the async APIs</li>
<li>Fixed visual glitches and performance issues caused by the clamp and styling in timelines</li>
<li>Updated translations</li>
</ul>
</description>
</release>
<release version="0.9.0" date="2024-12-15">
<description translate="no">
<ul>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/Services/Accounts/InstanceAccount.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
Expand Down

0 comments on commit e58fa4f

Please sign in to comment.