Skip to content

Commit c0795bb

Browse files
committed
chore(release): v0.1.3
1 parent 5836254 commit c0795bb

6 files changed

Lines changed: 42 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Changelog
2+
3+
All notable changes to Dota Keeper will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.1.3] - 2026-02-12
9+
10+
### Added
11+
- **Weekly Challenges**: New challenge system to track weekly improvement goals
12+
- **Goal Suggestions**: Intelligent goal recommendations based on play patterns
13+
- **Hero Favourites**: Mark and track favorite heroes for quick access
14+
- **Tasks System**: Set and track personal Dota 2 improvement tasks
15+
- **Charting Library**: Visual charts for performance metrics and trends
16+
- **Last Hit Analysis**: Detailed last-hitting performance statistics
17+
- **Per-Hero Detail Pages**: Dedicated pages for in-depth hero performance
18+
- **Match Backfilling**: Automatic backfill of historical match data
19+
- **Real-time Events**: Live updates for match data and statistics
20+
- **Clear Matches**: Option to clear match history
21+
- **Auto-update System**: Automatic application updates
22+
23+
### Changed
24+
- **Analysis Range**: Increased number of games that can be analyzed at once
25+
- **Font Rendering**: Improved font rendering for better readability
26+
- **Documentation**: Enhanced README with comprehensive usage guidelines
27+
28+
### Fixed
29+
- Backfilling reliability issues that could cause incomplete data retrieval
30+
- Real-time event handling stability improvements
31+

claude.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ I want an application that tracks my Dota 2 games and analyzes my performance ag
2929

3030
Tasks are stored in `meta/tasks/`. It has `upnext`, `backlog` and `done`. When asked to create a new task, create it either in `backlog` or `upnext` as a `.md` file.
3131

32+
33+
## Releases
34+
35+
Where creating a release, you need to update package.json, src-tauri/Cargo.toml, tauri.conf.json. Also, populate the CHANGELOG.md with the changes
36+
37+
3238
## Status
3339

3440
- [ ] Initial setup

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dota-keeper",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "",
55
"type": "module",
66
"scripts": {
@@ -29,4 +29,4 @@
2929
"typescript": "~5.6.2",
3030
"vite": "^6.0.3"
3131
}
32-
}
32+
}

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

0 commit comments

Comments
 (0)