[meego-commits] 5705: Changes to Trunk:Testing/uxlaunch
Auke Kok
auke-jan.h.kok at intel.com
Wed Jul 14 18:16:50 UTC 2010
Hi,
I have made the following changes to uxlaunch in project Trunk:Testing. Please review and accept ASAP.
Thank You,
Auke Kok
[This message was auto-generated]
---
Request #5705:
submit: home:auke/uxlaunch(r37) -> Trunk:Testing/uxlaunch
Message:
None
State: new 2010-07-14T06:11:37 auke
Comment: None
changes files:
--------------
--- uxlaunch.changes
+++ uxlaunch.changes
@@ -0,0 +1,4 @@
+* Wed Jul 14 2010 Auke Kok <auke-jan.h.kok at intel.com> - 0.54
+- Case fix: compare casefolded items to lowercase strings
+- mompositor -> mcompositor type fix BMC#3838
+
old:
----
uxlaunch-0.53.tar.gz
new:
----
uxlaunch-0.54.tar.gz
spec files:
-----------
--- uxlaunch.spec
+++ uxlaunch.spec
@@ -1,13 +1,13 @@
#
# Do not Edit! Generated by:
-# spectacle version 0.17
+# spectacle version 0.18
#
# >> macros
# << macros
Name: uxlaunch
Summary: MeeGo UX launcher daemon
-Version: 0.53
+Version: 0.54
Release: 1
Group: System/Desktop
License: GPLv2
other changes:
--------------
++++++ uxlaunch-0.53.tar.gz -> uxlaunch-0.54.tar.gz
--- Makefile
+++ Makefile
@@ -1,4 +1,4 @@
-VERSION = 0.53
+VERSION = 0.54
CC := gcc
--- desktop.c
+++ desktop.c
@@ -199,13 +199,13 @@
show = 0;
if (prio_key) {
gchar *p = g_utf8_casefold(prio_key, g_utf8_strlen(prio_key, -1));
- if (g_strstr_len(p, -1, "Highest"))
+ if (g_strstr_len(p, -1, "highest"))
prio = -1;
- else if (g_strstr_len(p, -1, "High"))
+ else if (g_strstr_len(p, -1, "high"))
prio = 0;
- else if (g_strstr_len(p, -1, "Low"))
+ else if (g_strstr_len(p, -1, "low"))
prio = 2;
- else if (g_strstr_len(p, -1, "Late"))
+ else if (g_strstr_len(p, -1, "late"))
prio = 3;
}
@@ -219,7 +219,7 @@
/* adjust filter based on what our session cmd is */
//FIXME: this needs to be mapped by xsession desktop files
//FIXME: in the same way the gnome session is defined
- if (strstr(session, "mompositor"))
+ if (strstr(session, "mcompositor"))
snprintf(session_filter, 16, "X-MEEGO-HS");
if (strstr(session, "neskowin"))
snprintf(session_filter, 16, "X-MUX"); /* old */
++++++ uxlaunch.yaml
--- uxlaunch.yaml
+++ uxlaunch.yaml
@@ -1,6 +1,6 @@
Name: uxlaunch
Summary: MeeGo UX launcher daemon
-Version: 0.53
+Version: 0.54
Release: 1
Group: System/Desktop
License: GPLv2
More information about the MeeGo-commits
mailing list