Skip to content

Commit

Permalink
Fix #21
Browse files Browse the repository at this point in the history
  • Loading branch information
Alain M committed Mar 28, 2019
1 parent bffc8f1 commit dbd8dc6
Show file tree
Hide file tree
Showing 10 changed files with 365 additions and 105 deletions.
17 changes: 16 additions & 1 deletion data/com.github.alainm23.planner.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,21 @@
<binary>com.github.alainm23.planner</binary>
</provides>
​<releases>
<release version="1.2.4" date="2019-03-28">
<description>
<ul>
<li>Stability and performance improvements</li>
<li>New view "All tasks" and "Tasks completed"</li>
<li>Markdown support</li>
<li>Improved quick search</li>
</ul>
<p>Translations:</p>
<ul>
<li>Dutch (Heimen Stoffels)</li>
<li>Brazilian (Raphael Cabral)</li>
</ul>
</description>
</release>
<release version="1.2.3" date="2019-01-29">
<description>
<p>New features:</p>
Expand Down Expand Up @@ -168,6 +183,6 @@
<custom>
<value key="x-appcenter-color-primary">#ffe16b</value>
<value key="x-appcenter-color-primary-text">#000</value>
<value key="x-appcenter-suggested-price">15</value>
<value key="x-appcenter-suggested-price">9</value>
</custom>
</component>
3 changes: 2 additions & 1 deletion data/com.github.alainm23.planner.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
<file alias="planner-github.svg">resources/planner-github.svg</file>
<file alias="planner-repository.svg">resources/planner-repository.svg</file>
<file alias="planner-todoist.svg">resources/planner-todoist.svg</file>

<file alias="planner-paypal.svg">resources/planner-paypal.svg</file>

<file alias="planner-banana-theme.svg">resources/planner-banana-theme.svg</file>
<file alias="planner-black-theme.svg">resources/planner-black-theme.svg</file>
<file alias="planner-blueberry-theme.svg">resources/planner-blueberry-theme.svg</file>
Expand Down
21 changes: 21 additions & 0 deletions data/credits.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,20 @@
"username": "",
"avatar": "https://avatars0.githubusercontent.com/u/28876465?s=400&v=4",
"profile_url": "https://github.com/welaq"
},
{
"id": "13441032",
"name": "Raphael Cabral",
"username": "brcmesquita",
"avatar": "https://avatars0.githubusercontent.com/u/13441032?s=400&v=4",
"profile_url": "https://github.com/brcmesquita"
},
{
"id": "1716229",
"name": "Heimen Stoffels",
"username": "Vistaus",
"avatar": "https://avatars0.githubusercontent.com/u/1716229?s=400&v=4",
"profile_url": "https://github.com/Vistaus"
}
],
"support" : [
Expand Down Expand Up @@ -110,6 +124,13 @@
"username": "",
"avatar": "https://avatars3.githubusercontent.com/u/33732772?s=400&v=4",
"profile_url": "https://github.com/ArthurS1"
},
{
"id": "48254041",
"name": "Ilya Egorov",
"username": "ie900",
"avatar": "https://avatars2.githubusercontent.com/u/48254041?s=400&v=4",
"profile_url": "https://github.com/ie900"
}
]
}
1 change: 1 addition & 0 deletions data/resources/planner-paypal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('com.github.alainm23.planner',
'vala', 'c',
version: '1.2.1')
version: '1.2.4')

gnome = import('gnome')
i18n = import('i18n')
Expand Down
2 changes: 1 addition & 1 deletion src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class Application : Gtk.Application {
github = new Services.Github ();
share = new Services.Share ();

APP_VERSION = "1.2.3";
APP_VERSION = "1.2.4";
}

public static Application _instance = null;
Expand Down
Loading

0 comments on commit dbd8dc6

Please sign in to comment.