mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Merge pull request #1479 from RooVetGit/fix_checkpoints_default
Turn checkpoints on by default
This commit is contained in:
commit
70fa490a59
2 changed files with 2 additions and 2 deletions
|
|
@ -158,7 +158,7 @@ export class Cline {
|
|||
apiConfiguration,
|
||||
customInstructions,
|
||||
enableDiff,
|
||||
enableCheckpoints = false,
|
||||
enableCheckpoints = true,
|
||||
checkpointStorage = "task",
|
||||
fuzzyMatchThreshold,
|
||||
task,
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue