Skip to content

Commit e47d628

Browse files
committed
Merge branch 'beta'
2 parents 2c0461d + c75a242 commit e47d628

7 files changed

Lines changed: 16 additions & 10 deletions

File tree

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ <h2 id="modal-title" class="modal-title" data-i18n="modal_title">Your download i
617617
// ── i18n translations ──────────────────────────────────────────────────────
618618
const SITE_TRANSLATIONS = {
619619
en: {
620-
badge_free_open: 'Free &amp; Open Source',
620+
badge_free_open: 'Free & Open Source',
621621
hero_tagline: 'Level Up Your Dota 2 Performance',
622622
hero_description: 'Track matches automatically, set custom goals, and dominate the game with data-driven insights. <strong>No subscriptions. No ads. Your data stays private.</strong>',
623623
download_now: 'Download Now',
@@ -636,7 +636,7 @@ <h2 id="modal-title" class="modal-title" data-i18n="modal_title">Your download i
636636
mac_silicon: 'Apple Silicon',
637637
mac_intel: 'Intel',
638638
mac_meta: 'App Bundle \u2022 ~42MB',
639-
linux_desc: 'Ubuntu, Fedora, Arch &amp; more',
639+
linux_desc: 'Ubuntu, Fedora, Arch & more',
640640
linux_download: 'Download AppImage',
641641
linux_meta: 'Portable App \u2022 ~48MB',
642642
released_date: '\u2022 Released Feb 2026',

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.3.0",
3+
"version": "0.3.1",
44
"description": "",
55
"type": "module",
66
"scripts": {
@@ -31,4 +31,4 @@
3131
"typescript": "~5.6.2",
3232
"vite": "^6.0.3"
3333
}
34-
}
34+
}

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: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dota-keeper"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "A Tauri App"
55
authors = ["Volthawk Software (Pty) Ltd"]
66
license = "Apache-2.0"
@@ -37,7 +37,13 @@ chrono = { version = "0.4", features = ["serde"] }
3737
rand = "0.8"
3838
lazy_static = "1.5"
3939
uuid = { version = "1.11", features = ["v4"] }
40-
sentry = { version = "0.34", default-features = false, features = ["backtrace", "contexts", "panic", "reqwest", "rustls"] }
40+
sentry = { version = "0.34", default-features = false, features = [
41+
"backtrace",
42+
"contexts",
43+
"panic",
44+
"reqwest",
45+
"rustls",
46+
] }
4147

4248
[features]
4349
beta = []

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

src/lib/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"filter_ranked": "Ranked",
8787
"filter_turbo": "Turbo",
8888
"parse_all": "Parse All",
89-
"refresh": "\u21BB Refresh Matches",
89+
"refresh": "Refresh Matches",
9090
"refreshing": "Refreshing...",
9191
"loading": "Loading matches...",
9292
"empty": "No matches found. Click \u201CRefresh Matches\u201D to fetch your recent games.",

src/lib/locales/ru.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"filter_ranked": "Рейтинговые",
8787
"filter_turbo": "Турбо",
8888
"parse_all": "Парсить все",
89-
"refresh": "\u21BB Обновить матчи",
89+
"refresh": "Обновить матчи",
9090
"refreshing": "Обновление...",
9191
"loading": "Загрузка матчей...",
9292
"empty": "Матчи не найдены. Нажмите \u00ABОбновить матчи\u00BB для загрузки.",

0 commit comments

Comments
 (0)