Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ export async function activate(context: vscode.ExtensionContext) {

telemetryService.captureExtensionActivated(installId)

// Update telemetry configuration during extension activation
await sidebarWebview.controller.updateTelemetryConfig()

context.subscriptions.push(
vscode.commands.registerCommand("hai.plusButtonClicked", async (webview: any) => {
console.log("[DEBUG] plusButtonClicked", webview)
Expand Down
2 changes: 1 addition & 1 deletion src/services/posthog/telemetry/TelemetryService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { getGitUserInfo } from "@/utils/git"
import { HaiConfig } from "@/shared/hai-config"

/**
* TelemetryService handles telemetry event tracking for the Cline extension
* TelemetryService handles telemetry event tracking for the HAI extension
* Uses PostHog analytics to track user interactions and system events
* Respects user privacy settings and VSCode's global telemetry configuration
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const BedrockEmbeddingProvider = ({ showModelOptions, isPopup }: BedrockE
<span style={{ fontWeight: 500 }}>AWS Session Token (optional)</span>
</DebouncedTextField>

<DropdownContainer>
<DropdownContainer zIndex={1001}>
<label htmlFor="embedding-aws-region">
<span style={{ fontWeight: 500 }}>
AWS Region <span style={{ color: "var(--vscode-errorForeground)" }}>*</span>
Expand Down
4 changes: 2 additions & 2 deletions webview-ui/src/components/settings/sections/AboutSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const AboutSection = ({ version, renderSectionHeader }: AboutSectionProps) => {
<div className="text-center text-[var(--vscode-descriptionForeground)] text-xs leading-[1.2] px-0 py-0 pr-2 pb-[15px] mt-auto">
<p className="break-words m-0 p-0">
If you have any questions or feedback, feel free to open an issue at{" "}
<VSCodeLink href="https://github.com/cline/cline" className="inline">
https://github.com/cline/cline
<VSCodeLink href="https://github.com/presidio-oss/cline-based-code-generator" className="inline">
https://github.com/presidio-oss/cline-based-code-generator
</VSCodeLink>
</p>
<p className="italic mt-[10px] mb-0 p-0">v{version}</p>
Expand Down
Loading