Add more information to zipmod list and properties #234
No reviewers
Labels
No labels
bug
dependencies
duplicate
enhancement
good first issue
help wanted
invalid
mod updater
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
IllusionMods/KKManager!234
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "cards"
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 enhances the sideloader viewer UI with a resizable split container layout and improves property display for mod metadata. The key changes include restructuring the UI for better flexibility, adding a new column for content type, and improving the browsability of manifest data in property grids.
Reviewed Changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
Files not reviewed (2)
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
@ -59,0 +76,4 @@if (IDOld != 0 || IDNew != 0){sb.AppendFormat(" idOld=\"{0}\"", IDOld);sb.AppendFormat(" idNew=\"{0}\"", IDNew);Using the fully qualified type name
System.Text.StringBuilderis unnecessary sinceusing System.Textcould be inferred or would typically be present. However, since this file already has ausingstatement added at the top, consider using justStringBuilderfor consistency with theusing System.ComponentModelpattern.The condition
IDOld != 0 || IDNew != 0may not correctly represent the intent. If the goal is to show ID values when either is non-zero, this is correct. However, if both IDs should be shown together or not at all, consider using&&instead. Additionally, when only one ID is non-zero, showing both might be confusing since one will display 0.