mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
* restoreTask protobus * changeset * changeset correction * type safety change * Fix Non-UTF-8 File Handling: Improve Encoding Detection to Prevent Garbled Text and Binary Misclassification (#2347) * Fix Non-UTF-8 File Handling: Improve Encoding Detection to Prevent Garbled Text and Binary Misclassification * update package-lock.json * update * update * fix * fix * fix * ENG 526/Fix: Versioned Auto Approve settings (#3014) * added verisoning for autoApprove settings * removed lines from source branch * rebase * changeset * one small change * activating extension with evals.env (#3041) Co-authored-by: Cline Evaluation <cline@example.com> * ripping out test build flag (#3043) Co-authored-by: Cline Evaluation <cline@example.com> * cleaning up evals.env logic in extension.ts (#3045) Co-authored-by: Cline Evaluation <cline@example.com> * ENG-516 Slash commands (#3044) * scroll * menu * changeset * nit * What's yer path? (#3047) * update extension imports to use aliasing * changeset * ENG-484 Enhance fixWithCline command execution by focusing chat input (#3028) * Enhance fixWithCline command execution by focusing chat input and adding a delay before processing the fixWithCline command. * feat: add OpenRouter base URL and balance display component * feat: add OpenRouter base URL and balance display component * feat: add OpenRouter base URL and balance display component * new_task prompt (#3049) * prompt * changeset * words * prettier * Added metadata --------- Co-authored-by: yt3trees <57471763+yt3trees@users.noreply.github.com> Co-authored-by: pashpashpash <nik@cline.bot> Co-authored-by: Cline Evaluation <cline@example.com> Co-authored-by: Toshii <94262432+0xToshii@users.noreply.github.com> Co-authored-by: Evan <58194240+celestial-vault@users.noreply.github.com> Co-authored-by: nomaven <arafat.da.khan@gmail.com>
18 lines
349 B
Protocol Buffer
18 lines
349 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cline;
|
|
|
|
import "common.proto";
|
|
|
|
service CheckpointsService {
|
|
rpc checkpointDiff(Int64Request) returns (Empty);
|
|
rpc checkpointRestore(CheckpointRestoreRequest) returns (Empty);
|
|
}
|
|
|
|
message CheckpointRestoreRequest {
|
|
Metadata metadata = 1;
|
|
int64 number = 2;
|
|
string restore_type = 3;
|
|
optional int64 offset = 4;
|
|
}
|