summaryrefslogtreecommitdiff
path: root/src/table/files.h
AgeCommit message (Collapse)Author
2009-03-14(svn r15711) -Codechange: lots of whitespace cleanup/fixesrubidium
2008-08-31(svn r14197) -Codechange: rework (original) base graphics determination ↵rubidium
methods. This yields in the following: -Feature: make configuring the to-be-used base graphics via openttd.cfg and the command line possible. -Feature: allow both the German as well as non-German toyland graphics as "correct" and official graphics. -Feature: allow people to create their own base graphics easily and without requiring code changes.
2008-08-24(svn r14151) -Codechange: make it possible to choose between the DOS and ↵rubidium
Windows graphics packs while retaining the possibility to override the palette.
2008-06-12(svn r13490) -Add: a seperate icon for aqueductsskidd13
2008-06-11(svn r13469) -Codechange: add support for loading Action 0x05, type 0F: ↵rubidium
"tracks for slopes". It's not useful right now, but it will be in the future.
2008-06-11(svn r13464) -Codechange: support NewGRF Action 0x05, type 12.rubidium
2008-05-29(svn r13339) -Feature: splitting of the main toolbar when the resolution ↵rubidium
becomes very low so the buttons are still visible and useable. Patch by Dominik.
2008-05-06(svn r12971) -Documentation: add @file in files that missed them and add ↵rubidium
something more than whitespace as description of files that don't have a description.
2008-04-29(svn r12924) -Feature: Introducing the so called 'engine pool' which ↵peter1138
primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
2008-03-26(svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so ↵rubidium
someone without a keyboard can enter text too. Patch by Dominik.
2008-03-24(svn r12407) -Add [FS#1866]: more language flags for serversglx
2008-03-12(svn r12360) -Fix: openttdd.grf was using the wrong colours for glyphs due ↵glx
to a grfcodec bug (fixed in grfcodec 0.9.10 r1837)
2008-01-22(svn r11949) -Codechange: add river icon and cursor, drawn by skidd13.peter1138
2008-01-22(svn r11942) -Codechange: Merge chars.grf into openttd[d|w].grf using action ↵peter1138
12. Remove obsolete tables used for index mapping.
2007-12-31(svn r11726) -Feature[newGRF]: Extend the Action 5, feature 0D usage. Patch ↵belugas
by BigBB
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-11-18(svn r11457) -Fix: (r11455) Reenable the accidentaly removed one way roads ↵skidd13
option -Change: Enable one way roads like the remove via a toolbar icon
2007-11-15(svn r11433) -Fix: starting OpenTTD with DOS files made it look weird out of ↵rubidium
the box. -Change: make extra sprites (the ones not in the TTD GRFs) replaceable using Action 5. -Feature: make replacing contiguous subsets of sprites in for some types possible in Action 5. Note to GRF authors: when you replaced OpenTTD sprites that are not from the TTD GRF files using Action A, your GRF will not have the intended result anymore as the sprite numbers have changed. You should replace the Action A with an Action 5 from now on.
2007-11-07(svn r11391) -Change: print all error messages related to missing/corrupted ↵rubidium
files in one message including the location where they can get said missing/corrupted files.
2007-10-27(svn r11350) -Change: add missing elrail sprites for some rail build ↵rubidium
buttons/cursors. Sprites by skidd13.
2007-10-22(svn r11339) -Add: autoroad; same as autorail, but for road and trams and ↵rubidium
only on X and Y direction. Patch by Octopussy and skidd13.
2007-10-20(svn r11316) -Codechange: add support for the half-tile (selection) graphics.rubidium
2007-06-17(svn r10185) -Codechange: make the bounding boxes of the drive through road ↵rubidium
stops a little larger so NewGRFs authors have more possibilities when replacing them (minime).
2007-06-01(svn r10017) -Add (FS#790): more languages flags for serversglx
2007-05-31(svn r9999) -Feature: make it possible to disallow busses and lorries to go ↵rubidium
a specific way on straight pieces of road.
2007-05-25(svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.rubidium
2007-05-19(svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you ↵rubidium
can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
2007-05-08(svn r9814) -Fix (r1): Remove the duplicate sign sprite from openttd.grf ↵maedhros
since it's in the original data files.
2007-02-21(svn r8838) -Feature: Show newgrf error messages loaded in Action B in the ↵maedhros
newgrf gui window. GRFs with an error have a warning symbol shown before the name.
2007-02-14(svn r8741) -Fix (r8735): make the saveguards of CmdBuildRoadStop more ↵rubidium
robust and add roadstops.grf to the list of required grfs.
2007-01-02(svn r7759) -Merge: makefile rewrite. This merge features:rubidium
- A proper ./configure, so everything needs to be configured only once, not for every make. - Usage of makedepend when available. This greatly reduces the time needed for generating the dependencies. - A generator for all project files. There is a single file with sources, which is used to generate Makefiles and the project files for MSVC. - Proper support for OSX universal binaries. - Object files for non-MSVC compiles are also placed in separate directories, making is faster to switch between debug and release compiles and it does not touch the directory with the source files. - Functionality to make a bundle of all needed files for for example a nightly or distribution of a binary with all needed GRFs and language files. Note: as this merge moves almost all files, it is recommended to make a backup of your working copy before updating your working copy.