Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit ecfbfc1

Browse files
committed
Fixed a bug related to LauncherManager
1 parent 8ad39b4 commit ecfbfc1

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set (GENERIC_NAME "Pomodoro App")
1616
set (RELEASE_NAME "Amai")
1717
set (PACKAGE_ID "com.github.luizaugustomm.tomato")
1818
set (COMMENT "Keep focused on your work")
19-
set (VERSION "1.2.6")
19+
set (VERSION "1.2.7")
2020
set (VERSION_INFO "Stable release")
2121

2222
# where we install data directory (if we have any)

data/com.github.luizaugustomm.tomato.appdata.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,5 @@
4444
</provides>
4545

4646
<releases>
47-
<release version="1.2.6" timestamp="20170410">
48-
<description>
49-
<p>Tomato "Amai" 1.2.x</p>
50-
</description>
51-
</release>
5247
</releases>
5348
</component>

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
tomato (1.2.7) xenial; urgency=medium
2+
3+
* Fixed minor bugs
4+
5+
-- Luiz Augusto <lamm@elementary> Tue, 11 Apr 2017 11:18:49 -0300
6+
17
tomato (1.2.6) xenial; urgency=medium
28

39
* Fixed minor bugs

po/tomato.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2017-04-10 19:52-0300\n"
11+
"POT-Creation-Date: 2017-04-11 11:16-0300\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"

src/Config.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Constants {
2121
public const string PKG_DATADIR = "/usr/share/tomato";
2222
public const string GETTEXT_PACKAGE = "tomato";
2323
public const string RELEASE_NAME = "Amai";
24-
public const string VERSION = "1.2.6";
24+
public const string VERSION = "1.2.7";
2525
public const string VERSION_INFO = "Stable release";
2626
public const string INSTALL_PREFIX = "/usr";
2727
public const string APP_NAME = "Tomato";

src/Managers/LauncherManager.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Tomato.Managers {
2323
private Unity.LauncherEntry launcher;
2424

2525
public LauncherManager () {
26-
launcher = Unity.LauncherEntry.get_for_desktop_id ("org.pantheon.tomato.desktop");
26+
launcher = Unity.LauncherEntry.get_for_desktop_id ("com.github.luizaugustomm.tomato.desktop");
2727
update_progress ();
2828
}
2929

0 commit comments

Comments
 (0)