Skip to content

v2.2.4

Choose a tag to compare

@github-actions github-actions released this 27 Jul 02:41
· 145 commits to main since this release

πŸš€ PalworldSaveTools v2.2.4

πŸ› οΈ Compatibility

  • App Version: 2.2.4
  • Game Version: 1.0.1

πŸ“¦ Downloads

Platform File
πŸͺŸ Windows PST_standalone_v2.2.4.zip
🐧 Linux PalworldSaveTools-V2.2.4-linux.AppImage
🍎 macOS PalworldSaveTools-V2.2.4-macos.dmg

πŸ“₯ Full release: https://github.com/deafdudecomputers/PalworldSaveTools/releases/tag/v2.2.4


πŸ“ Changelog

  • Eliminated all deleteLater() calls β€” every widget.deleteLater() in the codebase (29 sites across 20 files) replaced with widget.hide() + widget.setParent(None). deleteLater() defers widget destruction to the Qt event loop, which when called inside a modal dialog.exec() causes the nested event loop to process the deferred delete immediately, destroying C++ widgets while signal handlers are still running β€” a guaranteed use-after-free crash. Simply detaching widgets from their parent avoids the event loop entirely; orphaned C++ objects are cleaned up by Qt's parent-child ownership when the container widget is destroyed. Fixes hard crashes in player inventory add-item, learned moves skill removal/bulk operations, world option setting switches, passive loadout preview, guild search, technology search, tab switching, breeding results, wiki content rebuild, base pal slots, item slot rebuild, mission list rebuild, map zone cleanup, context menus, and GamePass save list rebuild.
  • Base Pals column in map viewer tree β€” the guild/base tree in the Map tab now shows a sortable "Base Pals" column displaying the total worker pal count per guild and per base, read from each base's WorkerDirector container slot count.
  • QTimer lambdas no longer capture self unsafely β€” 5 QTimer.singleShot callbacks that referenced self directly could fire after the owning widget was destroyed, causing use-after-free. Each now uses a default-arg guard or existence check so the callback is a no-op if the widget is already gone.

🀝 Support

Thank you for using PalworldSaveTools! πŸ™