Skip to content

Commit 93dd7b9

Browse files
committed
chore(beta): v0.5.0
1 parent 2f002be commit 93dd7b9

6 files changed

Lines changed: 24 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ 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.5.0] - 2026-03-24
9+
10+
### Added
11+
- **Goal Frequency Type**: Goals now have a "How often?" field — choose from Just once, On average, 50% / 75% / 90% of games. The goal detail page adapts its achievement status display accordingly. Default remains 75%.
12+
- **What's New Dialog**: A "What's New" modal is shown once after each app upgrade, displaying the release notes for the installed version.
13+
- **App Version Display**: App version is now shown in the top-left brand area of the sidebar.
14+
15+
### Changed
16+
- **Performance Range Card**: Stat order changed to Worst → Avg → Best (left to right).
17+
18+
### Fixed
19+
- **Clear All Matches**: Now correctly clears all match-related tables (`goal_progress`, `player_networth`, `item_timings`, `mood_checkins`) before deleting matches. Previously, orphaned records in these tables caused re-sync and re-parsing issues.
20+
821
## [0.4.5] - 2026-03-23
922

1023
### Added

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.4.5",
3+
"version": "0.5.0",
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.4.5"
3+
version = "0.5.0"
44
description = "A Tauri App"
55
authors = ["Volthawk Software (Pty) Ltd"]
66
license = "Apache-2.0"

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

src/lib/whatsNew.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
/** @type {Record<string, string[]>} */
22
export const releaseNotes = {
3+
'0.5.0': [
4+
'Goal frequency type — choose how often you want to hit a goal: Just once, On average, 50% / 75% / 90% of games',
5+
'What\'s New dialog shown after each upgrade',
6+
'App version now shown in the sidebar',
7+
'Performance Range card now ordered Worst → Avg → Best',
8+
'Fixed: Clear All Matches now fully clears all related data',
9+
],
310
'0.4.5': [
411
'Pull-to-refresh gesture on mobile',
512
'Task tracking feature',

0 commit comments

Comments
 (0)