Skip to content

Commit

Permalink
Release 4.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed May 20, 2024
1 parent dc37222 commit 72ae6d1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions data/io.github.alainm23.planify.appdata.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,16 @@
<url type="donation">https://www.patreon.com/alainm23</url>
<launchable type="desktop-id">@[email protected]</launchable>
<releases>
<release version="4.7.6" date="2024-05-20">
<description translate="no">
<ul>
<li>Fixed bug when editing a label.</li>
<li>Fixed bug when downloading a backup.</li>
<li>Updated Translations for Hindi</li>
</ul>
</description>
</release>

<release version="4.7.4" date="2024-05-18">
<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(
'io.github.alainm23.planify',
'vala', 'c',
version: '4.7.4'
version: '4.7.6'
)

gnome = import('gnome')
Expand Down
4 changes: 2 additions & 2 deletions src/Dialogs/Preferences/PreferencesWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ public class Dialogs.Preferences.PreferencesWindow : Adw.PreferencesDialog {
todoist_switch.active = Services.Todoist.get_default ().is_logged_in ();

Timeout.add (250, () => {
destroy ();
close ();
return GLib.Source.REMOVE;
});
});
Expand All @@ -918,7 +918,7 @@ public class Dialogs.Preferences.PreferencesWindow : Adw.PreferencesDialog {
caldav_switch.active = Services.CalDAV.Core.get_default ().is_logged_in ();

Timeout.add (250, () => {
destroy ();
close ();
return GLib.Source.REMOVE;
});
});
Expand Down

0 comments on commit 72ae6d1

Please sign in to comment.