Skip to content

Commit d08b967

Browse files
committed
feat: bump version to 2.1.0
1 parent ace69aa commit d08b967

7 files changed

Lines changed: 34 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
55

66
---
77

8+
## [2.1.0] - 2026-08-27
9+
10+
### Added
11+
12+
- **AI Insights (LLM-powered screen-time analysis)** — new page that lets you ask an AI to analyze your screen-time data and focus habits.
13+
- Supports multiple configurable LLM providers with nicknames; add, delete, and switch providers from Settings.
14+
- Built-in presets for OpenAI, Groq, OpenRouter, and OrcaRouter, including a referral link for OrcaRouter.
15+
- Custom provider support with arbitrary base URL, model, and API key.
16+
- Real-time streaming responses with Markdown rendering.
17+
- Conversation sidebar with pin, archive, delete, and new-conversation actions.
18+
- Summarize conversation history to condense context and save tokens.
19+
- Choose which screen-time data is shared with AI (total time, top apps, categories, focus time, goals, interruptions).
20+
- Select analysis range: today, yesterday, last 7/30 days, this/last week, or a custom date range.
21+
- Persisted conversation history with full context for follow-up questions.
22+
- **Open LLM config from Settings** — added buttons to open `llm_config.toml` and its containing folder with the system default app/file explorer.
23+
24+
### Changed
25+
26+
- **Navigation order** — AI Insights is now the second item in the left sidebar, right below Dashboard.
27+
- **AI chat UX** — the system prompt and raw screen-time summary are no longer shown as chat bubbles; they remain in context sent to the model. Removed the bottom-right "New analysis" rotate button.
28+
29+
### Fixed
30+
31+
- **AI Insights header layout** — aligned all header controls to the same height and allowed wrapping on narrow windows for a cleaner toolbar.
32+
33+
---
34+
835
## [2.0.5] - 2026-08-26
936

1037
### Added

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "timelens",
33
"private": true,
4-
"version": "2.0.5",
4+
"version": "2.1.0",
55
"license": "MIT",
66
"authors": [
77
"Shan Wenxiao"

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 = "timelens"
3-
version = "2.0.5"
3+
version = "2.1.0"
44
description = "A screen time tracker and desktop widget manager"
55
authors = ["Shan Wenxiao"]
66
license = "MIT"

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": "TimeLens",
4-
"version": "2.0.5",
4+
"version": "2.1.0",
55
"identifier": "ShanWenxiao.TimeLens-TimeManagementAppwithWidgets",
66
"build": {
77
"beforeDevCommand": "npm run dev",

src-tauri/windows/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
55
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
66
IgnorableNamespaces="uap rescap">
7-
<Identity Name="ShanWenxiao.TimeLens-TimeManagementAppwithWidgets" Publisher="CN=67203FD7-3571-4CF3-9A8B-DE6BA454CE5B" Version="2.0.5.0" />
7+
<Identity Name="ShanWenxiao.TimeLens-TimeManagementAppwithWidgets" Publisher="CN=67203FD7-3571-4CF3-9A8B-DE6BA454CE5B" Version="2.1.0.0" />
88
<Properties>
99
<DisplayName>TimeLens - Time Management App with Widgets</DisplayName>
1010
<PublisherDisplayName>Shan Wenxiao</PublisherDisplayName>

0 commit comments

Comments
 (0)