Skip to content

Commit 45c4e05

Browse files
committed
chore(release): v0.1.8
1 parent da1b81b commit 45c4e05

5 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.8] - 2026-02-17
9+
10+
### Added
11+
- **Match Details View**: New per-match page with hero stats, KDA, GPM/XPM, damage, and a last-hits/denies chart showing progress against goal target lines
12+
- **Daily Challenges**: Personalized daily challenges generated from recent performance with a progress bar, streak counter, and dashboard widget
13+
- **Item Timing Goal Display**: Goal details page now correctly shows item name and M:SS formatted times for item timing goals
14+
15+
### Fixed
16+
- **Suggested goal panel** now hides automatically once the matching goal has been created
17+
- **Dev/prod database separation**: dev builds (`tauri dev`) use `dota_keeper_dev.db`; release builds use `dota_keeper.db` — no more risk of polluting production data during development
18+
- **Fresh database crash**: app no longer crashes on first launch with a new database (cleanup query was running before tables were created)
19+
820
## [0.1.7] - 2026-02-16
921

1022
### Fixed

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.1.7",
3+
"version": "0.1.8",
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.1.7"
3+
version = "0.1.8"
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.1.7",
4+
"version": "0.1.8",
55
"identifier": "com.volthawk.dota-keeper",
66
"build": {
77
"beforeDevCommand": "yarn dev",

0 commit comments

Comments
 (0)