152063 Commits

Author SHA1 Message Date
sluicebox
425ee5e8d7 GUI: Fix saveload display of selected empty items
Fixes minor bug introduced in 829c600a02ad6124006ae8cc784a873f52140637

In the saveload list dialog, selecting an empty slot before the last
save stopped coloring most of the row. Empty slots after the last save
continued to display correctly. Now both code blocks are consistent and
the selected row is always fully colored.
2024-05-22 21:46:24 -04:00
Eugene Sandulenko
3c23e9e2a6
DIRECTOR: DEBUGGER: Added navigation buttons to script window 2024-05-23 01:27:17 +02:00
Eugene Sandulenko
988dbf3fa0
DIRECTOR: DEBUGGER: Restrict max number of columns to 511
This is currntly a hard limit of ImGui
2024-05-23 00:50:43 +02:00
ScummVM-Translations
06227c2f82 I18N: Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: ScummVM/scummvm
Translate-URL: https://translations.scummvm.org/projects/scummvm/scummvm/
2024-05-22 22:45:01 +00:00
Strangerke
52fcf3ef58 BAGEL: Fix some more PVS Studio issues, add some missing override keywords 2024-05-22 23:44:26 +01:00
IlDucci
a864f76313 I18N: Update translation (Spanish)
Currently translated at 100.0% (2198 of 2198 strings)
2024-05-22 21:59:53 +00:00
scemino
d9b4e424ec DIRECTOR: Fix spacing in syntax highlighting 2024-05-22 23:12:50 +02:00
scemino
c5f71f402d DIRECTOR: In script code make variables watchable 2024-05-22 23:12:50 +02:00
Eugene Sandulenko
6b4e3dcb41
DEVTOOLS: Sort engines alphabetically in prerelease checks 2024-05-22 22:46:03 +02:00
ScummVM-Translations
324cea57de I18N: Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: ScummVM/scummvm
Translate-URL: https://translations.scummvm.org/projects/scummvm/scummvm/
2024-05-22 20:45:25 +00:00
Eugene Sandulenko
6bd740d35e
DEVTOOLS: Added bagel.dat and nancy.dat prerelease checks 2024-05-22 22:44:59 +02:00
ScummVM-Translations
71ba8eb602 I18N: Update translations templates 2024-05-22 19:59:29 +00:00
Eugene Sandulenko
dff2efc766
LICENSES: Make sure every license file has an appropriate Note
This is required to remove potential confusion in regards to
where certain licenses are applied
2024-05-22 21:59:00 +02:00
Eugene Sandulenko
681b9b744e
DEVTOOLS: Implemented sanity License files pre-release checks 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
9829448a02
MACOS: Added missing License files to macOS menu 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
a69f9e5afb
DISTS: REDHAT: Added missing License files 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
1033d8ce68
CREATE_PROJECT: Added missing License files 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
1919a349e4
WIN32: Added missing License files 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
10da6c6acb
MAEMO: Added missing License files 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
01076c8b62
IRIX: Added missing License files 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
b1605807f5
BUILD: Added missing License files to makefiles 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
3746945ad5
DEVTOOLS: Split out themes check into a separate test 2024-05-22 21:59:00 +02:00
Eugene Sandulenko
19b11a9aaf
GLK: Move common/translation.h include to .cpp file
That makes release checker happy and is less error-prone.
2024-05-22 21:59:00 +02:00
Eugene Sandulenko
04749e30cb
GOB: Make release checker happier in regards of POTFILES 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
220304a5a3
DEVTOOLS: Update POTFILES release check 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
c5e57db522
MM: Remove moved file from POTFILES 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
0054119f56
TWP: Added missing file to POTFILES 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
664e1737c3
I18N: Update POTFILES with source changes 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
eb91c70705
FREESCAPE: Added missing files to POTFILES 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
1fe1f23f4c
AGS: Update POTFILES 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
48c8ff47c6
TWP: Remove unneded include 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
472f59c610
LIBRETRO: Moved include to the relevant .cpp file 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
c42742ded8
DISTS: Added missing references to bagel.dat 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
f070a10b77
DEVTOOLS: Fix release check for new arrangement for dat files 2024-05-22 21:58:59 +02:00
Eugene Sandulenko
a3e95db5f3
DIRECTOR: Added README to Lingo Decoder and relevant license file 2024-05-22 21:58:59 +02:00
scemino
4bb750b41d DIRECTOR: Add more syntax highlighting 2024-05-22 20:54:24 +02:00
Marco Borrini
3b75940ade GLK: GLULX: Adds about 80 new entries 2024-05-22 17:35:29 +02:00
Marco Borrini
be9f3528d5 GLK: ZCODE: Adds about 200 new entries 2024-05-22 17:35:29 +02:00
Eugene Sandulenko
72b6d90e2e
DIRECTOR: LINGOTESTS: Fix reference.lingo test, wrapped compile-only tests 2024-05-22 17:32:54 +02:00
Scott Percival
523d31590e DIRECTOR: Prevent exitFrame handler from running twice
It is possible to call "pause" in the exitFrame handler, then rely on
another handler (e.g. mouseDown) to call "continue" to start the movie
playback. exitFrame should not be called again once playback is resumed.

Fixes entering the first hatch in L-Zone.
Fixes D4-unit/T_EVNT12.DIR in director-tests.
2024-05-22 17:24:31 +02:00
Scott Percival
8e6ba00bc2 DIRECTOR: XOBJ: Fix MMovie to rename autosaves to something sensible 2024-05-22 17:24:31 +02:00
Scott Percival
337f214ff4 DIRECTOR: Move equality warnings behind debug gate 2024-05-22 17:24:31 +02:00
Scott Percival
6461bdcd25 DIRECTOR: Clean up array compare code, add more tests 2024-05-22 17:24:31 +02:00
Scott Percival
f673761135 DIRECTOR: LINGO: Fix b_count for RECT and POINT 2024-05-22 17:24:31 +02:00
Scott Percival
9a822aa057 DIRECTOR: LINGO: Add more list edge cases 2024-05-22 17:24:31 +02:00
Scott Percival
fb1f453dc1 DIRECTOR: LINGO: Allow nonsense coercion of symbol to integer
Fixes the collision detection loop in the maze minigame of Virtual
Nightclub.
2024-05-22 17:24:31 +02:00
Scott Percival
417106a9d0 DIRECTOR: LINGO: Fix typo in fetching CastScripts with b_script 2024-05-22 17:24:31 +02:00
Scott Percival
cf47a34a86 DIRECTOR: LINGO: Add POINT/RECT support to Lingo::setObjectProp 2024-05-22 17:24:31 +02:00
Scott Percival
6819a99fcf DIRECTOR: XOBJ: Fix MMovie save dialog + return ticks 2024-05-22 17:24:31 +02:00
Scott Percival
782ad3f28f DIRECTOR: LINGO: Add better logging for Datum equality/comparison 2024-05-22 17:24:31 +02:00