diff --git a/Changes.md b/Changes.md index 93ac2eb549c..1aa126c1f0f 100644 --- a/Changes.md +++ b/Changes.md @@ -8,6 +8,7 @@ Breaking Changes - Process : Removed non-const variant of the `handleException()` method. - StringPlug : Removed deprecated `precomputedHash` argument from `getValue()` method. - OpenColorIOContext : Removed `configEnabledPlug()`, `configValuePlug()`, `workingSpaceEnabledPlug()` and `workingSpaceValuePlug()` methods. Use the OptionalValuePlug child accessors instead. +- Windows launch script : Removed the hardcoded `/debugexe` switch used when `GAFFER_DEBUG` is enabled, making it possible to use debuggers other than Visual Studio. Debug switches can be added to the `GAFFER_DEBUGGER` environment variable instead. 1.3.x.x (relative to 1.3.4.0) ======= diff --git a/bin/gaffer.cmd b/bin/gaffer.cmd index a899b74a394..f28d6b7f64d 100644 --- a/bin/gaffer.cmd +++ b/bin/gaffer.cmd @@ -132,7 +132,7 @@ for /f "tokens=1* delims=;" %%A in ("%EXTENSION_PATH%") do ( ) if "%GAFFER_DEBUG%" NEQ "" ( - %GAFFER_DEBUGGER% /debugexe "%GAFFER_ROOT%\bin\python.exe" "%GAFFER_ROOT%"/bin/__gaffer.py %* + %GAFFER_DEBUGGER% "%GAFFER_ROOT%"\bin\python.exe "%GAFFER_ROOT%"/bin/__gaffer.py %* ) else ( "%GAFFER_ROOT%"\bin\python.exe "%GAFFER_ROOT%"/bin/__gaffer.py %* )