From 2cfebdb3aeabe13713c9fd3b00ebbdb1baaa078e Mon Sep 17 00:00:00 2001 From: Pravin Barton <9560941+isc-pbarton@users.noreply.github.com> Date: Wed, 4 Mar 2026 14:30:20 -0500 Subject: [PATCH] enh: settings toggle for instance-wide uncommitted warning --- CHANGELOG.md | 1 + csp/gitprojectsettings.csp | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c28e391..449e4ae6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Baseline Export now includes decomposed production items when production decomposition is enabled (#680) - Take Ownership option in source control menu allows you to take ownership of an item edited by another user (#926) +- The "warnInstanceWideUncommitted" option can now be changed through the settings page (#936) ## Fixed - Fixed `` error in GetTempFileAndRoutineTS when an OS-level error code was stored as a routine timestamp (#832) diff --git a/csp/gitprojectsettings.csp b/csp/gitprojectsettings.csp index 40296ada..29278570 100644 --- a/csp/gitprojectsettings.csp +++ b/csp/gitprojectsettings.csp @@ -141,6 +141,7 @@ body { set settings.decomposeProductions = ($Get(%request.Data("decomposeProductions", 1)) = 1) set settings.decomposeProdAllowIDE = ($Get(%request.Data("decomposeProdAllowIDE", 1)) = 1) set settings.lockBranch = ($Get(%request.Data("lockBranch", 1)) = 1) + set settings.warnInstanceWideUncommitted = ($Get(%request.Data("warnInstanceWideUncommitted", 1)) = 1) if ($Get(%request.Data("systemBasicMode", 1)) = 1) { set settings.systemBasicMode = 1 @@ -579,6 +580,18 @@ body { +
+ +
+
+ + +
+
+