peter1138 [Wed, 28 Dec 2005 09:29:00 +0000] rev 2802
(svn r3350) Fix widget glitch in player ship window (missed in r1379)
peter1138 [Wed, 28 Dec 2005 08:39:43 +0000] rev 2801
(svn r3349) Fix off-by-one error in drawing matrix widget, from r3181.
tron [Tue, 27 Dec 2005 22:55:24 +0000] rev 2800
(svn r3348) Dependency checking didn't include all compile parameters, which lead to wrong results
tron [Tue, 27 Dec 2005 20:44:42 +0000] rev 2799
(svn r3347) Plug a memory leak (Found by Valgrind using Truelight ... or was it the other way round?)
peter1138 [Tue, 27 Dec 2005 16:37:50 +0000] rev 2798
(svn r3346) - Increase size of aircraft refit window by one item; fixes "[ 1387477 ] Can't refit aircraft to carry Fizzy Drinks"
tron [Mon, 26 Dec 2005 18:24:01 +0000] rev 2797
(svn r3345) Remove untranslated strings
tron [Mon, 26 Dec 2005 18:22:34 +0000] rev 2796
(svn r3344) Small fixes for the Danish (Thanks to Bjarni) and Dutch (Thanks to Truelight) translation
peter1138 [Mon, 26 Dec 2005 15:41:24 +0000] rev 2795
(svn r3343) Fix calculation of available rail types where all engines of a particular type are obsolete.
tron [Sun, 25 Dec 2005 19:44:23 +0000] rev 2794
(svn r3342) Remove some cruft
truelight [Sun, 25 Dec 2005 15:05:59 +0000] rev 2793
(svn r3341) -Codechange: make mingw32 happy, and renamed Rectangle, because it already exists on that platform
tron [Sun, 25 Dec 2005 09:19:16 +0000] rev 2792
(svn r3340) Fix dependency calculation: dependencies didn't get recalculated if a header file changed
Also really automagically create the dependency directories by deriving the directory names from $(DEPS)
tron [Sat, 24 Dec 2005 20:54:31 +0000] rev 2791
(svn r3339) Remove unnecessary includes
tron [Sat, 24 Dec 2005 20:53:02 +0000] rev 2790
(svn r3338) Wrong file in last commit
tron [Sat, 24 Dec 2005 20:51:21 +0000] rev 2789
(svn r3337) Remove an unused variable and add 2 times static
tron [Sat, 24 Dec 2005 15:01:17 +0000] rev 2788
(svn r3336) byte -> WindowClass, uint16 -> WindowNumber
miham [Sat, 24 Dec 2005 13:22:38 +0000] rev 2787
(svn r3335) [Translations] Moved estonian to ready
tron [Sat, 24 Dec 2005 12:47:51 +0000] rev 2786
(svn r3334) Remove 2 unused window classes
tron [Sat, 24 Dec 2005 12:47:31 +0000] rev 2785
(svn r3333) Remove some the unimplemented option DISPLAY_WARNINGS from the config writer
tron [Sat, 24 Dec 2005 12:16:56 +0000] rev 2784
(svn r3332) Fix r3317, a few things got messed up in the translator system
tron [Sat, 24 Dec 2005 10:16:34 +0000] rev 2783
(svn r3331) CMD_PLACE_SIGN doesn't use p1, so don't pass anything seemingly meaningful
matthijs [Wed, 21 Dec 2005 13:53:44 +0000] rev 2782
(svn r3329) - Doc: Some documentation cleanups.
- Add: TracksOverlap() (from the map branch), TrackdirBitsToTrackBits(), DiagdirReachesTrackdirs(), DiagdirReachesTracks().
- Fix: Infinite loop in the pathfinder introduces in r3321.
Darkvater [Wed, 21 Dec 2005 01:43:26 +0000] rev 2781
(svn r3328) - Fix: [ 1352739 ] landscape_grid.html showing wrong bit usage (belugas)
Darkvater [Wed, 21 Dec 2005 01:40:41 +0000] rev 2780
(svn r3327) - Fix: [ 1373581 ] landscape.html documentation. Railway types are stored in m3, not m4. According to the mask (RAILTYPE_MASK), this is should be 0..1 but 0..3 are actually reserved. (egladil)
Darkvater [Wed, 21 Dec 2005 01:19:03 +0000] rev 2779
(svn r3326) - Fix: [ 1226832 ] Build fails if SDL is built without pthread support (dst)
Darkvater [Wed, 21 Dec 2005 01:14:01 +0000] rev 2778
(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.
Darkvater [Tue, 20 Dec 2005 21:59:34 +0000] rev 2777
(svn r3324) - Codechange: set native eol-style on missing files not yet set so
Darkvater [Tue, 20 Dec 2005 21:24:50 +0000] rev 2776
(svn r3323) - Fix: automatically enable new AI when turning on the AI in multiplayer feature (it only works that way and we all know users don't read).
Darkvater [Tue, 20 Dec 2005 20:52:05 +0000] rev 2775
(svn r3322) - Fix: Network window crash when it receives invalid information for example from the integrated nightly, so validate the network-input when it is received
- CodeChange: added str_validate(char *str) function that checks if a string contains only printable characters and if not, replaces those characters by question marks. Also move IsValidAsciiChar() to string.h
matthijs [Tue, 20 Dec 2005 00:50:16 +0000] rev 2774
(svn r3321) - Fix: A wrong use of the map m5 bits, where a previously calculated "bits" variable should have been used. This resulted in the pathfinder imagining junctions, which negatively affects performance somewhat (Darkvater).
- Fix: [ 1346377 ] Limiting the "depth" of the search tree fixes this assert.
Though the above fix seems to fix this bug too, it will only make it less likely to occur. The problem here was the StackedItem::depth field overflowing, which made the pathfinder think it was at the first tile again. Adding an explicit overflow check should fix this.
Darkvater [Mon, 19 Dec 2005 00:19:12 +0000] rev 2773
(svn r3320) - Fix: FS#22 - Exiting with double size enabled saves wrong window size. Reset the window size to its true size upon exiting when double-size is active. Is set in ClientSizeChanged.