summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-02Fix ccb4c37: Use of possibly uninitialised pointer (#7818)Charles Pigott
2019-11-02Fix: Remove duplicate entry from changelogCharles Pigott
2019-11-02Fix: [Pipelines] Account for versions being more than one digit when ↵Charles Pigott
generating changelog output
2019-11-02Fix #5405: Aircraft could route to depots outside their range (#7104)SamuXarick
2019-11-01Fix #7784: up/down/home/end key behavior in SDL2Nikolas Nyby
Closes #7784.
2019-11-01Codechange: [OSX] Use std::unique_ptr with a custom deleter to simply memory ↵Michael Lutz
management of Core Foundation types.
2019-10-30Update: Translations from eintstranslators
korean: 6 changes by telk5093
2019-10-30Codechange: No longer expect iculx when building debsCharles Pigott
2019-10-30Change: [Pipelines] Remove jessie, add buster debian release buildsCharles Pigott
2019-10-29Update: Translations from eintstranslators
korean: 2 changes by telk5093
2019-10-28Fix: A few places still referred to old name of COPYING and READMECharles Pigott
2019-10-28Update: Changelog and other release files for 1.10.0-beta1Charles Pigott
2019-10-28Doc: Updates from 1.9Charles Pigott
2019-10-28Add: MeCharles Pigott
2019-10-28Doc: use a markdown version of GPL v2 for COPYING.md, also restore a missing ↵Andy
line about copying to the GPL v2 wording
2019-10-28Doc: append .md to COPYING file, peparatory to converting it to markdownAndy
2019-10-27Fix: spelling/grammar in script_tile.hpp (#7804)James103
2019-10-27Update: Translations from eintstranslators
spanish (mexican): 2 changes by Absay
2019-10-26Fix #7733: Crash when removing a dock next to an industry without a stationCharles Pigott
2019-10-26Fix 53f8d0b81: signed/unsigned warnings (#7803)glx22
2019-10-25Fix: Solved helicopter takeoff issue with international airportsJack McKiernan
Helicopters can now take off from just outside the hangars.
2019-10-25Codechange: Replaced 255's with an enum entry TERMGROUPJack McKiernan
2019-10-25Codechange: Replaced 0's in heading field with TO_ALLJack McKiernan
2019-10-25Fix #6219: Allow taking off from hangar in commuter airportJack McKiernan
Previously, a helicopter in the hangar of a commuter airport would have to wait until HELIPAD2 was free before it could takeoff. Now, a helicopter in the hangar can takeoff from just outside the hangar.
2019-10-25Fix: Possible double path separator in FiosMakeFilenameJuriy Petrochenkov
2019-10-25Codechange: Don't use SDL_CreateRGBSurfaceWithFormat()Nikolas Nyby
This function requires libSDL 2.0.5 or higher. It looks like we don't need to use it, and can just use the original SDL_CreateRGBSurface(), with the masks set to 0, to trigger the default 8-bit format, which is SDL_PIXELFORMAT_INDEX8. Closes #7785 Note: this code path is activated by using an 8-bit blitter, like: ./bin/openttd -b 8bpp-simple
2019-10-23Doc: fix 3 mis-spellings of 'official'Andy
2019-10-23Fix 3575dd551: update names for installerglx
2019-10-22Fix 3575dd551: update names for the bundles (#7794)glx22
2019-10-22Doc: CONTRIBUTING.md - add official goals section, link from other sections, ↵Andy
minor other tidying
2019-10-22Add: [Script] ScriptEventVehicleAutoReplaced.glx
2019-10-21Fix #7561: Fix power/running-cost vehicle sorterdorobouNeko
2019-10-21Update: Translations from eintstranslators
finnish: 6 changes by hpiirai tamil: 62 changes by aswn dutch: 2 changes by JanWillem
2019-10-20Update: Translations from eintstranslators
russian: 2 changes by Lone_Wolf
2019-10-20Doc: rename HOWTO_compile_lang_files.mdAndy
No need for the caps, no other pattern of "HOWTO" in file names.
2019-10-20Doc: rename the modified filesglx
2019-10-20Doc: convert some docs to markdown (without rename)Andy
2019-10-19Fix: add savegame version to trading age settingJack Baron
2019-10-19Fix: Bump savegame versionJack Baron
2019-10-19Feature: Configure minimum share trading yearsJack Baron
2019-10-19Codechange: Use std::vector for industry tile layoutsNiels Martin Hansen
2019-10-19Doc: split compiling instructions from README, as they aren't required for ↵Andy
casual GitHub visitors
2019-10-17Doc: drop Readme_OS2, it has aged, let it go gracefullyAndy
2019-10-17Update: Translations from eintstranslators
french: 1 change by glx
2019-10-12Fix #7703: Prevent sounds being produced by inactive industries (#7752)abmyii
2019-10-08Update: Translations from eintstranslators
chinese (traditional): 1 change by firetimer chinese (simplified): 66 changes by firetimer
2019-10-08Fix #6407: Show snowy ground sprites for depots (#7671)stormcone
This is a quick fix by @KeldorKatarn: https://github.com/KeldorKatarn/OpenTTD_PatchPack/commit/65e656b9d6b24476d074ec6b41830a8f197d535b It has the drawback that snow is draw to the inside the depots as well, as the removed comment suggests.
2019-10-08Codechange: Performance improvement in k-d tree FindNearest()Gabda
2019-10-08Fix #7635: Game crash on exit scenario editor.stormcone
2019-10-07Fix: [MINGW32] Fix launch on Windows 7 x64Joe Stringer
Prior to this commit, the following is observed when running openttd.exe that was compiled using mingw32 on x86_64: > The procedure entry point ScriptBreak could not be located in the dynamic link library GDI32.dll The MSDN docs at the below link state that modules using Uniscribe must first link against usp10 before gdi32 to avoid this issue: https://msdn.microsoft.com/en-us/library/windows/desktop/dd319118(v=vs.85).aspx Signed-off-by: Joe Stringer <joe@wand.net.nz>