Skip to content

Commit 95eb076

Browse files
committed
Release 4.3.2
1 parent 41d8957 commit 95eb076

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

data/io.github.alainm23.planify.appdata.xml.in.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@
5454
<url type="help">https://useplanner.com/support/</url>
5555
<launchable type="desktop-id">@[email protected]</launchable>
5656
<releases>
57+
<release version="4.3.2" date="2023-12-20">
58+
<description>
59+
<ul>
60+
<li>Fixed the functionality of adding tags.</li>
61+
</ul>
62+
</description>
63+
</release>
64+
5765
<release version="4.3.1" date="2023-12-19">
5866
<description>
5967
<ul>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'io.github.alainm23.planify',
33
'vala', 'c',
4-
version: '4.3.1'
4+
version: '4.3.2'
55
)
66

77
gnome = import('gnome')

src/Views/Label/Labels.vala

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,34 @@ public class Views.Labels : Adw.Bin {
8383
return GLib.Source.REMOVE;
8484
});
8585

86-
labels_local_header.add_activated.connect (() => {
86+
var add_local_button = new Gtk.Button () {
87+
valign = Gtk.Align.CENTER,
88+
can_focus = false,
89+
child = new Widgets.DynamicIcon.from_icon_name ("plus") {
90+
valign = Gtk.Align.CENTER,
91+
halign = Gtk.Align.CENTER,
92+
},
93+
css_classes = { Granite.STYLE_CLASS_FLAT, "header-item-button" }
94+
};
95+
96+
labels_local_header.add_widget_end (add_local_button);
97+
add_local_button.clicked.connect (() => {
8798
var dialog = new Dialogs.Label.new (BackendType.LOCAL);
8899
dialog.show ();
89100
});
90101

91-
labels_todoist_header.add_activated.connect (() => {
102+
var add_todoist_button = new Gtk.Button () {
103+
valign = Gtk.Align.CENTER,
104+
can_focus = false,
105+
child = new Widgets.DynamicIcon.from_icon_name ("plus") {
106+
valign = Gtk.Align.CENTER,
107+
halign = Gtk.Align.CENTER,
108+
},
109+
css_classes = { Granite.STYLE_CLASS_FLAT, "header-item-button" }
110+
};
111+
112+
labels_todoist_header.add_widget_end (add_todoist_button);
113+
add_todoist_button.clicked.connect (() => {
92114
var dialog = new Dialogs.Label.new (BackendType.TODOIST);
93115
dialog.show ();
94116
});

0 commit comments

Comments
 (0)