mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
Update version
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
"name": "claude-dev",
|
"name": "claude-dev",
|
||||||
"displayName": "Claude Dev",
|
"displayName": "Claude Dev",
|
||||||
"description": "Autonomous software engineer right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
|
"description": "Autonomous software engineer right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
|
||||||
"version": "1.0.86",
|
"version": "1.0.87",
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.84.0"
|
"vscode": "^1.84.0"
|
||||||
|
|||||||
@@ -14,12 +14,6 @@ const rootPackage = JSON.parse(fs.readFileSync(rootPackagePath, "utf8"))
|
|||||||
rootPackage.version = newVersion
|
rootPackage.version = newVersion
|
||||||
fs.writeFileSync(rootPackagePath, JSON.stringify(rootPackage, null, 2))
|
fs.writeFileSync(rootPackagePath, JSON.stringify(rootPackage, null, 2))
|
||||||
|
|
||||||
// Update webview package.json
|
|
||||||
const webviewPackagePath = path.join(__dirname, "..", "webview-ui", "package.json")
|
|
||||||
const webviewPackage = JSON.parse(fs.readFileSync(webviewPackagePath, "utf8"))
|
|
||||||
webviewPackage.version = newVersion
|
|
||||||
fs.writeFileSync(webviewPackagePath, JSON.stringify(webviewPackage, null, 2))
|
|
||||||
|
|
||||||
// Update Announcement.tsx
|
// Update Announcement.tsx
|
||||||
const announcementPath = path.join(__dirname, "..", "webview-ui", "src", "components", "Announcement.tsx")
|
const announcementPath = path.join(__dirname, "..", "webview-ui", "src", "components", "Announcement.tsx")
|
||||||
let announcementContent = fs.readFileSync(announcementPath, "utf8")
|
let announcementContent = fs.readFileSync(announcementPath, "utf8")
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ const Announcement = ({ hideAnnouncement }: AnnouncementProps) => {
|
|||||||
style={{ position: "absolute", top: "8px", right: "8px" }}>
|
style={{ position: "absolute", top: "8px", right: "8px" }}>
|
||||||
<span className="codicon codicon-close"></span>
|
<span className="codicon codicon-close"></span>
|
||||||
</VSCodeButton>
|
</VSCodeButton>
|
||||||
<h3 style={{ margin: "0 0 8px" }}>🎉{" "}New in v1.0.8</h3>
|
<h3 style={{ margin: "0 0 8px" }}>🎉{" "}New in v1.0.87</h3>
|
||||||
<ul style={{ margin: "0 0 8px", paddingLeft: "20px" }}>
|
<ul style={{ margin: "0 0 8px", paddingLeft: "20px" }}>
|
||||||
<li>
|
<li>
|
||||||
Open in the editor (using{" "}
|
Open in the editor (using{" "}
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ const SettingsView = ({
|
|||||||
https://github.com/saoudrizwan/claude-dev
|
https://github.com/saoudrizwan/claude-dev
|
||||||
</VSCodeLink>
|
</VSCodeLink>
|
||||||
</p>
|
</p>
|
||||||
<p style={{ fontStyle: "italic" }}>v1.0.86</p>
|
<p style={{ fontStyle: "italic" }}>v1.0.87</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user