Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-02 | Fix: [CMake] Restore man file compression | glx22 | |
2020-07-02 | Fix #8250: [NRT] Company infrastructure window always omits last road/tramtype | stormcone | |
2020-07-01 | Update: Translations from eints | translators | |
czech: 3 changes by djst | |||
2020-06-30 | Fix: don't search for SDL, etc., on macOS | Dan Villiom Podlaski Christiansen | |
2020-06-30 | Fix: remove remainining usages of FALSE in CMake files | Dan Villiom Podlaski Christiansen | |
2020-06-30 | Fix: fix building release tags | Dan Villiom Podlaski Christiansen | |
I tried building a tag, and got this error: CMake Error at cmake/scripts/FindVersion.cmake:85 (string): string sub-command REGEX, mode REPLACE: regex "^[0-9.]*$" matched an empty string. | |||
2020-06-30 | Fix: set Mac deployment target | Dan Villiom Podlaski Christiansen | |
This silences an awful lot of warnings. | |||
2020-06-30 | Fix: use proper flags for suppressing warnings in Clang | Dan Villiom Podlaski Christiansen | |
2020-06-30 | Add: add option for forcing coloured compiler output (useful for Ninja) | Dan Villiom Podlaski Christiansen | |
2020-06-30 | Fix: don't use ICU on macOS | Dan Villiom Podlaski Christiansen | |
2020-06-28 | Change #8159: Remove now unused town cargo caches without bumping the ↵ | dP | |
savegame version | |||
2020-06-28 | Fix: Make subsidies scan tiles for town acceptance and production instead of ↵ | dP | |
using desync-prone town caches | |||
2020-06-28 | Revert #8157: Redundant change | dP | |
2020-06-28 | Add: [NewGRF] Industry behaviour flag to override second cargo production ↵ | Michael Lutz | |
clamping for water industries when using smooth economy. Smooth economy is only used when the corresponding setting is enabled and the industries does not use the production callback. | |||
2020-06-28 | Fix: Incorrect save/load array size of Town::cargo_accepted | Jonathan G Rennison | |
In 11ab3c4e the number of cargo types was changed from 32 to 64. The save/load of Town::cargo_accepted was not updated, such that only half of the data structure is saved/loaded in savegame versions 199 to 218. Discard and regenerate data from all savegame versions prior to 219. | |||
2020-06-28 | Codechange: Move SlSkipBytes to saveload.h | Jonathan G Rennison | |
2020-06-28 | Fix #8131: small bridges also have pillars drawn | ilayaraja97 | |
2020-06-28 | Fix #8221: Missing specific error message for bridge too long (#8240) | TrevorShelton | |
2020-06-28 | Fix 887b912af: MinGW requires an extra link flag with _FORTIFY_SOURCE (#8246) | glx22 | |
see #7860 | |||
2020-06-28 | Fix #8216: Don't show floating text on autoreplace if cost is 0 | Charles Pigott | |
2020-06-27 | Doc: Acknowledge integer type mismatch in certain admin packets using ↵ | duck | |
AdminUpdateType (#8238) | |||
2020-06-27 | Change: Also make roadside trees match the tree transparency option | Charles Pigott | |
2020-06-27 | Fix #8129: Crash if a news message expires while viewing the endgame screen | Charles Pigott | |
2020-06-27 | Codechange: Make sure script enums are the same size as their normal ↵ | Charles Pigott | |
counterparts | |||
2020-06-27 | Codechange: Only apply FORTIFY_SOURCE in non-debug builds | Charles Pigott | |
It requires -O1 (or greater) and GCC spews out warnings if you try using it with -O0 | |||
2020-06-27 | Fix: Warning about using the wrong enum type | Charles Pigott | |
2020-06-27 | Codechange: Add WARN_FORMAT to vseprintf and fix the cascade of warnings ↵ | Charles Pigott | |
that followed | |||
2020-06-27 | Fix: Compiler warnings about memsetting non-trivial classes | Charles Pigott | |
2020-06-27 | Fix #8232: 'Huge screenshot' warning being shown incorrectly | Abdurrahmaan Iqbal | |
2020-06-27 | Cleanup: Give `TakeScreenshot` a more sensible name | TechGeekNZ | |
2020-06-27 | Cleanup: Remove redundant implementation of TakeScreenshot | TechGeekNZ | |
2020-06-27 | Feature: Increase max possible distance from border for oil refineries and rigs | dP | |
2020-06-25 | Update: Translations from eints | translators | |
indonesian: 16 changes by adjayanto | |||
2020-06-24 | Update: Translations from eints | translators | |
swedish: 3 changes by Joel_A | |||
2020-06-22 | Update: Translations from eints | translators | |
ukrainian: 1 change by nsergiy korean: 1 change by telk5093 | |||
2020-06-22 | Fix #8230: Resolve ".." when opening files in .tar (#8231) | glx22 | |
2020-06-22 | Fix 63ccb36e: Incorrect string type for OrderBackup::name save/load | Jonathan G Rennison | |
In 63ccb36e BaseConsist::name was changed from a malloced char* to a std::string. OrderBackup inherits from BaseConsist. The saveload of OrderBackup::name was not updated. | |||
2020-06-21 | Fix: Thread unsafe use of NetworkAddress::GetAddressAsString | Jonathan G Rennison | |
Remove static buffer form of NetworkAddress::GetAddressAsString. This is used in multiple threads concurrently, and is not thread-safe. Replace it with a form returning std::string. | |||
2020-06-19 | Update: Translations from eints | translators | |
swedish: 33 changes by Joel_A | |||
2020-06-18 | Fix: [CMake] Fix install paths using GNUInstallDirs | Dan Church | |
2020-06-18 | Fix: Racy use of flags in TCPConnecter::CheckCallbacks | Jonathan G Rennison | |
conected and aborted flags are used concurrently from multiple threads. | |||
2020-06-18 | Fix: Violation of strict weak ordering in group name sorters | Jonathan G Rennison | |
This could be caused by a group being renamed, and the old name being cached from a previous sort. See: #7838 | |||
2020-06-18 | Fix: Violation of strict weak ordering in engine name sorter | Jonathan G Rennison | |
This could be caused by an engine being renamed, and the old name being cached from a previous sort. See: #7838 | |||
2020-06-18 | Codechange: Use template type for GUIList::Sort comparator | Jonathan G Rennison | |
2020-06-18 | Change: Allow command cost-estimation while paused. | frosch | |
2020-06-18 | Fix: Silence some warnings when building with clang-cl on VS 2019 | Niels Martin Hansen | |
Clang-cl presents as both _MSC_VER and __clang__ in the preprocessor which makes some things confusing. | |||
2020-06-18 | Fix #8104: Always add WINDOW_RESIZABLE flag to SDL2 (#8211) | nikolas | |
This fixes a bug that can reproduced with these steps: * Start openttd in fullscreen mode * Turn off fullscreen mode * Try to resize the window. The window can't be resized. | |||
2020-06-12 | Update: Translations from eints | translators | |
polish: 1 change by MaksOPENTTD1 danish: 1 change by beruic | |||
2020-06-12 | Add: [CMake] Always export compile commands (#8199) | Frédéric Simonis | |
2020-06-10 | Revert f51e66f6: creating zip bundle fails for MacOS | glx22 | |