Skip to content

Commit a8ffa28

Browse files
committed
Merge branch 'main' of https://github.com/RooVetGit/Roo-Code into cline-map-v1
2 parents acf047c + c7562a6 commit a8ffa28

File tree

74 files changed

+2642
-679
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+2642
-679
lines changed

.changeset/twenty-spoons-shout.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Adds a function to add temperature setting based on the model id
6+
This is added because openai/o3-mini does not support temperature parameter which causes the request to fail.
7+
This update will allow users to use o3-mini on Unbound without facing any issues.

.github/workflows/marketplace-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ jobs:
6565
current_package_version=$(node -p "require('./package.json').version")
6666
6767
# Extract changelog for current version
68-
changelog_content=$(awk -v ver="## [${current_package_version}]" '
69-
$0 ~ ver {flag=1; next}
70-
/^## \[/ {if (flag) exit}
71-
flag {print}
72-
' CHANGELOG.md)
68+
echo "Extracting changelog for version ${current_package_version}"
69+
changelog_content=$(sed -n "/## \\[${current_package_version}\\]/,/## \\[/p" CHANGELOG.md | sed '$d')
7370
7471
# If changelog extraction failed, use a default message
7572
if [ -z "$changelog_content" ]; then
73+
echo "Warning: No changelog section found for version ${current_package_version}"
7674
changelog_content="Release v${current_package_version}"
75+
else
76+
echo "Found changelog section for version ${current_package_version}"
7777
fi
7878
7979
# Create release with changelog content

locales/ca/README.md

Lines changed: 19 additions & 17 deletions
Large diffs are not rendered by default.

locales/de/README.md

Lines changed: 19 additions & 17 deletions
Large diffs are not rendered by default.

locales/es/README.md

Lines changed: 19 additions & 17 deletions
Large diffs are not rendered by default.

locales/fr/README.md

Lines changed: 19 additions & 17 deletions
Large diffs are not rendered by default.

locales/hi/README.md

Lines changed: 19 additions & 17 deletions
Large diffs are not rendered by default.

locales/it/README.md

Lines changed: 19 additions & 17 deletions
Large diffs are not rendered by default.

locales/ja/README.md

Lines changed: 19 additions & 17 deletions
Large diffs are not rendered by default.

locales/ko/README.md

Lines changed: 19 additions & 17 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)