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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ccbud",
"version": "1.3.5",
"version": "1.3.6",
"description": "CC Buddy — Coding CLI Buddy. A cross-platform desktop app that proxies Claude Code to any Anthropic-compatible provider (one-click switching, model mapping) and browses your Claude Code & Codex session history.",
"author": {
"name": "loadchange",
Expand Down
72 changes: 70 additions & 2 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "app"
version = "1.3.5"
version = "1.3.6"
description = "CCBuddy — Coding CLI Buddy"
authors = ["loadchange <soocto@gmail.com>"]
license = "GPL-3.0-only"
Expand Down Expand Up @@ -43,6 +43,9 @@ notify-debouncer-mini = "0.4"
# Conversation-bundle ZIP (export/import subagents together). Pure-Rust miniz_oxide backend — no
# system zlib, so it cross-compiles cleanly for every release target.
flate2 = "1"
# Antigravity CLI conversations are per-session SQLite files (steps table). Bundled engine so
# release targets don't need a system sqlite.
rusqlite = { version = "0.32", features = ["bundled"] }
# Protocol translation (chat / responses / messages互转). Reused as the IR + OpenAI/Responses
# codec engine; we add only the Anthropic server-side halves (request-decode / response-encode).
# default-features off to avoid pulling a second reqwest/tls stack (we use our own client); keep
Expand Down
Loading
Loading