cline 1.0.5-nightly.22 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cline +0 -0
- package/bin/cline-darwin-amd64 +0 -0
- package/bin/cline-darwin-arm64 +0 -0
- package/bin/cline-host +0 -0
- package/bin/cline-host-darwin-amd64 +0 -0
- package/bin/cline-host-darwin-arm64 +0 -0
- package/bin/cline-host-linux-amd64 +0 -0
- package/bin/cline-host-linux-arm64 +0 -0
- package/bin/cline-linux-amd64 +0 -0
- package/bin/cline-linux-arm64 +0 -0
- package/cline-core.js +54545 -91891
- package/extension/package.json +1 -2
- package/package.json +1 -1
- package/proto/cline/models.proto +2 -3
- package/proto/cline/state.proto +0 -8
- package/proto/cline/ui.proto +0 -1
- package/proto/descriptor_set.pb +0 -0
package/extension/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "claude-dev",
|
|
3
3
|
"displayName": "Cline",
|
|
4
4
|
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
|
|
5
|
-
"version": "3.36.
|
|
5
|
+
"version": "3.36.0",
|
|
6
6
|
"icon": "assets/icons/icon.png",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.84.0"
|
|
@@ -466,7 +466,6 @@
|
|
|
466
466
|
"jschardet": "^3.1.4",
|
|
467
467
|
"jwt-decode": "^4.0.0",
|
|
468
468
|
"mammoth": "^1.11.0",
|
|
469
|
-
"nanoid": "^5.1.6",
|
|
470
469
|
"nice-grpc": "^2.1.12",
|
|
471
470
|
"node-machine-id": "^1.1.12",
|
|
472
471
|
"ollama": "^0.5.13",
|
package/package.json
CHANGED
package/proto/cline/models.proto
CHANGED
|
@@ -96,7 +96,6 @@ message OpenRouterModelInfo {
|
|
|
96
96
|
optional ThinkingConfig thinking_config = 10;
|
|
97
97
|
optional bool supports_global_endpoint = 11;
|
|
98
98
|
repeated ModelTier tiers = 12;
|
|
99
|
-
optional string name = 13;
|
|
100
99
|
}
|
|
101
100
|
|
|
102
101
|
// Shared response message for model information
|
|
@@ -313,7 +312,7 @@ message ApiConfiguration {
|
|
|
313
312
|
// Request for updating API configuration (new - uses separate options and secrets)
|
|
314
313
|
message UpdateApiConfigurationRequestNew {
|
|
315
314
|
Metadata metadata = 1;
|
|
316
|
-
ApiConfiguration
|
|
315
|
+
ApiConfiguration api_configuration = 2;
|
|
317
316
|
|
|
318
317
|
// Required field mask specifying which fields to update.
|
|
319
318
|
// Field paths use dot notation with camelCase field names:
|
|
@@ -321,7 +320,7 @@ message UpdateApiConfigurationRequestNew {
|
|
|
321
320
|
// - "options.openAiHeaders" (for options fields)
|
|
322
321
|
// - "secrets.apiKey" (for secrets fields)
|
|
323
322
|
// - "secrets.openRouterApiKey" (for secrets fields)
|
|
324
|
-
|
|
323
|
+
google.protobuf.FieldMask update_mask = 3;
|
|
325
324
|
}
|
|
326
325
|
|
|
327
326
|
// Request for partially updating API configuration using FieldMask
|
package/proto/cline/state.proto
CHANGED
|
@@ -23,7 +23,6 @@ service StateService {
|
|
|
23
23
|
rpc updateSettingsCli(UpdateSettingsRequestCli) returns (Empty);
|
|
24
24
|
rpc updateTaskSettings(UpdateTaskSettingsRequest) returns (Empty);
|
|
25
25
|
rpc updateTelemetrySetting(TelemetrySettingRequest) returns (Empty);
|
|
26
|
-
rpc captureOnboardingProgress(OnboardingProgressRequest) returns (Empty);
|
|
27
26
|
rpc setWelcomeViewCompleted(BooleanRequest) returns (Empty);
|
|
28
27
|
rpc updateInfoBannerVersion(Int64Request) returns (Empty);
|
|
29
28
|
rpc updateModelBannerVersion(Int64Request) returns (Empty);
|
|
@@ -380,10 +379,3 @@ message ProcessInfo {
|
|
|
380
379
|
optional string version = 2;
|
|
381
380
|
optional int64 uptime_ms = 3;
|
|
382
381
|
}
|
|
383
|
-
|
|
384
|
-
message OnboardingProgressRequest {
|
|
385
|
-
int32 step = 1;
|
|
386
|
-
optional string action = 2;
|
|
387
|
-
optional bool completed = 3;
|
|
388
|
-
optional string model_selected = 4;
|
|
389
|
-
}
|
package/proto/cline/ui.proto
CHANGED
package/proto/descriptor_set.pb
CHANGED
|
Binary file
|