Merge pull request #1479 from RooVetGit/fix_checkpoints_default

Turn checkpoints on by default
This commit is contained in:
Matt Rubens 2025-03-07 23:46:18 -05:00 committed by GitHub
commit 70fa490a59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -158,7 +158,7 @@ export class Cline {
apiConfiguration,
customInstructions,
enableDiff,
enableCheckpoints = false,
enableCheckpoints = true,
checkpointStorage = "task",
fuzzyMatchThreshold,
task,

View file

@ -2389,7 +2389,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
allowedCommands: stateValues.allowedCommands,
soundEnabled: stateValues.soundEnabled ?? false,
diffEnabled: stateValues.diffEnabled ?? true,
enableCheckpoints: stateValues.enableCheckpoints ?? false,
enableCheckpoints: stateValues.enableCheckpoints ?? true,
checkpointStorage: stateValues.checkpointStorage ?? "task",
soundVolume: stateValues.soundVolume,
browserViewportSize: stateValues.browserViewportSize ?? "900x600",