Fix #52: Improve setup.bat UI (No backend changes allowed)#53
Open
itniuma2026 wants to merge 1 commit intoSurajkumar5050:mainfrom
Open
Fix #52: Improve setup.bat UI (No backend changes allowed)#53itniuma2026 wants to merge 1 commit intoSurajkumar5050:mainfrom
itniuma2026 wants to merge 1 commit intoSurajkumar5050:mainfrom
Conversation
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.
Summary
Improve the visual/UI experience of setup.bat by adding colored output, ASCII banners, styled section headers, and better progress messages while keeping all backend logic identical.
Approach
Enhance setup.bat with the following UI improvements only: (1) Add an ASCII art banner at the top displaying the ZYRON name/logo using only safe ASCII characters compatible with Windows cmd. (2) Use ANSI color codes via 'color' command or echo with escape sequences where supported, or use simple box-drawing with dashes and equals signs for section separators. (3) Add styled section headers (e.g., surrounded by dashes) for each major step like 'Checking Python', 'Creating Virtual Environment', 'Installing Dependencies', etc. (4) Improve status messages to be more descriptive and welcoming (e.g., 'Setting up your ZYRON environment...' instead of plain text). (5) Add a completion banner/message at the end. (6) Use only ASCII-safe characters (no Unicode box-drawing, no emojis) to ensure compatibility across all Windows cmd environments. (7) Preserve every existing command, condition, error check, and flow exactly as-is — only wrap them with better visual output.
Files Changed
setup.batRelated Issue
Fixes #52