Bug fixes:
- ✅ Fix: Fixed a silent UI crash in the Plasma 6 widget that caused the "No cheatsheets found" empty state to persistently show even when cheats were successfully indexed in the background. The crash was caused by using
cheatsModel.slice()to copy the model array. In Qt 6 QML, JavaScript arrays passed across component boundaries (frommain.qmltoFullRepresentation.qml) are implicitly converted toQVariantList, which does not support the.slice()method. Replaced it with a safe manual copy loop.
Full Changelog: https://github.com/dominatos/devtoolbox-cheats/blob/main/CHANGELOG.md