Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-10 | Cleanup: Removed SVN headers | S. D. Cloudt | |
2019-08-02 | Fix #7672: more than 32 resolutions may be available | glx | |
2019-05-14 | Codechange: [Win32] Pass a native GDI font description around when we have ↵ | Michael Lutz | |
one, instead of repeatedly guessing the font. | |||
2019-05-14 | Add: [Win32] GDI engine for font glyph rendering as a replacement for ↵ | Michael Lutz | |
including FreeType. Building with FreeType is still possible and will take precedence over the GDI renderer, but the project files don't include FreeType anymore by default. Combining GDI rendering with ICU text layout is untested. | |||
2019-04-18 | Codechange: use std::vector for _language_dropdown | glx | |
2019-04-10 | Codechange: Use null pointer literal instead of the NULL macro | Henry Wilson | |
2019-03-26 | Fix #6564: enforce types of arguments for station name strings (#7419) | glx22 | |
2019-03-26 | Codechange: Initialise a few variables that -flto seems to think could ↵ | Charles Pigott | |
possibly be uninitialised | |||
2019-03-26 | Codechange: Replaced SmallVector::[Begin|End]() with std alternatives | Henry Wilson | |
2019-03-26 | Codechange: Replaced SmallVector::Append() with ↵ | Henry Wilson | |
std::vector::[push|emplace]_back() | |||
2019-03-26 | Codechange: Replace SmallVector::Length() with std::vector::size() | Henry Wilson | |
2019-03-24 | Codechange: Use override specifer for overriding member declarations | Henry Wilson | |
This is a C++11 feature that allows the compiler to check that a virtual member declaration overrides a base-class member with the same signature. Also src/blitter/32bpp_anim_sse4.hpp +38 is no longer erroneously marked as virtual despite being a template. | |||
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. | |||
2019-03-11 | Codechange: ICU_SORT is in reality ICU_I18N (according to their CMake files) | Patric Stout | |
By naming it in a different way, things get a bit confusing. Especially if we are switching to CMake, which autodetects these things, we need to use the name the authors of ICU gave it; not our interpertation of that name. | |||
2019-03-11 | Codechange: ICU_LAYOUT is in reality ICU_LX (according to their CMake files) | Patric Stout | |
By naming it in a different way, things get a bit confusing. Especially if we are switching to CMake, which autodetects these things, we need to use the name the authors of ICU gave it; not our interpertation of that name. | |||
2019-03-02 | Codechange: Make std::stack use std::vector container in string ↵ | PeterN | |
formatting/drawing. (#7305) This is a very minor performance increase which can add up during operations such as sorting. Performance impact my be platform/compiler dependent. | |||
2018-12-27 | Fix: [Win32] WIN32 may not be defined, always prefer the compiler predefined ↵ | glx | |
macro _WIN32 | |||
2018-12-08 | Add: [OSX] Text layout using the native CoreText API. | Michael Lutz | |
By default, the native API will be used instead of ICU, but if ICU is forced in using configure, it will take precedence. | |||
2018-12-08 | Add: [OSX] Native natural sort implementation. | Michael Lutz | |
2018-10-31 | Fix: Remove various dead or unnecessary assignments | Charles Pigott | |
2018-10-31 | Doc: Lots and lots of doxymentation fixes | Charles Pigott | |
2018-06-26 | Change: Increase cargo type limit to 64. | PeterN | |
2018-06-06 | Add: [Win32] Text layout using the native Windows Uniscribe library. | Michael Lutz | |
Uniscribe is sometimes producing different results compared to ICU, especially when RTL and LTR content is mixed. Comparing the results to other programs (like editors or web browsers) leads me to believe that the result are at least not worse than ICU and possibly better. | |||
2018-06-06 | Add: [Win32] Native natural sort implementation. | Michael Lutz | |
2018-05-21 | Change: Add CargoTypes type for cargo masks. (#6790) | PeterN | |
2018-04-19 | Add: {PUSH_COLOUR} and {POP_COLOUR} control codes to handle switching ↵ | PeterN | |
colours. (#6737) This replaces the internal SCC_PREVIOUS_COLOUR swap. | |||
2018-04-17 | Fix #6465: Add {NORMAL_FONT} and {MONO_FONT} control codes to GS strings (#6726) | Pavel Stupnikov | |
2018-04-08 | Fix #6690: Compilation with ICU 61 | Charles Pigott | |
2017-02-26 | (svn r27758) -Change: Increase the maximum number of GameScript texts to ↵ | frosch | |
64k, and NewGRF texts to 512k. | |||
2017-02-26 | (svn r27756) -Codechange: Add StringTab enum | frosch | |
2017-02-26 | (svn r27754) -Codechange: Add GetStringTab(), GetStringIndex() and ↵ | frosch | |
MakeStringID() to access the structure of StringIDs. | |||
2016-06-17 | (svn r27602) -Fix [FS#6481]: Compilation with --disable-network. (Deranged) | frosch | |
2015-08-10 | (svn r27381) -Fix: Warnings due to C++11 requirements for explicit narrowing ↵ | michi_cc | |
conversions in initializer lists. | |||
2015-08-09 | (svn r27367) -Codechange: make a distinction between the layouting part of ↵ | rubidium | |
ICU (lx) or the sorting/collation part of ICU (i18n) | |||
2015-05-17 | (svn r27288) -Fix: Slow network content GUI in MSVC Debug builds due to ↵ | michi_cc | |
repeated string resolving. | |||
2015-01-01 | (svn r27102) -Fix [FS#6194]: money values would end up wrong in strings when ↵ | rubidium | |
outside of the bounds of a 32 bits integer | |||
2014-11-18 | (svn r27063) -Fix [FS#6172]: Some lists did not use natural string sorting. | frosch | |
2014-08-15 | (svn r26733) -Fix [FS#6086]: inconsistency in using spaces between number ↵ | rubidium | |
and unit in some strings Try to follow the SI recommendation to use a non-breaking space between a number and its units (and prefix) | |||
2014-06-20 | (svn r26657) -Add [FS#6047]: Days in dates are not represented by ordinal ↵ | planetmaker | |
numbers in all languages | |||
2014-04-27 | (svn r26525) -Remove: Screenshot format setting from GUI. | frosch | |
2014-04-25 | (svn r26509) -Codechange: replace strdup with stredup (the latter ensures ↵ | rubidium | |
the return is not NULL) | |||
2014-04-23 | (svn r26489) -Codechange: properly account for the end of buffers in the ↵ | rubidium | |
file io code instead of assuming MAX_PATH is okay | |||
2014-04-23 | (svn r26486) -Codechange: replace a number of snprintfs with seprintf | 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-12 | (svn r26242) -Codechange: Use GRFFile that filled the TextRefStack to ↵ | frosch | |
translate StringIDs from the TextRefStack, instead of passing stuff via global vars. | |||
2014-01-12 | (svn r26239) -Fix: Check that there is space left in the string parameter ↵ | frosch | |
array, before pushing NewGRF parameters to it. | |||
2014-01-12 | (svn r26238) -Codechange: Use StringParameters::GetDataLeft to check for ↵ | frosch | |
left space in the param array. | |||
2014-01-12 | (svn r26237) -Cleanup: Remove unused SCC_STRING_ID. | frosch | |
2013-11-23 | (svn r26063) -Fix (r26062): a few tabs too much | rubidium | |
2013-11-23 | (svn r26062) -Fix: beef up checks against invalid data in highscore and ↵ | rubidium | |
language files |