Compare commits

...

9 Commits

Author SHA1 Message Date
Saoud Rizwan 3b5d39a21b Prepare for release 2025-01-30 18:57:18 -08:00
Saoud Rizwan 4a8f3339fb Fixes 2025-01-30 18:55:49 -08:00
Saoud Rizwan 64718667ff Show context progress bar always 2025-01-30 18:55:03 -08:00
Saoud Rizwan 4f93437797 Fix creating github release 2025-01-30 18:49:39 -08:00
Saoud Rizwan 1cd2ff10c7 Prepare for release 2025-01-30 18:37:51 -08:00
Evan Fannin 8539421d59 find all test files (#1559) 2025-01-30 18:03:12 -08:00
Saoud Rizwan 0aef2447ee Fix localized README links (#1557) 2025-01-30 15:57:21 -08:00
Saoud Rizwan cf8e259f69 Prepare release 2025-01-30 11:16:55 -08:00
Saoud Rizwan 3885f09a0b Fix context window progress bar spacing (#1554) 2025-01-30 11:15:16 -08:00
5 changed files with 12 additions and 12 deletions
+3
View File
@@ -70,8 +70,10 @@ jobs:
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Create Git Tag
id: create_tag
run: |
VERSION=v${{ steps.get_version.outputs.version }}
echo "tag=$VERSION" >> $GITHUB_OUTPUT
echo "Tagging with $VERSION"
git tag "$VERSION"
git push origin "$VERSION"
@@ -104,6 +106,7 @@ jobs:
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.create_tag.outputs.tag }}
files: "*.vsix"
# body: ${{ steps.changelog.outputs.content }}
generate_release_notes: true
+1 -1
View File
@@ -2,7 +2,7 @@ import { defineConfig } from "@vscode/test-cli"
import path from "path"
export default defineConfig({
files: "{out/test/**/*.test.js,src/test/suite/**/*.test.js}",
files: "{out/**/*.test.js,src/**/*.test.js}",
mocha: {
ui: "bdd",
timeout: 20000, // Maximum time (in ms) that a test can run before failing
+1 -1
View File
@@ -1,5 +1,5 @@
<div align="center"><sub>
English | <a href="./locales/es/README.md" target="_blank">Español</a> | <a href="./locales/de/README.md" target="_blank">Deutsch</a> | <a href="./locales/ja/README.md" target="_blank">日本語</a> | <a href="./locales/zh-cn/README.md" target="_blank">简体中文</a> | <a href="./locales/zh-tw/README.md" target="_blank">繁體中文</a>
English | <a href="https://github.com/cline/cline/blob/main/locales/es/README.md" target="_blank">Español</a> | <a href="https://github.com/cline/cline/blob/main/locales/de/README.md" target="_blank">Deutsch</a> | <a href="https://github.com/cline/cline/blob/main/locales/ja/README.md" target="_blank">日本語</a> | <a href="https://github.com/cline/cline/blob/main/locales/zh-cn/README.md" target="_blank">简体中文</a> | <a href="https://github.com/cline/cline/blob/main/locales/zh-tw/README.md" target="_blank">繁體中文</a>
</sub></div>
# Cline \#1 on OpenRouter
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "claude-dev",
"displayName": "Cline",
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
"version": "3.2.6",
"version": "3.2.9",
"icon": "assets/icons/icon.png",
"galleryBanner": {
"color": "#617A91",
@@ -113,11 +113,11 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
const ContextWindowComponent = (
<>
{isTaskExpanded && contextWindow && lastApiReqTotalTokens && (
{isTaskExpanded && contextWindow && (
<div
style={{
display: "flex",
flexDirection: windowWidth < 320 ? "column" : "row",
flexDirection: windowWidth < 270 ? "column" : "row",
gap: "4px",
}}>
<div
@@ -136,19 +136,16 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
style={{
display: "flex",
alignItems: "center",
gap: "8px",
gap: "3px",
flex: 1,
whiteSpace: "nowrap",
}}>
<span>
{formatLargeNumber(lastApiReqTotalTokens)} (
{Math.round((lastApiReqTotalTokens / contextWindow) * 100)}%)
</span>
<span>{formatLargeNumber(lastApiReqTotalTokens || 0)}</span>
<div
style={{
display: "flex",
alignItems: "center",
gap: "8px",
gap: "3px",
flex: 1,
}}>
<div
@@ -161,7 +158,7 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
}}>
<div
style={{
width: `${(lastApiReqTotalTokens / contextWindow) * 100}%`,
width: `${((lastApiReqTotalTokens || 0) / contextWindow) * 100}%`,
height: "100%",
backgroundColor: "var(--vscode-badge-foreground)",
borderRadius: "2px",