From cbbf3cea4103e1b85f936e0c4b7ffa61cb6b7d8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Bene=C5=A1?= Date: Sat, 8 Aug 2026 18:40:55 +0200 Subject: [PATCH] A version that says the overlay is finished package.json, Cargo.toml and tauri.conf.json all said 0.1.0 because three scaffolds said so and nothing ever changed them. The database is complete and the thing is in use, so 1.0.0, in all three plus both lockfiles. A changelog, starting now. It records that the working notes moved to the wiki and that this repository's history was not rewritten -- the CLAUDE.md was untracked, so there was never anything in the history to remove. Co-Authored-By: Claude Opus 5 (1M context) --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 6 files changed, 39 insertions(+), 6 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e458f69 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,33 @@ +# Changelog + +Kept as the work happens, not assembled at release time. Format is +[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow +[SemVer](https://semver.org/spec/v2.0.0.html). + +## Unreleased + +## 1.0.0 — 2026-08-08 + +The first tagged version. `1.0.0` rather than `0.x.x` because the overlay does +what it set out to do: the database is complete and usable, and the version +files only said 0.1.0 because the scaffolding did. + +### Added + +- A desktop overlay for *Kingdom Come: Deliverance II*: a searchable database of + console commands, items, perks, buffs and skills. Fill in the parameters, click + Copy, paste into the game console. +- Quick cheats, with the "Set skill level" skill field a select over all sixteen + skills rather than free text. + +### Changed + +- The working notes left the working tree. They were an **untracked** `CLAUDE.md` + that existed on one machine only, and are now the + [wiki](https://git.houmeres.sk/Houmeres/Kingdom-Cheat-Deliverance-2/wiki). + Because the file was never committed, **this repository's history was not + rewritten** — there was nothing in it to remove. + +### Note + +It does not talk to the game. It builds command strings for the clipboard. diff --git a/package-lock.json b/package-lock.json index f340149..1a45d00 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "kcd2-overlay", - "version": "0.1.0", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "kcd2-overlay", - "version": "0.1.0", + "version": "1.0.0", "dependencies": { "@tauri-apps/api": "^2", "@tauri-apps/plugin-autostart": "^2.5.1", diff --git a/package.json b/package.json index 143d303..7eec908 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "kcd2-overlay", "private": true, - "version": "0.1.0", + "version": "1.0.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index c290f53..79b9281 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1994,7 +1994,7 @@ dependencies = [ [[package]] name = "kcd2-overlay" -version = "0.1.0" +version = "1.0.0" dependencies = [ "serde", "serde_json", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 1fdeacf..37dd32c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kcd2-overlay" -version = "0.1.0" +version = "1.0.0" description = "Game overlay with a KCD2 console command and item ID database" authors = ["Homer"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2132064..de05de6 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "KCD2 Overlay", - "version": "0.1.0", + "version": "1.0.0", "identifier": "sk.ecoposta.kcd2overlay", "build": { "beforeDevCommand": "npm run dev",