On Saturday, 12 September 2009 at 15:51, Per Inge Mathisen wrote: > I'm quite sure that not all bugs are fixed, but the amount of bug > fixes in 2.2.3 is large enough to warrant a new release, unless anyone > is actively working on an important fix that we should add first.
I wanted to look through the bugtracker soon, but maybe not this weekend. Maybe ping me on IRC tomorrow. A short look gives at least http://developer.wz2100.net/ticket/907, and some crash bugs we might want to look into, also I think several reports of crossplatform networking incompatibilities, and some Mac reports that might indicate a broken build or something. Also, I'd like to have debug output enabled on Windows and Mac OS by default, so we can tell people to just upload the file instead of fiddling with command line parameters. I have attached a patch that might do this, since I have none of those systems, I cannot test this, though (maybe disabling some options that spam too much might be required as well). And maybe we could make the Windows installer default to the high quality sequences. Oh, and speaking of the installer, why is the language/font question a separate annoying dialog box, and not just a checkbox? Oh, and yet another thing: Pabs said that CC-by-2.0 is not free enough for Debian, so they have to replace data/base/texpages/page-25-sky-urban.png - I've made a ticket for that now, http://developer.wz2100.net/ticket/922.
diff --git a/src/clparse.c b/src/clparse.c index 38ad73b..55e3fb4 100644 --- a/src/clparse.c +++ b/src/clparse.c @@ -167,9 +167,9 @@ bool ParseCommandLineEarly(int argc, const char** argv) poptContext poptCon = poptGetContext(NULL, argc, argv, getOptionsTable(), 0); int iOption; -#if defined(WZ_OS_MAC) && defined(DEBUG) +#if defined(WZ_OS_MAC) || defined(WZ_OS_WIN) debug_enable_switch( "all" ); -#endif /* WZ_OS_MAC && DEBUG */ +#endif /* loop through command line */ while ((iOption = poptGetNextOpt(poptCon)) > 0 || iOption == POPT_ERROR_BADOPT)
_______________________________________________ Warzone-dev mailing list [email protected] https://mail.gna.org/listinfo/warzone-dev
