summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-12-07(svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight ↵skidd13
cleanup there
2007-12-06(svn r11584) -Change: add some extra checking in the hope to find the cause ↵rubidium
of FS#1482.
2007-12-06(svn r11583) -Fix [FS#1484]: windows could get completely missing when one ↵rubidium
resized the window to something very small.
2007-12-06(svn r11582) -Fix: tiles were not marked dirty in some cases when removing a ↵smatz
lock
2007-12-06(svn r11581) -Codechange: add some missing cargo classes and some documentation.rubidium
2007-12-06(svn r11580) -Feature: Memorise the resizing of the build bridge selection ↵skidd13
window during runtime
2007-12-06(svn r11579) -Revert(r11578): some cases of key propagation are not handled ↵belugas
correctly. A better solution will be deviced, but not now. Let's not cause a ton of bug reports
2007-12-06(svn r11578) -Codechange: Introduce the window default flag WDF_TEXTENTRY ↵belugas
which specifies that the window holding it is actually one that enables an edit box. Use this flag when dispatching a key event instead of using some hard coded window IDs. This should ease a little bit the creation of new edit aware windows.
2007-12-05(svn r11577) -Fix: invalidate 'list trains/roadvehs/ships/planes' widgets ↵smatz
when station part is added/removed
2007-12-05(svn r11576) -Codechange: enumerize and comment station GUIsmatz
2007-12-05(svn r11575) -Fix [FS#1502]: widget numbers of StationViewWindow were ↵smatz
incorrect at some places
2007-12-05(svn r11574) -Fix: flood train stations when there are no trains on border ↵smatz
tiles too (when non-uniform stations are OFF)
2007-12-04(svn r11573) -Codechange: pause games that miss GRFs by default and throw ↵rubidium
some warnings and disclaimers when you want to unpause it.
2007-12-04(svn r11572) -Fix [FS#1494]: reinitialise windows system before loading a ↵glx
savegame
2007-12-04(svn r11571) -Fix [FS#1493]: road vehicle getting to the wrong side of a ↵rubidium
station when trying to overtake in there.
2007-12-04(svn r11570) -Fix: do not flood rail station tiles when there is a vehicle ↵smatz
on it (when non-uniform stations are ON)
2007-12-04(svn r11569) -Fix [FS#1480]: full paths sometimes did not work correctly.rubidium
2007-12-04(svn r11568) -Codechange: Use bit shifts instead of values for flags. It ↵belugas
helps readability a little bit.
2007-12-04(svn r11567) -Fix [FS#1512] (r11011): break the chain before moving a ↵glx
vehicle after another in the same chain
2007-12-03(svn r11565) -Revert: part of r11564smatz
2007-12-03(svn r11564) -Codechange: Increase the usage of the for_each_bit macro and ↵skidd13
rename it fitting to the naming style
2007-12-02(svn r11563) -Codechange: Align the preprocessor code in stdafx.h with tabsskidd13
2007-12-02(svn r11562) -Fix [FS#1503] (r11546): aircraft sometimes stopped mid-air ↵rubidium
when the airport got destroyed.
2007-12-02(svn r11561) -Fix [FS#1504] (r11463): group list was not updated when ↵glx
removing the last group
2007-12-02(svn r11560) -Codechange: replace 'custom' version of FindLastBit with the ↵rubidium
generic.
2007-12-02(svn r11559) -Fix [FS#1505]: overflow when drawing graphics with high ↵rubidium
company values.
2007-12-02(svn r11557) -Codechange: send and store the passwords a little more secure ↵rubidium
to/in the servers. Each server and game yield a (usually) different 'salt'. This salt is used by the clients to hash their passwords. This way the passwords are not sent in clear text and it is not trivial to use those hashes on other servers. NOTE: It is still NOT safe to use your trusted passwords and it will not stop people from being able to 'hijack' your password, it only makes it harder to do and certainly much less trivial than just dumping passwords from the memory.
2007-12-02(svn r11556) -Feature: allow setting a default password for new companies in ↵rubidium
network games.
2007-12-02(svn r11555) -Codechange: use the new members introduced in r11551.rubidium
2007-12-02(svn r11554) -Codechange: be more consistent with the naming of the widget ↵rubidium
functions.
2007-12-02(svn r11553) -Fix: make a few widget 'accessor' function const when they ↵rubidium
should be const.
2007-12-02(svn r11552) -Update: WebTranslator2 update to 2007-12-02 12:31:46miham
czech - 1 fixed by Hadez (1) french - 15 fixed by glx (15) galician - 2 fixed by Condex (2) italian - 15 fixed by lorenzodv (15) norwegian_bokmal - 6 fixed by jhsoby (6) russian - 7 fixed by Smoky555 (7) slovenian - 1 fixed by Necrolyte (1) spanish - 1 fixed by eusebio (1)
2007-12-02(svn r11551) -Codechange: Introduction of widget control members on struct ↵belugas
Window. These "new" members have the exact same functionalities as their pure functions "genitors" Ex: "Window::SetWidgetLoweredState(byte widget_index, bool lowered_stat)" is the member corresponding to "SetWindowWidgetLoweredState(Window *w, byte widget_index, bool lowered_stat)"
2007-12-02(svn r11550) -Fix (r11547): Updated the data files regarding to r11549skidd13
2007-12-01(svn r11547) -Add: signal selection GUI for the ones that really like to use ↵rubidium
that over CTRL. Patch by BigBB.
2007-12-01(svn r11546) -Fix[FS#1496]: If ever the air/heli port is suddenly not ↵belugas
available while the "chopper" is descending, just go back into flying. The code should have been better written, but in respect of newgrf_port branch, i prefer minimalist intervention
2007-12-01(svn r11545) -Revert(r11543): The result is not what was expected. Looks ↵belugas
like more work might be needed
2007-12-01(svn r11544) -Fix [FS#1501]: revert r11453 as it translated cargo when it ↵glx
should not
2007-12-01(svn r11543) -Codechange: Give a more adequate message when trying to place ↵belugas
an industry required to be built over a house on any other type of tiles. In reference to FS#1492, and other "bugs" like that one
2007-11-30(svn r11542) -Fix r11540: [OSX] presumed 10.3 style strings when using ↵bjarni
GetCurrentLocale nomatter what OSX the target was
2007-11-30(svn r11541) -Fix: [OSX] detect statvfs at runtime (based on OSX version) ↵bjarni
instead of compile time This should prevent a crash on OSX 10.3 with the precompiled binaries (in the load/save windows)
2007-11-30(svn r11540) -Fix: [OSX] Don't try to compile the quartz video driver on OSX ↵bjarni
10.3. It will fail
2007-11-29(svn r11539) -Feature: Make the bridge selection window resizableskidd13
2007-11-28(svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way ↵skidd13
and add its documentation
2007-11-28(svn r11537) -Codechange: make it much harder to 'accidentally' add savegame ↵rubidium
conversion code after the window and cache initializations.
2007-11-28(svn r11536) -Codechange: Align some elements of the _tree_layout_sprite ↵belugas
table a little better looking for the eye
2007-11-27(svn r11535) -Update: WebTranslator2 update to 2007-11-27 20:21:42miham
ukrainian - 1 fixed by mad (1)
2007-11-27(svn r11534) -Feature(newgrf): Implement property 23h for Industries.belugas
This will add a cost to the removal of an industry using the cheat magic bulldozer. Note that the removal of regular or newgrf industries without specified removal cost will have no cost applied to. This is a difference from original spec, where a default base cost is added.
2007-11-27(svn r11533) -Codechange: Rename some unclear clear_x prices member names.belugas
While at it, remove one unused entry on the clear_price_table array. It is based on ground type, and the unused one was referencing a non existing one.
2007-11-27(svn r11532) -Feature[newgrf]: Add decrement(0x0D) / increment(0x0E) ↵belugas
production operations from result of production callback cb29/35. Only var 0x93 will be affected by these operations