-
Notifications
You must be signed in to change notification settings - Fork 14
Feat/mumod-integration #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
d58f3d8
feat(i18n): add MuMod internationalization entries
clansty f2f93c2
feat(mod): add Tomlyn NuGet and MuMod paths
clansty c57dde9
feat(mod): add MuModService for cache and config management
clansty 6ef4ad7
feat(mod): load AquaMai config from MuMod cache
clansty 53f0864
feat(mod): extend GameModInfo with MuMod fields
clansty e30abb1
feat(mod): add MuMod install/delete endpoints
clansty cf2e622
feat(mod): add MuMod config and channel endpoints
clansty 2e34717
chore(api): regenerate API client with MuMod endpoints
clansty 70d3185
feat(mod-ui): add MuMod state management layer\n\nAdd isMuModMode com…
clansty c8c7178
feat(mod-ui): convert install button to DropMenu
clansty 523e4a7
feat(mod-ui): add MuMod version display, conflict warning, and channe…
clansty a9ca30f
feat(mod-ui): add MuMod channel switch integration flow
clansty 13785ca
fix(mod): complete mutual exclusion - AquaMai install removes MuMod, …
clansty 0ed43bd
refactor: ModConfigService
clansty 9daa48a
fixup
clansty aff90ae
feat: mumod 签名验证
clansty f7b94a4
fix
clansty File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
在
GetGameModInfo方法中,使用了空的catch块来静默处理读取 MuMod 配置失败时可能发生的异常。虽然这可以防止程序崩溃,但完全吞掉异常会使调试变得困难,因为无法得知读取失败的原因(例如,文件被占用、权限问题或格式错误)。建议至少在catch块中记录一条警告或调试日志,以便于追踪潜在问题。