Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
REM ============================================================================
REM Windows Telemetry Blocker Launcher
REM ============================================================================
REM Version: 1.5h1
REM Version: 1.5
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version mismatch: header comment shows 1.5 but LAUNCHER_VERSION on line 15 is still 1.5h1. These should match.

Suggested change
REM Version: 1.5
REM Version: 1.5h1
Prompt To Fix With AI
This is a comment left during a code review.
Path: run.bat
Line: 5:5

Comment:
Version mismatch: header comment shows `1.5` but `LAUNCHER_VERSION` on line 15 is still `1.5h1`. These should match.

```suggestion
REM Version: 1.5h1
```

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change the LAUNCHER_VERSION

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version comment updated to 1.5 but the LAUNCHER_VERSION variable on line 15 still says 1.5h1, creating a version mismatch. The variable is logged to the safety log (line 32).

Suggested change
REM Version: 1.5
REM Version: 1.5h1
Prompt To Fix With AI
This is a comment left during a code review.
Path: run.bat
Line: 5:5

Comment:
Version comment updated to `1.5` but the `LAUNCHER_VERSION` variable on line 15 still says `1.5h1`, creating a version mismatch. The variable is logged to the safety log (line 32).

```suggestion
REM Version: 1.5h1
```

How can I resolve this? If you propose a fix, please make it concise.

REM Description: Batch launcher for Windows Telemetry Blocker with menu system
REM ============================================================================

Expand All @@ -12,7 +12,7 @@ REM ============================================================================
REM Configuration and Path Setup
REM ============================================================================
set "SCRIPT_DIR=%~dp0"
set "LAUNCHER_VERSION=1.5h1"
set "LAUNCHER_VERSION=1.5"
set "LOG_FILE=%SCRIPT_DIR%telemetry-blocker.log"
set "PS_SCRIPT=%SCRIPT_DIR%windowstelemetryblocker.ps1"
set "SAFETY_LOG=%SCRIPT_DIR%telemetry-blocker-safety.log"
Expand Down
Loading