Compare commits

...

1 Commits

Author SHA1 Message Date
Nate
2ae4d8374a bump and remove continue for teams 2025-04-17 08:26:15 -07:00
3 changed files with 4 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
"name": "continue",
"icon": "media/icon.png",
"author": "Continue Dev, Inc",
"version": "1.1.23",
"version": "1.0.6",
"repository": {
"type": "git",
"url": "https://github.com/continuedev/continue"
@@ -92,11 +92,6 @@
"default": true,
"markdownDescription": "Continue collects anonymous usage data, cleaned of PII, to help us improve the product for our users. Read more at [continue.dev Telemetry](https://docs.continue.dev/telemetry)."
},
"continue.enableContinueForTeams": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable Continue for teams beta features. To sign in, click the gear icon to go to the settings page, and click Sign In."
},
"continue.showInlineTip": {
"type": "boolean",
"default": true,

View File

@@ -759,10 +759,7 @@ class VsCodeIde implements IDE {
60,
),
userToken: settings.get<string>("userToken", ""),
enableControlServerBeta: settings.get<boolean>(
"enableContinueForTeams",
false,
),
enableControlServerBeta: false,
continueTestEnvironment: "production",
pauseCodebaseIndexOnStart: settings.get<boolean>(
"pauseCodebaseIndexOnStart",

View File

@@ -1,7 +1,7 @@
import crypto from "crypto";
import { ControlPlaneSessionInfo } from "core/control-plane/client";
import { EXTENSION_NAME, getControlPlaneEnvSync } from "core/control-plane/env";
import { getControlPlaneEnvSync } from "core/control-plane/env";
import fetch from "node-fetch";
import { v4 as uuidv4 } from "uuid";
import {
@@ -16,7 +16,6 @@ import {
ProgressLocation,
Uri,
window,
workspace,
} from "vscode";
import { PromiseAdapter, promiseFromEvent } from "./promiseUtils";
@@ -25,12 +24,9 @@ import { UriEventHandler } from "./uriHandler";
const AUTH_NAME = "Continue";
const enableControlServerBeta = workspace
.getConfiguration(EXTENSION_NAME)
.get<boolean>("enableContinueForTeams", false);
const controlPlaneEnv = getControlPlaneEnvSync(
true ? "production" : "none",
enableControlServerBeta,
false,
);
const SESSIONS_SECRET_KEY = `${controlPlaneEnv.AUTH_TYPE}.sessions`;