[Pkg-xfce-commits] r8479 - in /goodies/trunk/xfce4-timer-plugin/debian: changelog patches/01_improve-timer-stop.patch patches/02_fix-format-string.patch

Jackson Doak noskcaj-guest at moszumanska.debian.org
Tue Jun 24 21:42:51 UTC 2014


Author: noskcaj-guest
Date: Tue Jun 24 21:42:51 2014
New Revision: 8479

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8479
Log:
* New upstream release
* Refresh patches

Modified:
    goodies/trunk/xfce4-timer-plugin/debian/changelog
    goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch
    goodies/trunk/xfce4-timer-plugin/debian/patches/02_fix-format-string.patch

Modified: goodies/trunk/xfce4-timer-plugin/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-timer-plugin/debian/changelog?rev=8479&op=diff
==============================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/changelog	(original)
+++ goodies/trunk/xfce4-timer-plugin/debian/changelog	Tue Jun 24 21:42:51 2014
@@ -1,8 +1,13 @@
-xfce4-timer-plugin (1.5.0-2) UNRELEASED; urgency=low
+xfce4-timer-plugin (1.6.0-1) UNRELEASED; urgency=low
 
+  [ Evgeni Golov ]
   * Correct Vcs-* URLs to point to anonscm.debian.org
 
- -- Evgeni Golov <evgeni at debian.org>  Mon, 15 Jul 2013 21:57:44 +0200
+  [ Jackson Doak ]
+  * New upstream release
+  * Refresh patches
+
+ -- Jackson Doak <noskcaj at ubuntu.com>  Wed, 25 Jun 2014 07:30:29 +1000
 
 xfce4-timer-plugin (1.5.0-1) unstable; urgency=low
 

Modified: goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch?rev=8479&op=diff
==============================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch	(original)
+++ goodies/trunk/xfce4-timer-plugin/debian/patches/01_improve-timer-stop.patch	Tue Jun 24 21:42:51 2014
@@ -1,11 +1,15 @@
+---
+ src/xfcetimer.c |    2 ++
+ 1 file changed, 2 insertions(+)
+
 --- a/src/xfcetimer.c
 +++ b/src/xfcetimer.c
-@@ -162,6 +162,8 @@ static gboolean update_function (gpointe
+@@ -167,6 +167,8 @@ static gboolean update_function (gpointe
    }
  
    /* Countdown is over, stop timer and free resources */
 +  g_snprintf(tiptext,31,_("%ds left"),0);
 +  gtk_tooltips_set_tip(pd->tip,GTK_WIDGET(pd->base),tiptext,NULL);
  
-   if( (strlen(pd->timeout_command)==0) || !pd->nowin_if_alarm ) {
-     gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(pd->pbar),1);
+   if(pd->timer)
+      g_timer_destroy(pd->timer);

Modified: goodies/trunk/xfce4-timer-plugin/debian/patches/02_fix-format-string.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-timer-plugin/debian/patches/02_fix-format-string.patch?rev=8479&op=diff
==============================================================================
--- goodies/trunk/xfce4-timer-plugin/debian/patches/02_fix-format-string.patch	(original)
+++ goodies/trunk/xfce4-timer-plugin/debian/patches/02_fix-format-string.patch	Tue Jun 24 21:42:51 2014
@@ -1,13 +1,18 @@
 Author: Yves-Alexis Perez <corsac at debian.org>
 Description: Fix format string issue
 Forwarded: https://bugzilla.xfce.org/show_bug.cgi?id=10110
+---
+ src/xfcetimer.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
 --- a/src/xfcetimer.c
 +++ b/src/xfcetimer.c
-@@ -175,6 +175,7 @@ static gboolean update_function (gpointe
-                                     GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL,
+@@ -192,7 +192,7 @@ static gboolean update_function (gpointe
+ 
+     dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
                                      GTK_MESSAGE_WARNING,
-                                     GTK_BUTTONS_CLOSE,
-+                                    "%s",
-                                     dialog_message);
- 
-     g_signal_connect_swapped (dialog, "response",
+-                                    GTK_BUTTONS_NONE, dialog_message);
++                                    GTK_BUTTONS_NONE, "%s",dialog_message);
+                            
+     gtk_window_set_title ((GtkWindow *) dialog, dialog_title);                                    
+  




More information about the Pkg-xfce-commits mailing list