Sun, 14 Jan 2007 18:38:40 +0000(svn r8120) -Fix (r8055): Station cargo waiting value clamp should be signed not unsigned. This resulted in cargo magically appearing...
peter1138 [Sun, 14 Jan 2007 18:38:40 +0000] rev 5660
(svn r8120) -Fix (r8055): Station cargo waiting value clamp should be signed not unsigned. This resulted in cargo magically appearing...

Sun, 14 Jan 2007 17:17:30 +0000(svn r8119) -Fix (r8101): Uninitializing windows should be called before freeing dynamic variables as windows could use those variables during cleanup (eg WE_DESTROY calling GetStation(w->window_number).
Darkvater [Sun, 14 Jan 2007 17:17:30 +0000] rev 5659
(svn r8119) -Fix (r8101): Uninitializing windows should be called before freeing dynamic variables as windows could use those variables during cleanup (eg WE_DESTROY calling GetStation(w->window_number).
-Merged UnInitializeGame with UnInitializeAirports and UnInitializeDynamicVariables

Sun, 14 Jan 2007 16:44:52 +0000(svn r8118) -Codechange: change the ordering of the network list a little:
rubidium [Sun, 14 Jan 2007 16:44:52 +0000] rev 5658
(svn r8118) -Codechange: change the ordering of the network list a little:
- servers we have information about go above servers we do not have information about.
- servers that are version compatible go above servers we are not version compatible with.
- servers we have all required NewGRFs for go above servers we miss NewGRFs for.
- unpassworded servers go above passworded servers.

Sun, 14 Jan 2007 13:21:02 +0000(svn r8117) -Fix (r8114): 'no matching operator delete found' warning on VC8
KUDr [Sun, 14 Jan 2007 13:21:02 +0000] rev 5657
(svn r8117) -Fix (r8114): 'no matching operator delete found' warning on VC8

Sun, 14 Jan 2007 13:09:17 +0000(svn r8116) Undo r8113
tron [Sun, 14 Jan 2007 13:09:17 +0000] rev 5656
(svn r8116) Undo r8113

Sun, 14 Jan 2007 08:37:16 +0000(svn r8114) Allocate struct GRFText in the C++ way
tron [Sun, 14 Jan 2007 08:37:16 +0000] rev 5655
(svn r8114) Allocate struct GRFText in the C++ way

Sun, 14 Jan 2007 08:34:38 +0000(svn r8113) Fix the #include path to table/strings.h
tron [Sun, 14 Jan 2007 08:34:38 +0000] rev 5654
(svn r8113) Fix the #include path to table/strings.h

Sun, 14 Jan 2007 01:27:19 +0000(svn r8112) -Codechange: MSVC solution files will now make it so that openttd will be THE startup project.
belugas [Sun, 14 Jan 2007 01:27:19 +0000] rev 5653
(svn r8112) -Codechange: MSVC solution files will now make it so that openttd will be THE startup project.
Take note that it will only be the case on a clean checkout, without any other files than those coming from that checkout.

Sat, 13 Jan 2007 21:28:46 +0000(svn r8111) -Fix r8106: silence warnings
glx [Sat, 13 Jan 2007 21:28:46 +0000] rev 5652
(svn r8111) -Fix r8106: silence warnings

Sat, 13 Jan 2007 18:55:54 +0000(svn r8110) -Codechange: direct Vehicle::current_order.type changes (to OT_LOADING and OT_LEAVESTATION) replaced by v->BeginLoading() and v->LeaveStation() calls. This should allow easy hooking of those state transitions in order to maintain vehicle loading queue.
KUDr [Sat, 13 Jan 2007 18:55:54 +0000] rev 5651
(svn r8110) -Codechange: direct Vehicle::current_order.type changes (to OT_LOADING and OT_LEAVESTATION) replaced by v->BeginLoading() and v->LeaveStation() calls. This should allow easy hooking of those state transitions in order to maintain vehicle loading queue.