Skip to content

Commit

Permalink
Release 4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed Dec 19, 2023
1 parent 6458fd0 commit 40c85a8
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
9 changes: 9 additions & 0 deletions data/io.github.alainm23.planify.appdata.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@
<url type="help">https://useplanner.com/support/</url>
<launchable type="desktop-id">@[email protected]</launchable>
<releases>
<release version="4.3.1" date="2023-12-19">
<description>
<ul>
<li>Russian translations thanks to @hachikoharuno.</li>
<li>French translation update thanks to @rene-coty.</li>
</ul>
</description>
</release>

<release version="4.3" date="2023-12-18">
<description>
<p>Planify 4.3 is here, design improvements and new features available.</p>
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.3'
version: '4.3.1'
)

gnome = import('gnome')
Expand Down
2 changes: 1 addition & 1 deletion po/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
To start translating, duplicate any of the `.po` files and start translating it,
rename it to match your country code and add your contry code.

Be sure to add your country code to the [LINGUAS](https://github.com/edfloreshz/done/blob/main/po/LINGUAS) file too.
Be sure to add your country code to the [LINGUAS](https://github.com/alainm23/planify/blob/master/po/LINGUAS) file too.

|Code |Language |
|----------|------------------------------------------|
Expand Down
16 changes: 16 additions & 0 deletions src/Dialogs/Preferences/PreferencesWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,25 @@ public class Dialogs.Preferences.PreferencesWindow : Adw.PreferencesWindow {
}
});

// var review_app_row = new Adw.ActionRow ();
// review_app_row.activatable = true;
// review_app_row.add_prefix (generate_icon ("planner-heart"));
// review_app_row.add_suffix (generate_icon ("pan-end-symbolic", 16));
// review_app_row.title = _("Review the app");
// review_app_row.subtitle = _("Tell us what we are doing correct or wrong.");

// review_app_row.activated.connect (() => {
// try {
// AppInfo.launch_default_for_uri (Constants.TELEGRAM_GROUP, null);
// } catch (Error e) {
// warning ("%s\n", e.message);
// }
// });

reach_us_group.add (contact_us_row);
reach_us_group.add (tweet_us_row);
reach_us_group.add (telegram_row);
// reach_us_group.add (review_app_row);
page.add (reach_us_group);

// Support Group
Expand Down

0 comments on commit 40c85a8

Please sign in to comment.