Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-13 | Change: do not print the '-' in front of help messages and make help ↵ | rubidium42 | |
messages more uniform | |||
2021-06-13 | Codechange: replace IConsolePrintF with IConsolePrint and fmt formatting | rubidium42 | |
Also make some strings more consistent with the rest of the console strings. | |||
2021-06-13 | Cleanup: remove IConsoleWarning/IConsoleError helpers | rubidium42 | |
Both did not support format parameters, so in many places IConsolePrint(CC_ERROR, "message") was used with a style different from what IConsoleError would do. | |||
2021-06-13 | Change: unify the style of console error messages and convert to fmt | rubidium42 | |
Always start with a capital, do not add "ERROR: " in front of it. | |||
2021-06-13 | Codechange: remove single use IConsoleDebug | rubidium42 | |
2021-06-13 | Codechange: add an IConsolePrint overload that does formatting with fmt | rubidium42 | |
2021-06-13 | Codechange: convert printf DEBUG statements to fmt Debug statements | rubidium42 | |
2021-05-29 | Codechange: rename str_validate to StrMakeValid(InPlace) (#9304) | Patric Stout | |
This to be more explicit the function changes the value, and not returns yes/no. | |||
2021-04-24 | Codechange: Use std::string in console commands/aliases registration, and ↵ | Loïc Guilloux | |
std::map instead our sorted linked list (#9057) * Codechange: Use std::string in console commands and aliases registration * Codechange: Use std::map to register console commands * Codechange: Use std::map to register console aliases * Cleanup: Remove now unused function | |||
2020-02-04 | Fix #7969: limit recursion during alias execution | glx | |
2019-11-10 | Cleanup: Removed SVN headers | S. D. Cloudt | |
2019-04-10 | Codechange: Use null pointer literal instead of the NULL macro | Henry Wilson | |
2019-03-20 | Remove: ENABLE_NETWORK switch | Patric Stout | |
This switch has been a pain for years. Often disabling broke compilation, as no developer compiles OpenTTD without, neither do any of our official binaries. Additionaly, it has grown so hugely in our codebase, that it clearly shows that the current solution was a poor one. 350+ instances of "#ifdef ENABLE_NETWORK" were in the code, of which only ~30 in the networking code itself. The rest were all around the code to do the right thing, from GUI to NewGRF. A more proper solution would be to stub all the functions, and make sure the rest of the code can simply assume network is available. This was also partially done, and most variables were correct if networking was disabled. Despite that, often the #ifdefs were still used. With the recent removal of DOS, there is also no platform anymore which we support where networking isn't working out-of-the-box. All in all, it is time to remove the ENABLE_NETWORK switch. No replacement is planned, but if you feel we really need this option, we welcome any Pull Request which implements this in a way that doesn't crawl through the code like this diff shows we used to. | |||
2018-10-31 | Doc: Lots and lots of doxymentation fixes | Charles Pigott | |
2017-08-13 | (svn r27893) -Codechange: Use fallthrough attribute. (LordAro) | frosch | |
2017-06-22 | (svn r27884) -Fix: Console command parser failed when the command had many ↵ | frosch | |
parameters, and also did not print any error messages about it. | |||
2017-06-22 | (svn r27883) -Fix [FS#6576]: Console command parser passed invalid strings ↵ | frosch | |
to the debug output, if command lines had many parameters. | |||
2014-04-25 | (svn r26509) -Codechange: replace strdup with stredup (the latter ensures ↵ | rubidium | |
the return is not NULL) | |||
2014-04-24 | (svn r26506) -Codechange: replace most of vsnprintf with vseprintf | rubidium | |
2014-04-23 | (svn r26482) -Codechange: add an include that allows us to undefine/redefine ↵ | rubidium | |
"unsafe" functions to prevent them from being used, and thus having to care about certain aspects of their return values | |||
2014-01-28 | (svn r26284) -Fix: Comparison of NULL and char 0. (lbalbalba) | frosch | |
2013-11-25 | (svn r26100) -Fix: possible buffer overflow in console handling of aliases | rubidium | |
2013-01-08 | (svn r24900) -Fix [FS#5389]: Comments with typos (most fixes supplied by ↵ | planetmaker | |
Eagle_rainbow) | |||
2012-01-03 | (svn r23741) -Revert (r23740): the few parts that the Windows / non-network ↵ | rubidium | |
compiles stumble on | |||
2012-01-03 | (svn r23740) -Codechange: remove some 300 unneeded includes from the .cpp files | rubidium | |
2011-01-03 | (svn r21701) -Codechange: ConsoleColour = TextColour, so make it that way ↵ | rubidium | |
and remove some unneeded casts | |||
2011-01-01 | (svn r21688) -Codechange: verify the colour code passed to ↵ | smatz | |
IConsolePrint()/IConsolePrintF() is valid | |||
2011-01-01 | (svn r21686) -Cleanup: remove unused constants and comment used ones | smatz | |
2010-10-17 | (svn r20977) -Fix (r20975): compilation didn't get to the link stage if you, ↵ | rubidium | |
or config.lib, decided you don't need network support | |||
2010-10-17 | (svn r20975) -Add: logging of console output for remote admins (dihedral) | rubidium | |
2010-10-17 | (svn r20974) -Add: remote console (rcon) for remote admins (dihedral) | rubidium | |
2010-08-16 | (svn r20515) -Feature: ignore _ in console command names so there is no ↵ | rubidium | |
"inconsistent" behaviour w.r.t. underscores anymore without breaking backwards compatability greatly | |||
2010-08-01 | (svn r20280) -Fix: indentation of some switch cases | rubidium | |
2010-07-29 | (svn r20239) -Doc: Give a common name to all fall throughs (FALL THROUGH). | terkhen | |
2010-06-26 | (svn r20021) -Codechange: Move variable declarations. | alberth | |
2010-05-20 | (svn r19862) -Change: allow "" and " " as arguments meaning nothing and ↵ | rubidium | |
space for the in-game console | |||
2010-03-24 | (svn r19514) -Codechange: Allow console hooks to deny existance of commands. | frosch | |
2010-03-24 | (svn r19512) -Fix (r19511): using the 'alias' console command it's possible ↵ | yexo | |
to create a duplicate alias name | |||
2010-03-24 | (svn r19511) -Codechange: use a template for IConsoleAddSorted | yexo | |
2010-02-25 | (svn r19252) -Fix [FS#3639]: writing (console) output to a file failed on ↵ | rubidium | |
Windows if the date would not be logged. | |||
2010-02-10 | (svn r19093) -Codechange: do not prefix console debug output with 'condbg', ↵ | smatz | |
[console] is enough | |||
2010-02-10 | (svn r19085) -Codechange: simplify hooking of console commands | smatz | |
2010-02-10 | (svn r19083) -Cleanup: remove support for modifying variables from console | smatz | |
2010-02-10 | (svn r19082) -Codechange: make 'developer' a regular setting | smatz | |
2010-02-10 | (svn r19079) -Codechange: use _debug_console_level instead of ↵ | smatz | |
_stdlib_con_developer | |||
2010-01-15 | (svn r18809) -Codechange/Cleanup: remove unneeded headers from some files, ↵ | rubidium | |
if a header require a header make it include that header | |||
2009-11-09 | (svn r18028) -Codechange: unglobalise some functions | rubidium | |
2009-10-04 | (svn r17701) -Codechange: don't start line with a space if it's not inside ↵ | smatz | |
comment | |||
2009-10-04 | (svn r17693) -Cleanup: remove some unneeded includes | rubidium | |
2009-09-09 | (svn r17488) -Feature [FS#2339]: add the date to all logging in the (real, ↵ | rubidium | |
not in-game) console if show_date_in_console is set. For dedicated server binaries the default is 'on', for the rest it is 'off'. |