Hello, in my opinion, there is now evidence of the most urgent things that should be patched in 0.44.1. For every except one of these (gcc-4.2) there is a patch in the tracker. Maybe some are not urgent or safe enough for stable, so I ask mental to review the following:
- compile failure with gcc-4.2.x (working with submitter) - 1510462 crash bug 1509854 (maybe unsafe, untested) - 1512200 ODG export problem (by ishmal) - 1513113 OSX problems when space in path (by mwybrow) - 1498946 PNG export now saves resolution (deemed safe by me) ----------------------------------------------------------- - 1509634 Full en_GB translation - 1512096 Slovak strings for Windoze installer - 1509834 Polish strings for Windoze installer - 1507788 Vietnamese strings for Windoze installer - 1509842 French update to keys and other svgs - 1509828 German update to translation - 1509487 Spanish update to translation
Already fixed in stable head (and added to 0.44 Release Notes) is:
* fix a crash on Windows ("python.exe can't find msvcrt71.dll") by providing that dll in the package; * added missing German version of the advanced tutorial and made corrections to the calligraphy one; added missing Czech, German, and Brazil-Portuguese tutorials to tarball; * several changes to allow compiling on glib-2.4 systems (e.g. RHEL4);
Please decide which to reject,
Regards, ralf
- compile failure with gcc-4.2.x (working with submitter)
the only change for this was the following patch. is it safe for stable?
Index: ui/widget/selected-style.cpp =================================================================== --- ui/widget/selected-style.cpp (revision 12509) +++ ui/widget/selected-style.cpp (working copy) @@ -109,11 +109,12 @@
_sw_unit(NULL),
- _tooltips (), + _tooltips ()
- _drop((void*[]){0,0}), - _dropEnabled((bool[]){false, false}) { + _drop[0] = _drop[1] = 0; + _dropEnabled[0] = _dropEnabled[1] = false; + _fill_label.set_alignment(0.0, 0.5); _fill_label.set_padding(0, 0); _stroke_label.set_alignment(0.0, 0.5);
participants (1)
-
Ralf Stephan