A version that says the overlay is finished
Build / build (, windows-latest) (push) Waiting to run
Build / release (push) Blocked by required conditions
Build / build (, ubuntu-22.04) (push) Failing after 4s

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) <noreply@anthropic.com>
This commit is contained in:
2026-08-08 18:40:55 +02:00
parent 4a8883216d
commit cbbf3cea41
6 changed files with 39 additions and 6 deletions
+33
View File
@@ -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.
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "kcd2-overlay", "name": "kcd2-overlay",
"version": "0.1.0", "version": "1.0.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "kcd2-overlay", "name": "kcd2-overlay",
"version": "0.1.0", "version": "1.0.0",
"dependencies": { "dependencies": {
"@tauri-apps/api": "^2", "@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "^2.5.1", "@tauri-apps/plugin-autostart": "^2.5.1",
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "kcd2-overlay", "name": "kcd2-overlay",
"private": true, "private": true,
"version": "0.1.0", "version": "1.0.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
+1 -1
View File
@@ -1994,7 +1994,7 @@ dependencies = [
[[package]] [[package]]
name = "kcd2-overlay" name = "kcd2-overlay"
version = "0.1.0" version = "1.0.0"
dependencies = [ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "kcd2-overlay" name = "kcd2-overlay"
version = "0.1.0" version = "1.0.0"
description = "Game overlay with a KCD2 console command and item ID database" description = "Game overlay with a KCD2 console command and item ID database"
authors = ["Homer"] authors = ["Homer"]
edition = "2021" edition = "2021"
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "KCD2 Overlay", "productName": "KCD2 Overlay",
"version": "0.1.0", "version": "1.0.0",
"identifier": "sk.ecoposta.kcd2overlay", "identifier": "sk.ecoposta.kcd2overlay",
"build": { "build": {
"beforeDevCommand": "npm run dev", "beforeDevCommand": "npm run dev",