Skip to content

Commit 68ea9d9

Browse files
author
Alain
committed
Release 2.7
1 parent a4faf89 commit 68ea9d9

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

data/com.github.alainm23.planner.appdata.xml.in

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,18 @@
4646
<binary>com.github.alainm23.planner</binary>
4747
</provides>
4848
​<releases>
49+
<release version="2.7" date="2021-06-01">
50+
<description>
51+
<p>Planner 2.7 is here...</p>
52+
<ul>
53+
<li>New Natural Language Date Parser.</li>
54+
<li>First beta support for CalDAV.</li>
55+
<li>Labels synced with Todoist.</li>
56+
<li>Many, many design improvements.</li>
57+
</ul>
58+
</description>
59+
</release>
60+
4961
<release version="2.6.9" date="2021-01-18">
5062
<description>
5163
<p>Bug fixes and performance improvement</p>

data/stylesheet.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@define-color base_color white;
22
@define-color check_border_color @border_color;
33
@define-color projectview_color shade (#FFFFFF, 0.985);
4-
@define-color pane_color #F5F6F7;
4+
@define-color pane_color #FAFAFA;
55
@define-color pane_selected_color shade (@bg_color, 0.93);
66
@define-color pane_text_color #333333;
77
@define-color popover_background @projectview_color;

meson.build

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

77
add_project_arguments([

src/Utils.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ public class Utils : GLib.Object {
819819
base_color = "white";
820820
check_border_color = "@border_color";
821821
projectview_color = "shade (#FFFFFF, 0.985)";
822-
pane_color = "#F5F6F7";
822+
pane_color = "#fafafa";
823823
pane_selected_color = "shade (@bg_color, 0.93)";
824824
pane_text_color = "#333333";
825825
popover_background = "@projectview_color";

0 commit comments

Comments
 (0)