Skip to content

Commit e12c365

Browse files
committed
chore(release): v0.2.11
1 parent be7ab64 commit e12c365

5 files changed

Lines changed: 12 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@ All notable changes to Dota Keeper will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.2.10] - 2026-03-03
8+
## [0.2.11] - 2026-03-04
9+
10+
### Added
11+
- **Background Parse**: Match data is now parsed in the background, so the app remains responsive while fetching and processing new matches.
12+
- **First Run Experience**: New users are guided through an onboarding flow on first launch to set up their Steam ID and initial preferences.
13+
- **Factory Reset**: New option in Settings to completely reset the app — clears all data and returns to the first-run state.
14+
- **Hero Pick on Startup**: Hero pool data is refreshed automatically on startup so the hero list is always up to date.
915

1016
### Fixed
1117
- **Database Locking**: Eliminated intermittent "database is locked" errors on startup by replacing per-command `Connection` creation with a single shared `Mutex<Connection>` for the app lifetime. Also enabled WAL journal mode and a 5-second busy timeout as additional hardening.
1218
- **Android CI Build**: Fixed `tauri android build --apk` argument syntax for the updated Tauri CLI. Android builds now also trigger on the `beta` branch.
13-
14-
## [0.2.9] - 2026-03-03
15-
16-
### Added
17-
- **Beta Release Channel**: Separate beta build (`com.volthawk.dota-keeper-beta`) that installs side-by-side with stable. Beta builds use an isolated database (`dota_keeper_beta.db`), point to a separate auto-update manifest (`latest-beta.json`), and display a **BETA** badge in the title bar. A dedicated GitHub Actions workflow publishes beta releases as GitHub pre-releases when commits land on the `beta` branch.
19+
- **Bug Fixes**: Various stability and correctness improvements.
1820

1921
## [0.2.7] - 2026-03-02
2022

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dota-keeper",
3-
"version": "0.2.10",
3+
"version": "0.2.11",
44
"description": "",
55
"type": "module",
66
"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 = "dota-keeper"
3-
version = "0.2.10"
3+
version = "0.2.11"
44
description = "A Tauri App"
55
authors = ["stringhandler"]
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": "Dota Keeper",
4-
"version": "0.2.10",
4+
"version": "0.2.11",
55
"identifier": "com.volthawk.dota-keeper",
66
"build": {
77
"beforeDevCommand": "yarn dev",

0 commit comments

Comments
 (0)