From 4f5e1f9f3c5170e75d975343d6a3ffb31934570d Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Mon, 26 Aug 2024 00:33:34 -0400 Subject: [PATCH] Prepare for publish --- CHANGELOG.md | 6 ++++++ webview-ui/src/components/SettingsView.tsx | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bf70f1..42fe1ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to the "claude-dev" extension will be documented in this fil +## [1.4.0] + +- Add Kodu provider with credit tracking (+ $20 free credits!) +- Add "Always allow read-only operations" setting to let Claude read files and view directories without needing approval (off by default) +- Implement sliding window context management to keep tasks going past 200k tokens + ## [1.3.0] - Add task history diff --git a/webview-ui/src/components/SettingsView.tsx b/webview-ui/src/components/SettingsView.tsx index 8fc94e2..ee3e415 100644 --- a/webview-ui/src/components/SettingsView.tsx +++ b/webview-ui/src/components/SettingsView.tsx @@ -11,7 +11,7 @@ import { validateApiConfiguration, validateMaxRequestsPerTask } from "../utils/v import { vscode } from "../utils/vscode" import ApiOptions from "./ApiOptions" -const IS_DEV = true +const IS_DEV = false // FIXME: use flags when packaging type SettingsViewProps = { version: string