Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-12-07 | (svn r3270) Correct all (mis)uses of WWT_CLOSEBOX / WWT_TEXTBTN to reflect ↵ | peter1138 | |
their actual use, and add "Close Window" tooltip where missing. | |||
2005-11-14 | (svn r3181) -Bracing | tron | |
-Indentation -Whitespace -DeMorgan's Law -Test with NULL or 0 for non-booleans -'\0' instead of 0 for chars -Remove redundantly redundant comments (like DoFoo(); // Do foo) -Join multiple short lines with a single statement -Split single lines with multiple statements -Avoid assignments in if | |||
2005-11-13 | (svn r3173) Use the trinary operator and switch to improve readability | tron | |
Also align short cases nicely | |||
2005-11-09 | (svn r3157) - Feature: Added patch option to link the terraform toolbar to ↵ | peter1138 | |
the rail, road, water and airport toolbars. If enabled, the terraform toolbar will open and close with those toolbars. | |||
2005-10-23 | (svn r3078) Some more stuff, which piled up: | tron | |
- const, whitespace, indentation, bracing, GB/SB, pointless casts - use the trinary operator where appropriate - data types (uint[] -> AcceptedCargo, ...) - if cascade -> switch - if (ptr) -> if (ptr != NULL) - DeMorgan's Law - Fix some comments - 0 -> '\0', change magic numbers to symbolic constants | |||
2005-10-22 | (svn r3077) static, const, bracing, indentation, 0 -> '\0'/NULL, typos in ↵ | tron | |
comments, excess empty lines, minor other changes nothing spectacular, just some stuff, which piled up | |||
2005-07-24 | (svn r2701) Insert Id tags into all source files | tron | |
2005-07-22 | (svn r2673) Include functions.h directly, not globally via openttd.h | tron | |
2005-07-21 | (svn r2669) Shuffle some more stuff around to reduce dependencies | tron | |
2005-06-25 | (svn r2487) Replace TILE_XY by TileXY/TileDiffXY | tron | |
2005-06-24 | (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile" | tron | |
2005-06-06 | (svn r2420) - Codechange: magic number elminitation of cursorsprites. | Darkvater | |
2005-06-02 | (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files. | Darkvater | |
2005-04-02 | (svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario ↵ | Darkvater | |
editor (D,Q,W,E,R,T,Y,U fltr) - Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one - Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator - CodeChange: moved around some of the draggable tools, demystifying them - CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor) - CodeChange: add some more enums to sprites. - TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0 | |||
2005-02-13 | (svn r1867) Include tables/sprites.h only in files which need it | tron | |
2005-01-23 | (svn r1617) -Fix: Ugly hack to only call ResetObjectToPlaceon childwindows ↵ | darkvater | |
of build-toolbar if the window is closed manually (with 'X'); if not checked ResetObjectToPlace is called twice resulting in undesired actions (eg. clicked button is unclicked immediately). | |||
2005-01-22 | (svn r1594) Convert all undefined parameter lists to (void) and add the ↵ | tron | |
appropriate warning flags in the Makefile | |||
2005-01-20 | (svn r1573) -Fix: Station and depot building mode is now terminated if the | celestar | |
corresponding windows are closed [ 1104277 ] | |||
2005-01-15 | (svn r1520) Trim 134 (!) lines with trailing whitespace ): | tron | |
2005-01-08 | (svn r1435) Fix: [ 1094092 ] Toolbars accessible via keyboard in spectator mode | dominik | |
2005-01-08 | (svn r1425) Added hotkeys for dock and airport toolbar | celestar | |
2005-01-03 | (svn r1348) -Feature: resizable windows. Read the comment in window.h to ↵ | truelight | |
find out how the system works. All useful windows are already made resizable. Enjoy :) -Fix: fixed some GUI-glitches and flaws along the way | |||
2004-12-23 | (svn r1254) - Fix: [ 993500 ] High bridge rendering error | dominik | |
- Changed button to open landscaping toolbar | |||
2004-12-22 | (svn r1212) -Feature: sticky windows all build-toolbars | darkvater | |
2004-12-21 | (svn r1206) Fix: Polished build docks window a bit. | dominik | |
2004-12-19 | (svn r1165) Fix: [ 1085255 ] Docks now have a button to display the ↵ | dominik | |
catchment area | |||
2004-12-15 | (svn r1117) Move map arrays and some related macros into their own files ↵ | tron | |
map.c and map.h | |||
2004-12-12 | (svn r1030) Some toolbar icons are arranged differently: | dominik | |
- Landscaping buttons have to be accessed from the landscaping toolbar - Landscaping toolbar can be opened from all other toolbars - The order of buttons in the docks toolbar now matches the other toolbars - Landscaping toolbar has new keyboard shortcuts | |||
2004-12-08 | (svn r979) Allow more realistically sized catchment areas | Celestar | |
2004-12-04 | (svn r942) -Merged branch/network back into the trunk | truelight | |
2004-12-04 | (svn r925) Use sound enums | tron | |
Also play the correct sound when a toyland road vehicle breaks down | |||
2004-11-25 | (svn r815) Include strings.h only in the files which need it. | tron | |
This should reduce the compile time after altering english.txt by about 1/3, because "only" 62 instead of 90 .c files must be recompiled. | |||
2004-11-05 | (svn r513) Merge revisions 402, 416, 417, 478, 479, 511, 512 from map to trunk | tron | |
This includes 2 fixes -Fix: [1048596] Monorail and Maglev sounds are swapped (r511) -Add special case to load the jackhammer sound (r478) The rest are cleanups und enumeration to make merging possible/easier | |||
2004-09-10 | (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way! | truelight | |
2004-09-07 | (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron) | darkvater | |
-Fix: added WIDGETS_END macro for WWT_LAST which does this for all last widget-types | |||
2004-08-09 | (svn r1) Import of revision 975 of old (crashed) SVN | truelight | |