Update configuration icons and add build documentation#423
Open
Halvance wants to merge 1 commit intoMUME:masterfrom
Open
Update configuration icons and add build documentation#423Halvance wants to merge 1 commit intoMUME:masterfrom
Halvance wants to merge 1 commit intoMUME:masterfrom
Conversation
Visual & Documentation Updates: - Modernized all configuration dialog icons (autologger, general, graphics, mume protocol, parser, pathmachine, terminal, group-recolor) - Added new icons for future features (hotkeys, comms) - Added BUILD_GUIDE.md with detailed build instructions Cleanup: - Updated .gitignore to exclude build artifacts (*.exe, *.bat, .claude/, nul) - Prevents accidentally committing temporary files and build tools This PR focuses purely on visual polish and documentation, with no functional changes to the codebase.
Reviewer's GuideUpdates resource configuration icons, adds a detailed Windows/Qt/CMake build guide focused on the seasonal textures feature, and tightens .gitignore to exclude build artifacts and temporary tool directories, without changing runtime behavior. Sequence diagram for building and testing seasonal textures featuresequenceDiagram
actor Developer
participant Shell
participant CMake
participant Ninja
participant Compiler
participant QtRcc
participant MMapperExe
Developer->>Shell: mkdir build && cd build
Developer->>Shell: cmake -G "Ninja" -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
Shell->>CMake: Configure project (locate Qt6, compiler, Ninja)
CMake-->>Shell: Build files for Ninja
Developer->>Shell: cmake --build . --config RelWithDebInfo
Shell->>Ninja: Start build
Ninja->>Compiler: Compile src source files
Ninja->>QtRcc: Compile mmapper2.qrc with textures into resources object
QtRcc-->>Ninja: Resources object file
Compiler-->>Ninja: Object files
Ninja->>Compiler: Link objects and resources into mmapper.exe
Compiler-->>Ninja: mmapper.exe
Ninja-->>Shell: Build complete
Developer->>Shell: src\mmapper.exe
Shell->>MMapperExe: Launch executable
MMapperExe->>MMapperExe: Load embedded seasonal texture resources
Developer->>MMapperExe: Connect to MUME and issue time command
MMapperExe->>MMapperExe: Detect current season and update textures
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey there - I've reviewed your changes - here's some feedback:
- The new BUILD_GUIDE.md is very Windows- and MSVC-specific (hardcoded paths like
C:\Qt\6.x.x\msvc2019_64and Ninja in-tree); consider clearly labeling it as Windows-only and/or separating out cross-platform, toolchain-agnostic instructions so it doesn’t mislead users on other setups. - Several troubleshooting notes in BUILD_GUIDE.md reference already-fixed seasonal texture issues and specific source files/lines; it may be more future-proof to describe these as examples of common Qt MOC/CMake problems without tying to past one-off fixes that could become outdated.
- The .gitignore additions for
*.exeand*.batare very broad and could unintentionally hide committed tooling or scripts; consider scoping these patterns to known build output directories instead of ignoring them project-wide.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The new BUILD_GUIDE.md is very Windows- and MSVC-specific (hardcoded paths like `C:\Qt\6.x.x\msvc2019_64` and Ninja in-tree); consider clearly labeling it as Windows-only and/or separating out cross-platform, toolchain-agnostic instructions so it doesn’t mislead users on other setups.
- Several troubleshooting notes in BUILD_GUIDE.md reference already-fixed seasonal texture issues and specific source files/lines; it may be more future-proof to describe these as examples of common Qt MOC/CMake problems without tying to past one-off fixes that could become outdated.
- The .gitignore additions for `*.exe` and `*.bat` are very broad and could unintentionally hide committed tooling or scripts; consider scoping these patterns to known build output directories instead of ignoring them project-wide.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #423 +/- ##
==========================================
- Coverage 66.48% 65.48% -1.01%
==========================================
Files 85 86 +1
Lines 4186 3963 -223
Branches 255 264 +9
==========================================
- Hits 2783 2595 -188
+ Misses 1403 1368 -35 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Visual & Documentation Updates:
Cleanup:
This PR focuses purely on visual polish and documentation, with no functional changes to the codebase.
Summary by Sourcery
Update resource configuration and build documentation for the project.
Enhancements:
Build:
Documentation: