Skip to content

Commit 82c95bb

Browse files
committed
feat: add auto-update check feature and enhance settings UI
- Implemented auto-check updates functionality in settings. - Added new translations for auto-check updates in English, Chinese (Simplified and Traditional). - Updated settings store to manage auto-check updates state. - Enhanced UI in settings to display update check results and allow manual checks. - Added new date preset option "all" in browser usage for comprehensive data range. - Improved backup and restore functionalities with user feedback messages. - Updated repair assistant to show last action and repaired rows.
1 parent cb14614 commit 82c95bb

46 files changed

Lines changed: 329 additions & 38 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 18 additions & 0 deletions

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": "1.4.3",
4+
"version": "1.4.4",
55
"authors": [
66
"Shan Wenxiao"
77
],

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

src-tauri/src/commands/data_reliability_cmd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ pub fn get_data_health_summary(db: State<DbState>) -> Result<DataHealthSummary,
636636
if !missing_days.is_empty() {
637637
issues.push(DataHealthIssue {
638638
code: "missing_days".to_string(),
639-
severity: "warning".to_string(),
639+
severity: "info".to_string(),
640640
title: "Missing timeline days".to_string(),
641641
detail: "Detected gaps in the daily usage timeline".to_string(),
642642
count: missing_days.len() as i64,

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": "1.4.3",
4+
"version": "1.4.4",
55
"identifier": "ShanWenxiao.TimeLens-TimeManagementAppwithWidgets",
66
"build": {
77
"beforeDevCommand": "npm run dev",
1 Byte
-71 Bytes
-60 Bytes
53.2 KB
23 Bytes

0 commit comments

Comments
 (0)