r44019 - in /desktop/unstable/gnome-mines/debian: changelog control patches/ patches/01_custom_size.patch patches/series

joss at users.alioth.debian.org joss at users.alioth.debian.org
Fri Dec 5 17:33:38 UTC 2014


Author: joss
Date: Fri Dec  5 17:33:38 2014
New Revision: 44019

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=44019
Log:
01_custom_size.patch: patch from upstream git. Allow to configure 
the custom size settings.

Added:
    desktop/unstable/gnome-mines/debian/patches/
    desktop/unstable/gnome-mines/debian/patches/01_custom_size.patch
    desktop/unstable/gnome-mines/debian/patches/series
Modified:
    desktop/unstable/gnome-mines/debian/changelog
    desktop/unstable/gnome-mines/debian/control

Modified: desktop/unstable/gnome-mines/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-mines/debian/changelog?rev=44019&op=diff
==============================================================================
--- desktop/unstable/gnome-mines/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gnome-mines/debian/changelog	[utf-8] Fri Dec  5 17:33:38 2014
@@ -1,3 +1,10 @@
+gnome-mines (1:3.14.1-2) unstable; urgency=medium
+
+  * 01_custom_size.patch: patch from upstream git. Allow to configure 
+    the custom size settings.
+
+ -- Josselin Mouette <joss at debian.org>  Fri, 05 Dec 2014 18:28:26 +0100
+
 gnome-mines (1:3.14.1-1) unstable; urgency=medium
 
   * New upstream release.

Modified: desktop/unstable/gnome-mines/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-mines/debian/control?rev=44019&op=diff
==============================================================================
--- desktop/unstable/gnome-mines/debian/control	[utf-8] (original)
+++ desktop/unstable/gnome-mines/debian/control	[utf-8] Fri Dec  5 17:33:38 2014
@@ -6,7 +6,7 @@
 Section: games
 Priority: optional
 Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>
-Uploaders: Andreas Henriksson <andreas at fatal.se>, Emilio Pozuelo Monfort <pochu at debian.org>, Julien Cristau <jcristau at debian.org>, Luca Falavigna <dktrkranz at debian.org>, Michael Biebl <biebl at debian.org>
+Uploaders: Andreas Henriksson <andreas at fatal.se>, Emilio Pozuelo Monfort <pochu at debian.org>, Josselin Mouette <joss at debian.org>, Julien Cristau <jcristau at debian.org>, Luca Falavigna <dktrkranz at debian.org>, Michael Biebl <biebl at debian.org>
 Build-Depends: debhelper (>= 9),
                dh-autoreconf,
                gnome-common,

Added: desktop/unstable/gnome-mines/debian/patches/01_custom_size.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-mines/debian/patches/01_custom_size.patch?rev=44019&op=file
==============================================================================
--- desktop/unstable/gnome-mines/debian/patches/01_custom_size.patch	(added)
+++ desktop/unstable/gnome-mines/debian/patches/01_custom_size.patch	[utf-8] Fri Dec  5 17:33:38 2014
@@ -0,0 +1,32 @@
+From b90f16ec65aad39467494510a333f9bc41a4a784 Mon Sep 17 00:00:00 2001
+From: Robert Roth <robert.roth.off at gmail.com>
+Date: Thu, 16 Oct 2014 20:00:00 +0300
+Subject: Fixed custom size entry (bgo #738607)
+
+
+diff --git a/src/gnome-mines.vala b/src/gnome-mines.vala
+index 4f55426..90bd53d 100644
+--- a/src/gnome-mines.vala
++++ b/src/gnome-mines.vala
+@@ -284,15 +284,18 @@ public class Mines : Gtk.Application
+         var field_width_entry = (Gtk.SpinButton) builder.get_object ("width_spin_btn");
+         field_width_entry.set_range (XSIZE_MIN, XSIZE_MAX);
+         field_width_entry.value_changed.connect (xsize_spin_cb);
++        field_width_entry.set_increments (1, 1);
+         field_width_entry.set_value (settings.get_int (KEY_XSIZE));
+ 
+         var field_height_entry = (Gtk.SpinButton) builder.get_object ("height_spin_btn");
+         field_height_entry.set_range (YSIZE_MIN, YSIZE_MAX);
+         field_height_entry.value_changed.connect (ysize_spin_cb);
++        field_height_entry.set_increments (1, 1);
+         field_height_entry.set_value (settings.get_int (KEY_YSIZE));
+ 
+         mines_spin = (Gtk.SpinButton) builder.get_object ("mines_spin_btn");
+         mines_spin.set_range (1, 100);
++        mines_spin.set_increments (1, 1);
+         mines_spin.value_changed.connect (mines_spin_cb);
+         set_mines_limit ();
+ 
+-- 
+cgit v0.10.1
+

Added: desktop/unstable/gnome-mines/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-mines/debian/patches/series?rev=44019&op=file
==============================================================================
--- desktop/unstable/gnome-mines/debian/patches/series	(added)
+++ desktop/unstable/gnome-mines/debian/patches/series	[utf-8] Fri Dec  5 17:33:38 2014
@@ -0,0 +1,2 @@
+01_custom_size.patch
+




More information about the pkg-gnome-commits mailing list