Bump to v0.11.1 and disable autofix by default (#565)

This commit is contained in:
Will Chen
2025-07-03 16:26:39 -07:00
committed by GitHub
parent 375d35b144
commit d0f6e40378
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "dyad",
"productName": "dyad",
"version": "0.11.0",
"version": "0.11.1",
"description": "My Electron application description",
"main": ".vite/build/main.js",
"repository": {

View File

@@ -20,7 +20,7 @@ const DEFAULT_SETTINGS: UserSettings = {
enableProLazyEditsMode: true,
enableProSmartFilesContextMode: true,
selectedChatMode: "build",
enableAutoFixProblems: true,
enableAutoFixProblems: false,
};
const SETTINGS_FILE = "user-settings.json";