Commit Graph

7307 Commits (54b852393643bcf153f2a0279e9cc83578fc78eb)

Author SHA1 Message Date
alberth 54b8523936 (svn r17763) -Codechange: Rename 'wagon_btnstate' to 'replace_engines', and 'init_lists' to 'reset_sel_engine' in ReplaceVehicleWindow, add doxygen comments. 15 years ago
rubidium 8f090ec4a8 (svn r17762) -Fix [FS#3259]: don't let aircraft drive a while over the grass when landing at high altitude airports 15 years ago
alberth 321139782d (svn r17761) -Codechange: Removed some unused/unneeded variables from ReplaceVehicleWindow. 15 years ago
alberth 9677e51261 (svn r17760) -Revert (r17648): _local_company is less constant than you'd expect. 15 years ago
alberth f9733ac590 (svn r17759) -Codechange [FS#3257]: Return focus to the parent window using the function designed for it. 15 years ago
frosch 59195a6f20 (svn r17758) -Revert (r17208): Use assert_compile() if you cannot count.
-Fix (r7326): Powernaut Helicopter got wrong 'load amount'.
-Fix (r2639): Call the Evil by its name.
15 years ago
translators 54fe3cc474 (svn r17757) -Update from WebTranslator v3.0:
hungarian - 35 changes by leiric
indonesian - 1 changes by prof
ukrainian - 49 changes by Madvin
15 years ago
alberth 70ec375dc5 (svn r17756) -Codechange: Company finances window uses pure nested widgets. 15 years ago
alberth cfbd5ba59b (svn r17755) -Codechange: Allow for a zero-size display plane in a NWidgetStacked widget to hide its child widgets. 15 years ago
alberth 402d0d05c9 (svn r17754) -Codechange: Make ExpensesList::GetHeight() return a uint. 15 years ago
alberth 2e2f3b1502 (svn r17753) -Fix (r17750): Expenses amounts were printed two pixels too low. 15 years ago
rubidium 4ab569544b (svn r17752) -Fix [FS#3231]: OSK could reset town name to an already used town name for the 'Generate Town' window 15 years ago
rubidium 66721ffd36 (svn r17751) -Fix [FS#3253]: sometimes clicking on a for the user unfocused edit box would show the OSK (Zuu) 15 years ago
alberth ef8a3d6d94 (svn r17750) -Codechange: Financial expenses panel handles different font size, replaced magic numbers by constants. 15 years ago
translators 0d7c9cf909 (svn r17749) -Update from WebTranslator v3.0:
catalan - 1 changes by arnau
romanian - 2 changes by kkmic
spanish - 1 changes by Terkhen
15 years ago
rubidium 2b7d09b73e (svn r17748) -Fix: crash when right clicking on the 'toggle' toolbar button 15 years ago
smatz eb72a0095f (svn r17746) -Codechange: 'operator new' doesn't return NULL, NetworkSend_Init() is useless 15 years ago
translators cbc6af2506 (svn r17745) -Update from WebTranslator v3.0:
simplified_chinese - 1 changes by Gavin
dutch - 1 changes by habell
finnish - 1 changes by jpx_
french - 1 changes by glx
german - 1 changes by planetmaker
italian - 1 changes by lorenzodv
russian - 1 changes by Lone_Wolf
serbian - 48 changes by AtzaMan
vietnamese - 14 changes by nglekhoi
15 years ago
rubidium 59ec3dc267 (svn r17743) -Fix: (post 0.7) memory leak in server in case handling a packet caused the connection to be closed. Also force-close the connection on invalid packets. 15 years ago
rubidium df75db67eb (svn r17742) -Codechange: remove unused variable from Recv_Packet 15 years ago
rubidium 8c37da1be6 (svn r17741) -Feature-ish [FS#3116]: show the nickname of the person you're PMing 15 years ago
alberth 429449cab8 (svn r17740) -Codechange: Extract financial expenses drawing routines. 15 years ago
rubidium 1017f4f6a1 (svn r17739) -Cleanup: compiler didn't warn about an unused variable, fonsinchen did 15 years ago
translators c132018db5 (svn r17738) -Update from WebTranslator v3.0:
russian - 1 changes by Lone_Wolf
15 years ago
rubidium 58a36f038b (svn r17737) -Codechange: remove the chat window when you were chatting with someone who lost his/her connection or when you were team chatting and moved out of the company. 15 years ago
rubidium c53682810f (svn r17736) -Codechange [FS#3135]: rewrite CargoList::MoveTo; don't require the secondary list, use cache updates instead of rebuilds. This is usually faster because of primarily gradual loading that only moves a (small) part of the cargo each time. Based on patch by fonsinchen. 15 years ago
rubidium 705615fd91 (svn r17735) -Codechange: update the cache one inserting/removing CargoPackets from the CargoList via Append/Truncate instead of rebuilding the whole cache. For Append this changes the O(n) cache rebuild into a O(1) cache update. For Truncate no temporary list is needed anymore (based on patch by fonsinchen) 15 years ago
rubidium 446363aac4 (svn r17734) -Fix (r17732): broke the assumption that 'this->packets == this', which broke loading old savegames. Now remove the (need for the) hack that needed that assumption. 15 years ago
rubidium 9b045ac7b2 (svn r17733) -Codechange: store the 'days in transit' cache as the sum of the days in transit instead of the average; the variable isn't requested that often (primarily station NewGRFs) that the dividing/testing for dividing by 0 step needs to be cached. 15 years ago
rubidium 80f0df17ba (svn r17732) -Codechange: reorder some variables of cargo packets/cargo lists to get better alignment *and* smaller structs; both from 40 bytes to 32 bytes on 64 bits. 15 years ago
rubidium d52fa73bb1 (svn r17731) -Codechange: do not cache a boolean which states whether some other variable is not 0. 15 years ago
rubidium 31acc42b21 (svn r17730) -Codechange: do not cache the source of a packet in the cargo list. It's only used for (some) GUI/NewGRF purposes so precalculating it costs more than calculating when it's actually used. 15 years ago
frosch 1cab0dbc1d (svn r17729) -Cleanup: Deduplicate some code. 15 years ago
frosch 9a9d0ee7c0 (svn r17728) -Cleanup: Remove some more unneeded/unused parameters. 15 years ago
rubidium 1e2dc25582 (svn r17727) -Codechange: some coding style and documentation fixes 15 years ago
frosch 7a8a97e68a (svn r17726) -Cleanup: Remove some unneeded/unused parameters. 15 years ago
frosch f3aacb8fe3 (svn r17725) -Codechange: Reduce usage of EngInfo and XxxVehInfo, esp. when a Engine * is already present. 15 years ago
alberth 95dfee1c60 (svn r17724) -Codechange: Merge magic height values toghether in finances window. 15 years ago
translators 68a20b2130 (svn r17723) -Update from WebTranslator v3.0:
traditional_chinese - 1 changes by josesun
15 years ago
rubidium 832b21191d (svn r17722) -Codechange: simplify the cargopacket constructor; unduplicate if and don't set a value to 0 if it already is 0. 15 years ago
rubidium e0e5eae1ee (svn r17721) -Codechange: replace a magic number with a constant 15 years ago
rubidium 5f59d0c5b4 (svn r17720) -Codechange: guard the CargoPacket variables that are cached in CargoLists so they cannot be written from outside the CargoList class (based on patch by fonsinchen) 15 years ago
frosch a4835e3f0b (svn r17719) -Change: [NoAI] Make AIEngine:CanRefitCargo() not report refittability to Mail by default for aircraft. It is not necessarily true, and the special case of carrying both passenger&mail is better handled by AIs themself than by the API. 15 years ago
translators cccda0d864 (svn r17718) -Update from WebTranslator v3.0:
afrikaans - 35 changes by Maccie123
frisian - 50 changes by Minifan
15 years ago
michi_cc d900b0d628 (svn r17717) -Codechange: [OSX] Replace deprecated variable type. 15 years ago
michi_cc 6ad7440ae5 (svn r17716) -Codechange: [OSX] Invoke a (semi-)private Objective-C method in a way that does not rely on the SDK version. 15 years ago
michi_cc dbb13fd856 (svn r17715) -Cleanup: [OSX] And a final round of coding style and some cleaning. 15 years ago
michi_cc ba6866128d (svn r17714) -Cleanup: [OSX] Apply more coding style. 15 years ago
michi_cc 9b54d5bbd7 (svn r17713) -Cleanup: [OSX] Move variable definitions to first use and apply more coding style. 15 years ago
michi_cc ec90a8778f (svn r17712) -Codechange [FS#1411]: [OSX] Replace undocumented process manager API calls with a documented alternative. (pyth) 15 years ago