Merge lp:~indicator-applet-developers/libindicate/ubuntu into lp:~ubuntu-desktop/libindicate/ubuntu

Proposed by Ted Gould
Status: Merged
Merged at revision: not available
Proposed branch: lp:~indicator-applet-developers/libindicate/ubuntu
Merge into: lp:~ubuntu-desktop/libindicate/ubuntu
Diff against target: 133 lines (+29/-10) (has conflicts)
6 files modified
configure.ac (+3/-3)
debian/changelog (+16/-0)
libindicate/Makefile.am (+2/-1)
libindicate/indicate-enum-types.h.in (+3/-2)
libindicate/server.c (+4/-3)
libindicate/server.h (+1/-1)
Text conflict in debian/changelog
To merge this branch: bzr merge lp:~indicator-applet-developers/libindicate/ubuntu
Reviewer Review Type Date Requested Status
Sebastien Bacher Pending
Review via email: mp+18736@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Ted Gould (ted) wrote :

0.3.1

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'configure.ac'
--- configure.ac 2010-02-04 23:16:17 +0000
+++ configure.ac 2010-02-06 00:28:12 +0000
@@ -1,10 +1,10 @@
11
2AC_INIT(libindicate, 0.3.0, ted@canonical.com)2AC_INIT(libindicate, 0.3.1, ted@canonical.com)
33
4AC_PREREQ(2.53)4AC_PREREQ(2.53)
55
6AM_CONFIG_HEADER(config.h)6AM_CONFIG_HEADER(config.h)
7AM_INIT_AUTOMAKE(libindicate, 0.3.0)7AM_INIT_AUTOMAKE(libindicate, 0.3.1)
88
9AM_MAINTAINER_MODE9AM_MAINTAINER_MODE
10m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])10m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])
@@ -55,7 +55,7 @@
55DBUS_REQUIRED_VERSION=0.7655DBUS_REQUIRED_VERSION=0.76
56GLIB_REQUIRED_VERSION=2.1856GLIB_REQUIRED_VERSION=2.18
57GIO_REQUIRED_VERSION=2.1857GIO_REQUIRED_VERSION=2.18
58DBUSMENU_REQUIRED_VERSION=0.2.058DBUSMENU_REQUIRED_VERSION=0.2.2
5959
60PKG_CHECK_MODULES(LIBINDICATE, glib-2.0 >= $GLIB_REQUIRED_VERSION60PKG_CHECK_MODULES(LIBINDICATE, glib-2.0 >= $GLIB_REQUIRED_VERSION
61 gio-2.0 >= $GIO_REQUIRED_VERSION61 gio-2.0 >= $GIO_REQUIRED_VERSION
6262
=== modified file 'debian/changelog'
--- debian/changelog 2010-02-05 00:08:44 +0000
+++ debian/changelog 2010-02-06 00:28:12 +0000
@@ -1,9 +1,25 @@
1<<<<<<< TREE
1libindicate (0.3.0-0ubuntu1) lucid; urgency=low2libindicate (0.3.0-0ubuntu1) lucid; urgency=low
23
3 * debian/rules:4 * debian/rules:
4 - update the shlibs5 - update the shlibs
5 6
6 [ Ted Gould ]7 [ Ted Gould ]
8=======
9libindicate (0.3.1-0ubuntu1~ppa1) lucid; urgency=low
10
11 * Upstream release 0.3.1
12 * Fixing the server_display signal
13 * Reincluding the enum headers
14 * Fixing pkgconfig file to include dbusmenu-glib
15 * debian/control: Adding libdbusmenu-glib-dev as a dep
16 for the -dev package.
17
18 -- Ted Gould <ted@ubuntu.com> Fri, 05 Feb 2010 16:25:47 -0800
19
20libindicate (0.3.0-0ubuntu1~ppa1) lucid; urgency=low
21
22>>>>>>> MERGE-SOURCE
7 * Upstream 0.3.0 release23 * Upstream 0.3.0 release
8 * Fixing build of typelib file24 * Fixing build of typelib file
9 * Removing the system bus from a default bus25 * Removing the system bus from a default bus
1026
=== modified file 'libindicate/Makefile.am'
--- libindicate/Makefile.am 2010-02-04 22:37:39 +0000
+++ libindicate/Makefile.am 2010-02-06 00:28:12 +0000
@@ -46,7 +46,8 @@
46 interests.h46 interests.h
4747
48libindicateinclude_HEADERS = \48libindicateinclude_HEADERS = \
49 $(indicate_headers)49 $(indicate_headers) \
50 $(glib_enum_h)
5051
51libindicate_la_SOURCES = \52libindicate_la_SOURCES = \
52 $(indicate_headers) \53 $(indicate_headers) \
5354
=== modified file 'libindicate/indicate-enum-types.h.in'
--- libindicate/indicate-enum-types.h.in 2010-02-03 21:14:27 +0000
+++ libindicate/indicate-enum-types.h.in 2010-02-06 00:28:12 +0000
@@ -11,11 +11,12 @@
11/*** BEGIN file-tail ***/11/*** BEGIN file-tail ***/
1212
13G_END_DECLS13G_END_DECLS
14#endif /* _INDICATE_ENUM_TYPES_H_ */"14#endif /* _INDICATE_ENUM_TYPES_H_ */
15
15/*** END file-tail ***/16/*** END file-tail ***/
1617
17/*** BEGIN file-production ***/18/*** BEGIN file-production ***/
18/* enumerations from \"@filename@\" */19/* enumerations from "@filename@" */
1920
20/*** END file-production ***/21/*** END file-production ***/
2122
2223
=== modified file 'libindicate/server.c'
--- libindicate/server.c 2010-02-04 22:41:43 +0000
+++ libindicate/server.c 2010-02-06 00:28:12 +0000
@@ -271,6 +271,7 @@
271 /**271 /**
272 IndicateServer::server-display:272 IndicateServer::server-display:
273 @arg0: The #IndicateServer object273 @arg0: The #IndicateServer object
274 @arg1: Timestamp of the show event
274275
275 Emitted when a listener signals that the server itself should be276 Emitted when a listener signals that the server itself should be
276 displayed. This signal is caused by a user clicking on the application277 displayed. This signal is caused by a user clicking on the application
@@ -281,8 +282,8 @@
281 G_SIGNAL_RUN_LAST,282 G_SIGNAL_RUN_LAST,
282 G_STRUCT_OFFSET (IndicateServerClass, server_display),283 G_STRUCT_OFFSET (IndicateServerClass, server_display),
283 NULL, NULL,284 NULL, NULL,
284 g_cclosure_marshal_VOID__VOID,285 g_cclosure_marshal_VOID__UINT,
285 G_TYPE_NONE, 0);286 G_TYPE_NONE, 1, G_TYPE_UINT);
286 /**287 /**
287 IndicateServer::interest-added:288 IndicateServer::interest-added:
288 @arg0: The #IndicateServer object289 @arg0: The #IndicateServer object
@@ -1313,7 +1314,7 @@
1313show_indicator_to_user (IndicateServer * server, guint id, guint timestamp, GError ** error)1314show_indicator_to_user (IndicateServer * server, guint id, guint timestamp, GError ** error)
1314{1315{
1315 if (id == INDICATE_SERVER_INDICATOR_NULL) {1316 if (id == INDICATE_SERVER_INDICATOR_NULL) {
1316 g_signal_emit(server, signals[SERVER_DISPLAY], 0, TRUE);1317 g_signal_emit(server, signals[SERVER_DISPLAY], 0, timestamp, TRUE);
1317 return TRUE;1318 return TRUE;
1318 }1319 }
13191320
13201321
=== modified file 'libindicate/server.h'
--- libindicate/server.h 2010-02-04 22:41:43 +0000
+++ libindicate/server.h 2010-02-06 00:28:12 +0000
@@ -143,7 +143,7 @@
143 void (* indicator_modified) (IndicateServer * server, guint id, gchar * property);143 void (* indicator_modified) (IndicateServer * server, guint id, gchar * property);
144 void (* server_show) (IndicateServer * server, gchar * type);144 void (* server_show) (IndicateServer * server, gchar * type);
145 void (* server_hide) (IndicateServer * server, gchar * type);145 void (* server_hide) (IndicateServer * server, gchar * type);
146 void (* server_display) (IndicateServer * server);146 void (* server_display) (IndicateServer * server, guint timestamp);
147 void (* interest_added) (IndicateServer * server, IndicateInterests interest);147 void (* interest_added) (IndicateServer * server, IndicateInterests interest);
148 void (* interest_removed) (IndicateServer * server, IndicateInterests interest);148 void (* interest_removed) (IndicateServer * server, IndicateInterests interest);
149 void (* max_indicators_changed) (IndicateServer * server, gint max);149 void (* max_indicators_changed) (IndicateServer * server, gint max);

Subscribers

People subscribed via source and target branches

to all changes: