[Autosave] Add localtex API support, fix cancer #372
No reviewers
Labels
No labels
bug
dependencies
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
IllusionMods/KK_Plugins!372
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "Autosave-localtex-support"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Pull Request Overview
This PR removes unused package dependencies and adds new configuration options for texture save type overrides during autosaves. The changes modernize dependencies by updating IllusionModdingAPI packages to version 1.44.0 and removing unnecessary analyzers and ExtensibleSaveFormat packages.
Key changes:
Reviewed Changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 1 comment.
Show a summary per file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
The
Joinmethod usage is incorrect.Split(' ')returns astring[], but theJoinmethod signature used hereJoin((x) => x, \"\")is not a valid extension method on arrays. This should usestring.Join(\"\", _val.Split(' '))instead to concatenate the split string parts.