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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to Gemini CLI Desktop will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [0.3.15](https://github.com/Piebald-AI/gemini-cli-desktop/releases/tag/v0.3.15) - 2026-01-17

### Added

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ Contributions are welcome! Please see the [contributing guide](CONTRIBUTING.md)

[MIT](./LICENSE)

Copyright © 2025 [Piebald LLC.](https://piebald.ai)
Copyright © 2026 [Piebald LLC.](https://piebald.ai)
2 changes: 1 addition & 1 deletion crates/backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "backend"
version = "0.3.14"
version = "0.3.15"
edition = "2024"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-app"
version = "0.3.14"
version = "0.3.15"
description = "Desktop/web UI for Gemini CLI/Qwen Code. Manage projects, switch between tools, search across past conversations, and manage MCP servers, all from one interface, locally or remotely."
authors = ["Piebald LLC <support@piebald.ai>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-app/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Gemini CLI Desktop",
"version": "0.3.14",
"version": "0.3.15",
"identifier": "ai.piebald.gemini-cli-desktop",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gemini-cli-desktop",
"private": true,
"version": "0.3.14",
"version": "0.3.15",
"type": "module",
"scripts": {
"dev": "npm run copy-pdf-worker && vite",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/common/AboutDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const AboutDialog: React.FC<AboutDialogProps> = ({
const backendText = getBackendText(selectedBackend);

const appName = backendText.desktopName;
const appVersion = "0.3.14";
const appVersion = "0.3.15";
const currentYear = new Date().getFullYear();

return (
Expand Down
2 changes: 1 addition & 1 deletion installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define AppName "Gemini CLI Desktop"
#define AppVersion "0.3.14"
#define AppVersion "0.3.15"
#define AppPublisher "Piebald LLC"
#define AppURL "https://github.com/Piebald-AI/gemini-cli-desktop"
#define AppExeName "gemini-cli-desktop.exe"
Expand Down
Loading