Skip to content

Commit 84dcc9b

Browse files
committed
feat(version): add version display and bump to v0.1.5
1 parent 114e0d3 commit 84dcc9b

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
AI assistant that appears anywhere, sees your screen.
44

5-
![Version](https://img.shields.io/badge/version-0.1.2-blue.svg)
5+
![Version](https://img.shields.io/badge/version-0.1.5-blue.svg)
66
![Platform](https://img.shields.io/badge/platform-macOS%20%7C%20Windows%20%7C%20Linux-lightgrey.svg)
77

88
discord username - thisisharsh7
@@ -36,7 +36,7 @@ I was switching to AI tools 50+ times per day while coding. The constant context
3636

3737
### Download Pre-built App
3838

39-
Download the latest version (v0.1.2) for your platform from the [Releases](https://github.com/thisisharsh7/seeva-ai-assistant/releases) page:
39+
Download the latest version (v0.1.5) for your platform from the [Releases](https://github.com/thisisharsh7/seeva-ai-assistant/releases) page:
4040

4141
#### macOS
4242
- **Apple Silicon (M1/M2/M3/M4)**: Download the `darwin_aarch64.app.tar.gz` file
@@ -56,7 +56,7 @@ Download the latest version (v0.1.2) for your platform from the [Releases](https
5656

5757
### Auto-Updates
5858

59-
Starting from v0.1.2, Seeva AI Assistant includes automatic update checking. When a new version is available:
59+
Starting from v0.1.4, Seeva AI Assistant includes automatic update checking. When a new version is available:
6060
1. Open Settings (click the gear icon)
6161
2. Click "Update available" in the footer
6262
3. The update will download and install automatically

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "seeva-ai-assistant",
33
"private": true,
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"description": "Cross-platform AI assistant with screenshot capabilities",
66
"type": "module",
77
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-app"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Seeva AI Assistant",
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"identifier": "ai.seeva.assistant",
66
"build": {
77
"beforeDevCommand": "bun run dev",

src/components/settings/SettingsModal.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { Eye, EyeOff, ExternalLink, Loader2 } from 'lucide-react';
88
import type { AppSettings, ProviderSettings } from '../../lib/tauri-api';
99
import { settingsAPI } from '../../lib/tauri-api';
1010
import { openUrl } from '@tauri-apps/plugin-opener';
11+
import { APP_VERSION } from '../../lib/constants';
1112

1213
const PROVIDER_MODELS = {
1314
anthropic: [
@@ -230,7 +231,7 @@ export function SettingsModal() {
230231
name="provider"
231232
checked={isActive}
232233
onChange={() => handleProviderSelect(provider)}
233-
className="w-4 h-4 text-accent-blue focus:ring-2 focus:ring-accent-blue"
234+
className="w-4.5 h-4 text-accent-blue focus:ring-2 focus:ring-accent-blue"
234235
/>
235236
<span className="text-sm font-semibold text-primary group-hover:text-accent-blue transition-colors">
236237
Use this provider
@@ -376,8 +377,9 @@ export function SettingsModal() {
376377
{renderProviderSection(selectedProvider)}
377378
</div>
378379

379-
{/* Footer with Update Checker */}
380-
<div className="pt-4 border-t border-border-subtle">
380+
{/* Footer with Update Checker and Version */}
381+
<div className="pt-4 border-t border-border-subtle flex items-center justify-between">
382+
<span className="text-xs text-tertiary">v{APP_VERSION}</span>
381383
<UpdateChecker />
382384
</div>
383385
</div>

src/lib/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ModelInfo, Settings } from './types';
22

33
// App metadata
44
export const APP_NAME = 'Seeva AI Assistant';
5-
export const APP_VERSION = '0.1.0';
5+
export const APP_VERSION = '0.1.5';
66

77
// Default settings
88
export const DEFAULT_SETTINGS: Settings = {

0 commit comments

Comments
 (0)