mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
Add vscodeVersion and platform too
This commit is contained in:
parent
082045ec66
commit
4c6f0628e3
1 changed files with 6 additions and 1 deletions
|
|
@ -2535,8 +2535,13 @@ export class ClineProvider implements vscode.WebviewViewProvider {
|
|||
public async getTelemetryProperties(): Promise<Record<string, any>> {
|
||||
const { mode, apiConfiguration } = await this.getState()
|
||||
const appVersion = this.context.extension?.packageJSON?.version
|
||||
const vscodeVersion = vscode.version
|
||||
const platform = process.platform
|
||||
|
||||
const properties: Record<string, any> = {}
|
||||
const properties: Record<string, any> = {
|
||||
vscodeVersion,
|
||||
platform,
|
||||
}
|
||||
|
||||
// Add extension version
|
||||
if (appVersion) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue