summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-06-19(svn r5316) WebTranslator2 update to 2006-06-19 19:40:09miham
estonian - 4 fixed by t2t2 (4) hungarian - 1 fixed by miham (1)
2006-06-19(svn r5315) -Fix: Prohibit altering a road tile while road works are in progresstron
This fixes some glitches like "turning" the excavation by adding/removing road bits or removing the road piece
2006-06-19(svn r5314) -Regression: When road works started on a road tile with barren ↵tron
roadside the road side turned into trees (caused by r4258)
2006-06-19(svn r5313) Move IsRailWaypoint() to rail_map.h and remove unused enumtron
2006-06-19(svn r5312) - Fix (r5288): Be very strict about terraforming. If a rail tile ↵Darkvater
has a foundation already, bail out.
2006-06-18(svn r5310) WebTranslator2 update to 2006-06-18 21:00:21miham
afrikaans - 116 fixed, 2 changed by TrueTenacity (118) portuguese - 13 fixed by supra90 (13)
2006-06-18(svn r5309) Partially fix the rail header dependency fiasco: rail_map.h now ↵tron
depends on rail.h and not the other way round anymore
2006-06-18(svn r5308) Replace an array of function pointers with a switch: It's ↵tron
shorter, more comprehensible, less dependent on magic numbers
2006-06-18(svn r5307) Remove two unnecessary indirections which used function pointers ↵tron
instead of directly calling the functions
2006-06-17(svn r5298) Hide function declarations and remove function stubs which ↵tron
aren't needed in the !ENABLE_NETWORK case
2006-06-17(svn r5297) Check the interface flags if IFF_BROADCAST is set before asking ↵tron
for the broadcast address
2006-06-17(svn r5295) Handle a quirk in the Windows interface detection code and fix a ↵tron
typo in r5293 (thanks to Darkvater for testing)
2006-06-17(svn r5294) -Fix: Plug a memory leaktron
2006-06-17(svn r5293) -Fix: Not all network interfaces are capable of broadcasting. ↵tron
Don't record those which aren't -Fix: Not all networks are /24. Generate proper broadcast addresses for non-/24 nets
2006-06-17(svn r5292) -Fix: When using SIOCGIFCONF to detect network interfaces ↵tron
accomodate for the fact that struct sockaddr doesn't have fixed size in all implementations
2006-06-17(svn r5291) - Fix: '-f' switch is not valid on windows, so don't show it in helpglx
2006-06-16(svn r5288) - Fix [FS#199]: Tunnel construction could erronously terraform a ↵Darkvater
foundationed tile with rails. This also fixes another bug where you could implicitly remove a foundation by raising nearby sloped land. Desirable perhaps, but unwanted.
2006-06-16(svn r5287) - Set some more ignore values (*.user), automatically generated ↵Darkvater
by VS2005
2006-06-16(svn r5286) - Clean up VS2005 project files by making them identical to the ↵Darkvater
VS2003 project file. Mainly put object files into a subdirectory of the project directory instead of a level higher which makes absolutely no sense. Also add some ignores, remove obsolete VS6 project files.
2006-06-15(svn r5285) WebTranslator2 update to 2006-06-15 19:12:46miham
american - 1 changed by WhiteRabbit (1)
2006-06-14(svn r5266) WebTranslator2 update to 2006-06-14 19:54:19miham
czech - 4 fixed by Hadez (4) italian - 15 changed by sidew (15)
2006-06-14(svn r5265) Replace a dozen bogus uses of strncmp() by strcmp()tron
2006-06-14(svn r5264) -Fix: The wrong IP could get unbanned, e.g. 'unban 1.2.3.42' ↵tron
could result in unbanning 1.2.3.4
2006-06-14(svn r5263) Use the flag which denotes if it's a plane or helicopter instead ↵tron
of magical engine numbers
2006-06-14(svn r5262) Add symbolic names for the aircraft subtypes. not perfect, but ↵tron
better than raw numbers
2006-06-14(svn r5260) -Fix: It was possible to convert the railtype of a bridge while ↵tron
a train was on it
2006-06-14(svn r5259) -Codechange: GetBridgeHeight{Ramp,}() now returns the height of ↵tron
the bridge, not one level lower
2006-06-13(svn r5250) WebTranslator2 update to 2006-06-13 19:40:20miham
italian - 4 fixed, 1 changed by sidew (5)
2006-06-13(svn r5249) - Add code to copy the palette to a temporary byte aligned array ↵peter1138
when making a PCX screenshot, if the palette array is not byte aligned.
2006-06-13(svn r5248) - [Codechange]: Remove TerraformProc()'s mode parameter as it is ↵Darkvater
not used
2006-06-12(svn r5240) - NewGRF: when there is more than one engine in a consist, base ↵peter1138
livery overrides and powered wagon weight/power on the last engine before the wagon.
2006-06-11(svn r5229) Remove a write-only variableglx
2006-06-11(svn r5228) Suppress MSVC warnings about signed/unsigned comparisonKUDr
2006-06-11(svn r5227) WebTranslator2 update to 2006-06-11 21:23:24miham
lithuanian - 16 fixed, 3 changed by Plyta (19) polish - 4 changed by meush (4) spanish - 31 fixed by eusebio (31)
2006-06-11(svn r5226) Reduce the mess that sending chat messages istron
This also fixes a bug: -Fix: It was possible to rename a signs or waypoints with the chat box
2006-06-11(svn r5225) Some windows periodically check if their parent exists - if not ↵tron
they close themselves This is unnecessary, because their parents already close them when they get closed Therefore remove the code for the periodic checks
2006-06-11(svn r5222) Misc. smaller changes, mostly const, variable scope and ↵tron
replacing some magic numbers by enums
2006-06-10(svn r5221) Make the assertion in SetTileType() more strict: "lower edge of ↵tron
map <=> VOID" instead of just "lower edge of map => VOID" This works since the hack abusing SetTileType() in openttd.c is gone (r5171)
2006-06-10(svn r5220) Testing for existence AND using rm -f is tautologoustron
2006-06-10(svn r5219) CMD_CLEAR_AREA doesn't use p2, so don't pass anything seemingly ↵tron
meaningful
2006-06-10(svn r5218) Remove GenericRaiseLowerLand(). It's not really as generic as ↵tron
the its name suggests, it's just an unnecessary indirection
2006-06-10(svn r5217) WebTranslator2 update to 2006-06-10 20:54:18miham
polish - 4 changed by meush (4)
2006-06-10(svn r5216) WebTranslator2 update to 2006-06-10 19:27:22miham
french - 4 fixed, 2 changed by glx (6) lithuanian - 102 fixed, 16 changed by Plyta (118) polish - 4 fixed by meush (4)
2006-06-10(svn r5214) [languages] Re-done afrikaans change, this time propermiham
2006-06-10(svn r5213) [languages] reverted last change from tronmiham
2006-06-10(svn r5212) Afrikaans can be encoded in ISO8859-15, there's no need to make ↵tron
it unusable by encoding it in UTF-8
2006-06-10(svn r5211) Remove stray minus after colon, i.e. :- -> : (in one case even a ↵tron
stray colon)
2006-06-10(svn r5210) Many small changes which piled up: const, unsigned, variable ↵tron
scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
2006-06-09(svn r5203) Some bits were incorrectly marked as usedtron
2006-06-09(svn r5202) WebTranslator2 update to 2006-06-09 19:46:28miham
american - 4 fixed by WhiteRabbit (4) dutch - 4 fixed by webfreakz (4) turkish - 4 fixed, 4 changed by jnmbk (8) ukrainian - 4 fixed by znikoz (4)