Kaan
cf3f90f62d
add the modification date
2023-08-30 01:53:11 +03:00
h-kaan
ca306b9007
kesim -> kesit
& improvements
2023-08-30 01:43:50 +03:00
hamdikaan
cfcde2d115
small fix & edit
2023-08-23 18:33:56 +03:00
hamdikaan
37fc267720
turkish translation
2023-08-23 17:18:59 +03:00
Robert Müller
df62615438
Merge pull request #7057 from ChillerDragon/pr_serverinfo_07
...
Replace 0.7 serverinfo magic number with enum
2023-08-22 21:00:28 +02:00
ChillerDragon
796d79ad5b
Replace 0.7 serverinfo magic number with enum
2023-08-22 13:53:08 +02:00
Dennis Felsing
55789819a3
Merge pull request #7026 from ChillerDragon/pr_auth_unused
...
NETMSG_AUTH_CHALLENGE is not used in 0.6 or 0.7
2023-08-22 09:59:58 +00:00
ChillerDragon
87640d7857
NETMSG_AUTH_CHALLENGE is not used in 0.6 or 0.7
2023-08-22 10:31:16 +02:00
Dennis Felsing
afbb95fc15
Merge pull request #7043 from def-/pr-ukraine-fix
...
Fix Ukrainian translation (by Jurai!)
2023-08-19 23:34:03 +00:00
Dennis Felsing
f4d3c04168
fix by JuralBOZO
2023-08-20 01:06:00 +02:00
Dennis Felsing
dc7366f7a4
Merge pull request #7048 from Robyt3/Editor-Saved-Brush-No-Clear
...
Don't clear saved brushes when loading another map
2023-08-19 23:05:31 +00:00
Dennis Felsing
65985769ec
Merge pull request #7047 from Robyt3/Menus-Settings-Background-Map-Improvements
...
Add button to reload entities background, improve DDNet menu layout
2023-08-19 23:05:10 +00:00
Robert Müller
a325245397
Don't clear saved brushes when loading another map
...
It was not actually necessary to clear the brushes to prevent the crashes. The crashes were fixed by not storing the texture handles for the layers anymore.
Closes #7024 .
2023-08-19 20:46:14 +02:00
Robert Müller
6633e9af1d
Add button to reload entities background, improve DDNet menu layout
...
Add a button to manually reload the entities background map instead of automatically reloading it when it's changed. As the background map was only reloaded every 10 seconds, sometimes changing the background map quickly had no effect.
Improve the layout of the DDNet settings menu. Align labels and UI elements and reduce unused empty space.
2023-08-19 17:44:58 +02:00
Robert Müller
7c1a667486
Merge pull request #7046 from infclass/kaffeine/drop-rendering-paused-by-default
...
Remove cl_video_pause_on_start; reset the pause option on popup opened
2023-08-19 11:42:54 +00:00
Dennis Felsing
ae12d8d9f6
Merge pull request #7045 from Robyt3/Loglevel-Variable-Fixes
...
Save console output variables again, improve descriptions
2023-08-19 11:20:24 +00:00
Alexander Akulich
29688fb499
Remove cl_video_pause_on_start; reset the pause option on popup opened
2023-08-19 13:51:38 +03:00
Robert Müller
db1452d0a8
Merge pull request #6988 from Marmare314/envelope-scale
...
implement scaling for envelope editor
2023-08-19 09:49:17 +00:00
Robert Müller
6ba328dfdb
Merge pull request #7009 from Possseidon/dev/multi-view-team
...
Allow automatic multi-view for players in a team
2023-08-19 09:01:10 +00:00
Robert Müller
bfe1175558
Save console output variables again, improve descriptions
...
As #6451 was partially reverted by #5434 .
2023-08-19 10:53:47 +02:00
Dennis Felsing
857e954d4c
More Ukrainian fixes by Jurai!
2023-08-18 21:23:23 +02:00
Dennis Felsing
a953481cdf
Fix Ukrainian translation (by Jurai!)
2023-08-18 21:12:05 +02:00
Robert Müller
6f47235edc
Merge pull request #7037 from def-/pr-shutdown-stuck
...
Shut down db connection pool (fixes #7036 )
2023-08-17 18:35:34 +00:00
Dennis Felsing
a44bd9d3e1
Shut down db connection pool ( fixes #7036 )
2023-08-17 14:35:58 +02:00
marmare314
23e2d9377d
implement scaling for envelope editor
2023-08-16 15:06:41 +02:00
Dennis Felsing
2e1157bf3f
Merge pull request #7032 from Marmare314/issue_7031
...
Do not activate box selection when panning (fixes #7031 and fixes #7030 )
2023-08-16 12:56:15 +00:00
marmare314
fded5013eb
Do not activate box selection when panning ( fixes #7031 and #7030 )
...
And do not pan while any other operation is in progress.
2023-08-16 12:17:06 +02:00
Dennis Felsing
b52fa5e910
Merge pull request #7028 from Robyt3/Base-Str-Utf8-Offset-Functions
...
Add utility functions for converting UTF-8 bytes ↔ chars offsets
2023-08-15 21:10:38 +00:00
Dennis Felsing
26cf933e9f
Merge pull request #7027 from Robyt3/Client-OnWindowResize-Editor-Fix
...
Move `OnWindowResize` listener to engine, handle editor
2023-08-15 21:07:30 +00:00
Robert Müller
af3870a64d
Add utility functions for converting UTF-8 bytes ↔ chars offsets
...
Add `str_utf8_offset_bytes_to_chars` and `str_utf8_offset_chars_to_bytes` functions to base system to convert between byte and UTF-8 character offsets in UTF-8 strings.
Previously, this was separately implemented in the textrender and in the lineinput helper.
These textrender functions are entirely replaced by the new functions:
- `ITextRender::SelectionToUTF8OffSets` (by `str_utf8_offset_chars_to_bytes`)
- `ITextRender::UTF8OffToDecodedOff` (by `str_utf8_offset_bytes_to_chars`)
- `ITextRender::DecodedOffToUTF8Off` (by `str_utf8_offset_chars_to_bytes`)
These lineinput helper functions are reimplemented using the new functions:
- `CLineInput::OffsetFromActualToDisplay` (uses `str_utf8_offset_bytes_to_chars`)
- `CLineInput::OffsetFromDisplayToActual` (uses `str_utf8_offset_chars_to_bytes`)
2023-08-15 22:11:25 +02:00
Robert Müller
7168fb15d2
Move OnWindowResize
listener to engine, handle editor
...
Register the `OnWindowResize` listener in the engine client instead of the game client and properly dispatch the event also to the editor, so text containers in the editor are cleared when the window is resized.
Closes #7018 .
2023-08-15 20:17:27 +02:00
Robert Müller
5567c56d3a
Reorder CClient
interface pointers alphabetically
2023-08-15 19:47:52 +02:00
Robert Müller
15be3c3944
Remove unused m_DebugSoundIndex
variable
2023-08-15 19:47:52 +02:00
Jupeyy
107ac6705d
Merge pull request #7021 from Robyt3/TextRender-Container-Atlas-Fix
...
Reset text containers on language change
2023-08-14 22:02:19 +00:00
Dennis Felsing
77a6425d37
Merge pull request #7019 from rffontenelle/rffontenelle-patch-1
...
Update brazilian_portuguese.txt
2023-08-14 21:44:01 +00:00
Robert Müller
f90e908c9d
Reset text containers on language change
...
Fix text containers rendering broken text after the language is changed, as this cleared the glyph atlas without clearing the references to the glyph positions in the text containers. Now `OnWindowResize` is also called on language change to reset all text containers.
However, the glyph atlas is not cleared on normal window resize anymore, because this seems to be unnecessary.
2023-08-14 23:04:55 +02:00
Rafael Fontenelle
92a364ebac
Update brazilian_portuguese.txt
2023-08-14 14:18:22 -03:00
Dennis Felsing
b9355880b3
Merge pull request #7015 from k-i-o/k-i-o-patch-1-2
...
Update italian.txt
2023-08-14 10:23:09 +00:00
Samuele Radici
5d4bd3ce9f
Update italian.txt
2023-08-14 11:57:48 +02:00
Dennis Felsing
a730987767
Merge pull request #7013 from M0REKZ/macos-app-fix
...
Minimal fix for macOS info.plist
2023-08-14 09:12:40 +00:00
Edgar
21d358434f
Merge pull request #7014 from Marmare314/mapview
...
Add CEditorComponent to moduralize editor
2023-08-14 08:44:31 +00:00
marmare314
77e36c5062
change interface and fix scalelength
2023-08-14 10:12:06 +02:00
marmare314
a46f320d24
remove unnecessary include
2023-08-14 09:03:03 +02:00
marmare314
7925f9fd45
format
2023-08-14 08:59:01 +02:00
marmare314
72b0fbfada
format
2023-08-14 08:53:59 +02:00
marmare314
2bcfbae841
Add CEditorComponent to moduralize editor
...
Refactor CSmoothZoom and introduce CMapView
2023-08-14 08:36:02 +02:00
+KZ
8a7601f6c1
Fix exec names at info.plist
2023-08-13 16:21:18 -04:00
Possseidon
07e9c5a684
Allow automatic multi-view for players in a team
2023-08-13 15:38:36 +02:00
Dennis Felsing
a66aac1f79
Merge pull request #7005 from k-i-o/k-i-o-patch-1-1
...
Update italian.txt
2023-08-12 21:39:14 +00:00
Dennis Felsing
255092ff92
Merge pull request #7003 from Robyt3/Scoreworker-Query-Size-Fix
...
Increase another SQL query buffer size
2023-08-12 21:24:07 +00:00