Codebase list gnumeric / 441a8bf
New upstream release [1.12.9] + changelog summary. Dmitry Smirnov 10 years ago
4 changed file(s) with 11 addition(s) and 24 deletion(s). Raw diff Collapse all Expand all
0 gnumeric (1.12.9-1) unstable; urgency=medium
1
2 * New upstream release [November 2013].
3 - removed "721520.patch".
4 * Build-Depends: "libgoffice-0.10-dev (>= 0.10.9)".
5 * Ship all sample .gnumeric files in -doc package;
6 install compatibility symlink "/usr/share/doc/gnumeric/samples".
7
8 -- Dmitry Smirnov <onlyjob@debian.org> Mon, 16 Dec 2013 13:11:42 +1100
9
010 gnumeric (1.12.6-2) unstable; urgency=low
111
212 * New backported patch to fix crash when opening some files
1111 ,libart-2.0-dev
1212 ,libglib2.0-dev (>= 2.28.0)
1313 ,libgirepository1.0-dev
14 ,libgoffice-0.10-dev (>= 0.10.3)
14 ,libgoffice-0.10-dev (>= 0.10.9)
1515 ,libgsf-1-dev (>= 1.14.24)
1616 ,libgtk-3-dev
1717 ,libpango1.0-dev
+0
-22
debian/patches/721520.patch less more
0 Last-Update: 2013-09-02
1 Forwarded: not-needed
2 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=721520
3 Bug-Gnumeric: https://bugzilla.gnome.org/show_bug.cgi?id=707047
4 Origin: upstream,https://git.gnome.org/browse/gnumeric/diff/?id=a69c57d6ff4fbe58178edc125f4736aa1c796c3e
5 Author: Dmitry Smirnov <onlyjob@member.fsf.org>
6 Description: fix crash with split pane.
7
8 --- a/src/sheet-control-gui.c
9 +++ b/src/sheet-control-gui.c
10 @@ -3701,9 +3701,10 @@
11
12 for (i = 0; i < scg->active_panes; i++) {
13 GnmPane *pane = scg->pane[i];
14
15 - if (pane->first.col <= pos->col &&
16 + if (pane &&
17 + pane->first.col <= pos->col &&
18 pane->first.row <= pos->row &&
19 pane->last_visible.col >= pos->col &&
20 pane->last_visible.row >= pos->row)
21 return pane;
0 721520.patch
10 automake_1.13.2.patch
21 no-nested-externs-error.patch