Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-17 | Change: "(Business/Chair)man" to "...person" (#8659) | Wuzzy | |
2021-02-17 | Fix: [SDL2] simplify what to redraw to prevent tearing (#8685) | Patric Stout | |
When there are a lot of rects to redraw, of which one of the last ones is almost the full screen, visual tearing happens over the vertical axis. This is most visible when scrolling the map. This can be prevented by using less rects. To simplify the situation, and as solutions like OpenGL need this anyway, keep a single rect that shows the biggest size that updates everything correctly. Although this means it needs a bit more time redrawing where it is strictly seen not needed, it also means less commands have to be executed in the backend. In the end, this is a trade-off, and from experiments it seems the approach of this commit gives a better result. | |||
2021-02-17 | Fix #8676, a2c3197f: GUI-visible settings may not be part of misc settings. | Michael Lutz | |
2021-02-17 | Codechange: Allow early-load settings that are not misc settings. | Michael Lutz | |
2021-02-17 | Update: Translations from eints | translators | |
german: 2 changes by Wuzzy2 slovak: 5 changes by FuryPapaya dutch: 4 changes by LouisDeconinck spanish: 1 change by MontyMontana | |||
2021-02-17 | Fix 52317bb7: [SDL2] ensure we don't try to blit out of bounds (#8684) | Patric Stout | |
During resizing, there can still be dirty-rects ready to blit based on the old dimensions. X11 with shared memory enabled crashes if you try to do this. So, instead, if we resize, reset the dirty-rects. This is fine, as moments later we mark the whole (new) screen as dirty anyway. | |||
2021-02-16 | Fix: framerate window showed a slightly higher rate than actually measured ↵ | Patric Stout | |
(#8682) The first point was counted, but also initialized as "last". As such, it didn't add to "total", but did add to "count", which made the "count" 1 more than the total actually represents. | |||
2021-02-16 | Update: Translations from eints | translators | |
korean: 2 changes by telk5093 indonesian: 11 changes by dimaspaf14 russian: 2 changes by Ln-Wolf finnish: 3 changes by hpiirai french: 4 changes by glx22 | |||
2021-02-15 | Update: Translations from eints | translators | |
korean: 2 changes by telk5093 german: 56 changes by Wuzzy2 finnish: 2 changes by hpiirai catalan: 2 changes by J0anJosep polish: 9 changes by yazalo | |||
2021-02-15 | Fix: [Actions] Use vcpkg to provide libpng on macOS | Owen Rudge | |
2021-02-15 | Add: Allow translation of "(Directory)" and "(Parent directory)" | glx22 | |
2021-02-14 | Fix: Stopped ships shouldn't block depots (#8578) | Tyler Trahan | |
2021-02-14 | Feature: [GS] Allow non-question type windows to have no buttons | dP | |
2021-02-14 | Fix: VkMapping declarations violated C++ ODR rule. | milek7 | |
2021-02-14 | Change: move the 'road drive side' selection to settings tree, and give it ↵ | frosch | |
the same 'basic' visibilty as 'signal side'. | |||
2021-02-14 | Change: move townname generator selection to mapgen GUI. | frosch | |
2021-02-14 | Codechange: move non-GUI code to non-GUI source files. | frosch | |
2021-02-14 | Codechange: turn a constant variable into a real constant. | frosch | |
2021-02-14 | Codechange: minor rearrangement of settings in random map and heightmap GUI. | frosch | |
2021-02-14 | Change: move the 'tree placer algorithm' selection to the settings tree ↵ | frosch | |
window, and give it the same 'basic' visibility as 'in-game tree placement'. | |||
2021-02-14 | Doc: Add labels to landscape grid description. (#8452) | Joan Josep | |
2021-02-14 | Update: Translations from eints | translators | |
slovak: 13 changes by FuryPapaya catalan: 7 changes by J0anJosep french: 1 change by arikover | |||
2021-02-14 | Add: [OSX] Automatic zoom level suggestion for Cocoa video driver. | Michael Lutz | |
2021-02-14 | Add: [Win32] Automatic zoom level suggestion for Win32 video driver. | Michael Lutz | |
The zoom level suggestion is based on the DPI scaling set in Windows. We use 150% scaling as the threshold for 2X zoom and 300% scaling as the threshold for 4X zoom. | |||
2021-02-14 | Codechange: [Win32] Increase SDK version for 32-bit target. | Michael Lutz | |
Use the same Windows XP target as for 64-bit. Current MSVC version will not produce a binary that works on anything earlier anyway. | |||
2021-02-14 | Codechange: Re-init GUI zoom only when really changed. | Michael Lutz | |
2021-02-14 | Feature: Automatic UI and font zoom levels when supported by the OS. | Michael Lutz | |
2021-02-14 | Codechange: Make the settings for min/max zoom early load settings. | Michael Lutz | |
2021-02-14 | Fix 9c872192: [OSX] Clear mouse button emulation flag. | Michael Lutz | |
2021-02-14 | Add: [OSX] Setting to disable HiDPI graphics rendering. | Michael Lutz | |
2021-02-14 | Change: [OSX] Render screen in full native resolution on HiDPI displays. | Michael Lutz | |
2021-02-14 | Codechange: Consistently use screen size and not driver resolution for ↵ | Michael Lutz | |
determining window sizes. | |||
2021-02-14 | Change: [OSX] When auto-detecting a font, try for sans-serif first. | Michael Lutz | |
On a display, especially with small fonts or low pixel sizes, sans-serif fonts are usually easier to read than serif fonts. | |||
2021-02-14 | Add: [OSX] Native font rendering without using FreeType. | Michael Lutz | |
2021-02-14 | Codechange: Replace magic numbers by constants. | Michael Lutz | |
2021-02-13 | Fix #8620: Scale spacing between date & news in history window according to ↵ | Charles Pigott | |
font scaling | |||
2021-02-13 | Fix #8625: Wrong ending year was displayed in highscore table | Charles Pigott | |
2021-02-13 | Change: Make order window hotkeys toggle for load & unload variants | Charles Pigott | |
2021-02-13 | Cleanup: [OSX] Improve some comments. | Michael Lutz | |
2021-02-13 | Codechange: [OSX] Remove unused 'app active' flag. | Michael Lutz | |
2021-02-13 | Fix: [OSX] An emulated right mouse down event has to be followed by right ↵ | Michael Lutz | |
mouse up. | |||
2021-02-13 | Codechange: [OSX] Use relative mouse handling during scrolling. | Michael Lutz | |
2021-02-13 | Change: [OSX] Use a layer-backed view to speed up drawing. | Michael Lutz | |
2021-02-13 | Codechange: [OSX] Align backing buffer pitch for a tiny bit performance. | Michael Lutz | |
2021-02-13 | Cleanup: [OSX] Move event loop into video driver file. | Michael Lutz | |
2021-02-13 | Remove: [OSX] Startup splash screen. | Michael Lutz | |
It wasn't displayed anyway as it was never copied to the bundle. | |||
2021-02-13 | Codechange: [OSX] Move key event handling to our view. | Michael Lutz | |
2021-02-13 | Codechange: [OSX] Move mouse event handling to our NSView. | Michael Lutz | |
2021-02-13 | Codechange: [OSX] Move some things from video driver to our NSView. | Michael Lutz | |
2021-02-13 | Codechange: [OSX] Use newer mouse tracking API. | Michael Lutz | |