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

Proposed by Ted Gould
Status: Merged
Merged at revision: 297
Proposed branch: lp:~indicator-applet-developers/ubuntu/precise/indicator-applet/upstream
Merge into: lp:~ubuntu-desktop/indicator-applet/ubuntu
Diff against target: 77 lines (+25/-2)
5 files modified
ChangeLog (+14/-0)
configure (+1/-1)
configure.ac (+1/-1)
debian/changelog (+7/-0)
src/applet-main.c (+2/-0)
To merge this branch: bzr merge lp:~indicator-applet-developers/ubuntu/precise/indicator-applet/upstream
Reviewer Review Type Date Requested Status
Ken VanDine Pending
Review via email: mp+100865@code.launchpad.net

Description of the change

0.5.0

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'ChangeLog'
--- ChangeLog 2012-03-09 21:03:10 +0000
+++ ChangeLog 2012-04-04 19:56:20 +0000
@@ -1,5 +1,19 @@
1# Generated by Makefile. Do not edit.1# Generated by Makefile. Do not edit.
22
32012-04-04 Ted Gould <ted@gould.cx>
4
5 0.5.0
6
72012-04-04 Charles Kerr <charles.kerr@canonical.com>
8
9 Merge lp:~jconti/indicator-applet/fix_scroll_event to adds GDK_SCROLL_MASK to the indicator menu items when they're created.
10
11 By doing this, scroll-event signals are received on the widgets and scrolling in indicators such as indicator-sound to change the volume will work again.
12
132012-04-04 Jason Conti <jason.conti@gmail.com>
14
15 Add GDK_SCROLL_MASK to the indicator menu items so scroll-events are received.
16
32012-03-09 Ted Gould <ted@gould.cx>172012-03-09 Ted Gould <ted@gould.cx>
418
5 0.4.9219 0.4.92
620
=== modified file 'configure'
--- configure 2012-03-09 21:03:10 +0000
+++ configure 2012-04-04 19:56:20 +0000
@@ -2730,7 +2730,7 @@
27302730
2731# Define the identity of the package.2731# Define the identity of the package.
2732 PACKAGE=indicator-applet2732 PACKAGE=indicator-applet
2733 VERSION=0.4.922733 VERSION=0.5.0
27342734
27352735
2736cat >>confdefs.h <<_ACEOF2736cat >>confdefs.h <<_ACEOF
27372737
=== modified file 'configure.ac'
--- configure.ac 2012-03-09 21:03:10 +0000
+++ configure.ac 2012-04-04 19:56:20 +0000
@@ -4,7 +4,7 @@
4AC_PREREQ(2.53)4AC_PREREQ(2.53)
55
6AM_CONFIG_HEADER(config.h)6AM_CONFIG_HEADER(config.h)
7AM_INIT_AUTOMAKE(indicator-applet, 0.4.92)7AM_INIT_AUTOMAKE(indicator-applet, 0.5.0)
88
9AM_MAINTAINER_MODE9AM_MAINTAINER_MODE
10m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])10m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])
1111
=== modified file 'debian/changelog'
--- debian/changelog 2012-03-16 14:20:16 +0000
+++ debian/changelog 2012-04-04 19:56:20 +0000
@@ -1,3 +1,10 @@
1indicator-applet (0.5.0-0ubuntu1~ppa1) precise; urgency=low
2
3 * New upstream release.
4 * Fixing scroll mask (LP: #973538)
5
6 -- Ted Gould <ted@ubuntu.com> Wed, 04 Apr 2012 14:40:07 -0500
7
1indicator-applet (0.4.92-0ubuntu3) precise; urgency=low8indicator-applet (0.4.92-0ubuntu3) precise; urgency=low
29
3 * debian/indicator-applet.install:10 * debian/indicator-applet.install:
411
=== modified file 'src/applet-main.c'
--- src/applet-main.c 2012-02-23 05:48:51 +0000
+++ src/applet-main.c 2012-04-04 19:56:20 +0000
@@ -374,6 +374,8 @@
374 GtkWidget * box = (packdirection == GTK_PACK_DIRECTION_LTR) ?374 GtkWidget * box = (packdirection == GTK_PACK_DIRECTION_LTR) ?
375 gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3) : gtk_box_new(GTK_ORIENTATION_VERTICAL, 3);375 gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3) : gtk_box_new(GTK_ORIENTATION_VERTICAL, 3);
376376
377 gtk_widget_add_events(GTK_WIDGET(menuitem), GDK_SCROLL_MASK);
378
377 g_object_set_data (G_OBJECT (menuitem), MENU_DATA_BOX, box);379 g_object_set_data (G_OBJECT (menuitem), MENU_DATA_BOX, box);
378 g_object_set_data(G_OBJECT(menuitem), MENU_DATA_INDICATOR_ENTRY, entry);380 g_object_set_data(G_OBJECT(menuitem), MENU_DATA_INDICATOR_ENTRY, entry);
379 g_object_set_data(G_OBJECT(menuitem), MENU_DATA_INDICATOR_OBJECT, io);381 g_object_set_data(G_OBJECT(menuitem), MENU_DATA_INDICATOR_OBJECT, io);

Subscribers

People subscribed via source and target branches