Skip to content

Tags: exult/exult

Tags

snapshot-v1.13.1.20251113

Toggle snapshot-v1.13.1.20251113's commit message

Verified

This commit was signed with the committer’s verified signature.
wench Alexis Ryan
Fix bounds checking in ShapeID::get_special_pixel()

snapshot-v1.13.1.20251109

Toggle snapshot-v1.13.1.20251109's commit message

Verified

This commit was signed with the committer’s verified signature.
wench Alexis Ryan
Fix ci-msvc exult studio builds by manually downloading GNOME source …

…archives that vcpkg is failing to automatically download

snapshot-v1.13.1.20251106

Toggle snapshot-v1.13.1.20251106's commit message
Don't show the hungry face stats badge when you cheat disabled feeding.

snapshot-v1.13.1.20251105

Toggle snapshot-v1.13.1.20251105's commit message
One more case for v2 chunks

snapshot-v1.13.1.20251103

Toggle snapshot-v1.13.1.20251103's commit message
Fix #723 and play song 18 whenever you successfully flee and use the …

…assigned song names throughout combat.cc

snapshot-v1.13.1.20251102

Toggle snapshot-v1.13.1.20251102's commit message

Verified

This commit was signed with the committer’s verified signature.
wench Alexis Ryan
Implement Auto repeat when slider buttons are held

snapshot-v1.13.1.20251101

Toggle snapshot-v1.13.1.20251101's commit message

Verified

This commit was signed with the committer’s verified signature.
wench Alexis Ryan
Removing debug code from Modal_Gump.cc that was accidentally committed

snapshot-v1.13.1.20251031

Toggle snapshot-v1.13.1.20251031's commit message
Removing hard-coded cap of 2048 flags

Now we can have up to 32768 flags, mostly due to usecode limitations. This could be changed at a later date.

Globals will be written in "pages" of 2048 flags, and compacted to the least number of pages sufficient for the last set flag.

Fixed a bug on Usecode machine where an invalid flag number (too low or too high) would result in a value not being popped from the Usecode stack -- there seem to be many other such issues.

Fixes #813 Remove hardcoded cap on flags

snapshot-v1.13.1.20251029

Toggle snapshot-v1.13.1.20251029's commit message

Verified

This commit was signed with the committer’s verified signature.
wench Alexis Ryan
Fix broken clipping rect handling in Font::paint_text_box(). It ignor…

…ed any existing clipping rect and overwrote it with its own and set clip to fullscreen when leaving. Now correctly inersects it's desired clipping rect with the existing one is restored when the method returns

snapshot-v1.13.1.20251028

Toggle snapshot-v1.13.1.20251028's commit message
Quick saving on mobile platforms when we loose focus instead of on ev…

…ent SDL_EVENT_WILL_ENTER_BACKGROUND.

SDL3 requires a callback set with SDL_AddEventWatch which might need to run on a different thread and which might disrupt the quick save.
Fixes #812