Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-02-07 | (svn r12079) -Fix: Use search paths when opening console scripts. | peter1138 | |
2008-01-13 | (svn r11834) -Codechange: only include settings_type.h if needed. | rubidium | |
2008-01-13 | (svn r11829) -Feature: allow reloading openttd.cfg when starting a new game ↵ | rubidium | |
on a dedicated server. Patch by dihedral. | |||
2008-01-13 | (svn r11828) -Codechange: include table/* as the last includes and remove an ↵ | rubidium | |
unneeded include from openttd.h. | |||
2008-01-12 | (svn r11818) -Codechange: split player.h into smaller pieces. | rubidium | |
2008-01-09 | (svn r11788) -Fix (11787): makedepend doesn't mark delete files as changed... | rubidium | |
2008-01-07 | (svn r11777) -Codechange: split the string header and make do not include it ↵ | rubidium | |
when it's not necessary. | |||
2008-01-07 | (svn r11771) -Codechange: split settings.h into better separated headers. | rubidium | |
2007-12-27 | (svn r11706) -Codechange: split vehicle.h and remove another bunch of ↵ | rubidium | |
useless includes. | |||
2007-12-26 | (svn r11702) -Codechange: move all date related stuff to date*. | rubidium | |
2007-12-26 | (svn r11701) -Codechange: removal unnecessary inclusions of map.h (and split ↵ | rubidium | |
map.h). | |||
2007-12-25 | (svn r11692) -Codechange: move some functions from 'functions.h' to a more ↵ | rubidium | |
logical place and remove about 50% of the includes of 'functions.h' | |||
2007-12-22 | (svn r11682) -Codechange: move some 'generic' geometry related types into a ↵ | rubidium | |
single file and do not include gfx.h everywhere to get a Point type. | |||
2007-12-21 | (svn r11677) -Codechange: move price and command related types/functions to ↵ | rubidium | |
their respective places. | |||
2007-12-21 | (svn r11675) -Codechange: split the string types from the string functions. | rubidium | |
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-11-24 | (svn r11510) -Codechange: merge the IS_*INSIDE* functions and rename them ↵ | skidd13 | |
fitting to the naming style | |||
2007-11-17 | (svn r11452) -Change: do not allow configuration changes, that NewGRFs can ↵ | rubidium | |
directly use to change their behaviour, during network games as this can cause desyncs. | |||
2007-10-20 | (svn r11312) -Codechange: implement a overflow safe integer and use that for ↵ | rubidium | |
money and don't misuses CommandCost to have a overflow safe integer. Based on a patch by Noldo. | |||
2007-10-14 | (svn r11260) -Codechange: replace a magic number by a less magic enumified ↵ | rubidium | |
constant. Patch by ammler. | |||
2007-07-23 | (svn r10658) -Add: support for autosave_on_exit in the console, so dedicated ↵ | glx | |
servers can use it | |||
2007-06-24 | (svn r10312) -Fix (r10210): the 64 values in the 'players' console command ↵ | rubidium | |
were not printed properly; they did even "overflow" into the next to-be-printed values. | |||
2007-06-17 | (svn r10182) -Codechange: rewrite most part of the file loading/searching to ↵ | rubidium | |
be more flexible. -Codechange: add support for personal directories on Windows. -Fix [FS#153, FS#193, FS#502, FS#816, FS#854]: fix issues related to fixed names, fixed places of files/directories and application bundles. | |||
2007-06-13 | (svn r10137) -Add: console command to get the current game date. | rubidium | |
2007-05-04 | (svn r9784) -Codechange: remove unused variable. | rubidium | |
2007-05-02 | (svn r9771) -Feature: (-tte) Add password protected status to 'players' ↵ | peter1138 | |
(network server) console command. (mostly dihedral) | |||
2007-04-12 | (svn r9609) -Codechange: Move some function prototypes out of functions.h ↵ | maedhros | |
and into landscape.h, and add a few where they didn't exist. | |||
2007-04-05 | (svn r9565) -Feature: Add list_patches console command. This shows all ↵ | peter1138 | |
patches along with their current values. Based on patch by madman2003/GrimRC. | |||
2007-03-08 | (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the ↵ | rubidium | |
coding style (and rest of the code). | |||
2007-03-07 | (svn r9050) -Codechange: Foo(void) -> Foo() | rubidium | |
2007-03-06 | (svn r9038) -Fix [FS#115]: inactive connections are not automatically ↵ | rubidium | |
kicked, i.e. people who only open a telnet (or similar) connection to a server. | |||
2007-03-06 | (svn r9034) -Codechange: renamed _pause to _pause_game, as some targets ↵ | truelight | |
already have a symbol called _pause (and therefor our variable conflicts with thatone. We shouldn't be using _ as global indicator.....) | |||
2007-02-23 | (svn r8859) -Cleanup: doxygen changes. Mostly @files missing tags and a few ↵ | belugas | |
comments style. | |||
2007-01-12 | (svn r8083) -Codechange: make a NetworkSocketHandler as base for all sockets ↵ | rubidium | |
and move a little of NetworkClientState functionality to the NetworkSocketHandler. Move the rest of the NetworkClientState to the new NetworkTCPSocketHandler class/struct, which is not yet implemented in an object oriented manner. The UDP socket handler now extends the NetworkSocketHandler instead of having a reference to a NetworkClientState. | |||
2007-01-10 | (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, ↵ | rubidium | |
stillunknown and pv2b. | |||
2007-01-10 | (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files ↵ | KUDr | |
renamed to .cpp) |