~ubuntu-branches/ubuntu/trusty/gnomeradio/trusty

« back to all changes in this revision

Viewing changes to debian/patches/gnomeradio-gtk_stock.patch

  • Committer: Package Import Robot
  • Author(s): POJAR GEORGE
  • Date: 2013-09-20 13:31:33 UTC
  • Revision ID: package-import@ubuntu.com-20130920133133-otwactksfjh4bwev
Tags: 1.8-2ubuntu23
* Updated debian/patches/gnomeradio-tray_menu.patch:
  - Fixed menu item not update conform new order when we use move up[down]
    swap. (LP: #1232931)
  - Fixed conditional jump or move depends on uninitialized value.
  - Added function to switch to preset in settings preset list when changed
    them from tray menu.
  - Cleaned up the files relating to the tray icon. Neither gui.c, prefs.c nor
    record.c touch the internals of trayicon.c anymore.
* Updated debian/patches/gnomeradio-preferences.patch:
  - Added option to disable audio loopback mode in Preferences settings.
  - Moved in separate GOptionGroup all command line parameters which refers to
    audio loopback mode.
* Updated debian/patches/gnomeradio-device.patch: Not need radio_mute() when
  exit or session die, already is called in radio_stop().
* Updated debian/patches/gnomeradio-station_list.patch: Fixed pointer targets
  in passing argument differ in signedness.
* Removed the content against configure and Makefile.in, since we use
  autoreconf anyways, from:
  - debian/patches/gnomeradio-gstreamer-1.0.patch.
  - debian/patches/gnomeradio-volume_button.patch.
* Updated debian/patches/gnomeradio-volume_button.patch: Removed unused
  vol_down[up].xpm icons.
* debian/gnomeradio.1: Updated man page.   

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
Author: POJAR GEORGE <geoubuntu@gmail.com>
3
3
Index: gnomeradio-1.8/src/trayicon.c
4
4
===================================================================
5
 
--- gnomeradio-1.8.orig/src/trayicon.c  2013-09-24 15:38:51.627403209 +0000
6
 
+++ gnomeradio-1.8/src/trayicon.c       2013-09-24 15:38:51.623403209 +0000
 
5
--- gnomeradio-1.8.orig/src/trayicon.c  2013-09-26 13:30:39.062430202 +0000
 
6
+++ gnomeradio-1.8/src/trayicon.c       2013-09-26 13:30:39.054430203 +0000
7
7
@@ -65,6 +65,7 @@
8
8
 }
9
9
 
66
66
         gtk_status_icon_set_tooltip_text(GTK_STATUS_ICON(tray_icon), text);
67
67
Index: gnomeradio-1.8/src/record.c
68
68
===================================================================
69
 
--- gnomeradio-1.8.orig/src/record.c    2013-09-24 15:38:51.627403209 +0000
70
 
+++ gnomeradio-1.8/src/record.c 2013-09-24 15:38:51.623403209 +0000
 
69
--- gnomeradio-1.8.orig/src/record.c    2013-09-26 13:30:39.062430202 +0000
 
70
+++ gnomeradio-1.8/src/record.c 2013-09-26 13:30:39.054430203 +0000
71
71
@@ -203,15 +203,14 @@
72
72
 
73
73
 GtkWidget* record_status_window(Recording *recording)
228
228
        gtk_window_set_position(GTK_WINDOW(status_dialog), GTK_WIN_POS_CENTER);
229
229
Index: gnomeradio-1.8/src/prefs.c
230
230
===================================================================
231
 
--- gnomeradio-1.8.orig/src/prefs.c     2013-09-24 15:38:51.627403209 +0000
232
 
+++ gnomeradio-1.8/src/prefs.c  2013-09-24 15:38:51.623403209 +0000
 
231
--- gnomeradio-1.8.orig/src/prefs.c     2013-09-26 13:30:39.062430202 +0000
 
232
+++ gnomeradio-1.8/src/prefs.c  2013-09-26 13:30:39.054430203 +0000
233
233
@@ -38,14 +38,19 @@
234
234
 
235
235
 extern gboolean main_visible;
577
577
        gtk_widget_set_tooltip_text(audio_profile_combo, _("Choose the format that should be used for recording."));
578
578
Index: gnomeradio-1.8/src/gui.c
579
579
===================================================================
580
 
--- gnomeradio-1.8.orig/src/gui.c       2013-09-24 15:38:51.627403209 +0000
581
 
+++ gnomeradio-1.8/src/gui.c    2013-09-24 15:38:51.623403209 +0000
 
580
--- gnomeradio-1.8.orig/src/gui.c       2013-09-26 13:30:39.062430202 +0000
 
581
+++ gnomeradio-1.8/src/gui.c    2013-09-26 13:30:39.058430203 +0000
582
582
@@ -158,29 +158,33 @@
583
583
 static void initial_frequency_scan(GtkWidget *app)
584
584
 {
630
630
        
631
631
        gtk_widget_show_all(data.dialog);
632
632
        
633
 
@@ -470,7 +474,7 @@
 
633
@@ -469,7 +473,7 @@
634
634
        else
635
635
                buffer = g_strdup_printf(_("Gnomeradio - %.2f MHz"), freq);
636
636
        gtk_window_set_title(GTK_WINDOW(window), buffer);
639
639
        g_free(buffer);
640
640
        
641
641
        buffer = g_strdup_printf(_("Frequency: %.2f MHz"), freq);
642
 
@@ -975,194 +979,180 @@
 
642
@@ -974,194 +978,180 @@
643
643
 GtkWidget* gnome_radio_gui(void)
644
644
 {
645
645
        GtkWidget *app;
993
993
 
994
994
        gtk_container_add (GTK_CONTAINER (app), vbox);
995
995
        gtk_widget_show_all (vbox);
996
 
@@ -1490,15 +1480,15 @@
 
996
@@ -1488,15 +1478,15 @@
997
997
        connection = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error);
998
998
 
999
999
        if (error) {