[READ-ONLY] Mirror of https://github.com/kristianbinau/toto. A fast, lightweight autoclicker / macro runner built with Tauri and Vue.
0

Configure Feed

Select the types of activity you want to include in your feed.

chore(master): release 0.4.0 (#14)

authored by

Kristian Binau and committed by
GitHub
(Apr 24, 2026, 7:52 PM +0200) a2a2bca6 6580f534

+23 -7
+1 -1
.release-please-manifest.json
··· 1 1 { 2 - ".": "0.3.0" 2 + ".": "0.4.0" 3 3 }
+16
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## [0.4.0](https://github.com/kristianbinau/toto/compare/v0.3.0...v0.4.0) (2026-04-24) 4 + 5 + 6 + ### Features 7 + 8 + * rework ui ([#7](https://github.com/kristianbinau/toto/issues/7)) ([3e0361f](https://github.com/kristianbinau/toto/commit/3e0361fbaead37cd612a9ac8101d0ddc8c2a8a8d)) 9 + * tray-process & polish ([0e71ef1](https://github.com/kristianbinau/toto/commit/0e71ef10103c347f1ac0c3c072086a2c45d3d60a)) 10 + * update colors ([446fa47](https://github.com/kristianbinau/toto/commit/446fa476197ebd8c9d6cce7dd1004109ce4c8362)) 11 + 12 + 13 + ### Bug Fixes 14 + 15 + * immutable release ([6580f53](https://github.com/kristianbinau/toto/commit/6580f5340e205d4cbf702042cf280d46cd37f057)) 16 + * package-lock for CI ([33c02f1](https://github.com/kristianbinau/toto/commit/33c02f1cba6a6cfc23ba2bab7c7420837cfea72b)) 17 + * release-please versions ([43e22e3](https://github.com/kristianbinau/toto/commit/43e22e3c169fd91bd1de666693a9148e53be9b20)) 18 + 3 19 ## [0.3.0](https://github.com/kristianbinau/toto/compare/v0.2.0...v0.3.0) (2026-04-24) 4 20 5 21
+1 -1
crates/toto-engine/Cargo.toml
··· 1 1 [package] 2 2 name = "toto-engine" 3 - version = "0.3.0" 3 + version = "0.4.0" 4 4 edition = "2021" 5 5 description = "Headless automation engine: scripts of clicks, keys, movement and delays run on configurable backends." 6 6 license = "MIT OR Apache-2.0"
+2 -2
package-lock.json
··· 1 1 { 2 2 "name": "toto", 3 - "version": "0.3.0", 3 + "version": "0.4.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "toto", 9 - "version": "0.3.0", 9 + "version": "0.4.0", 10 10 "dependencies": { 11 11 "@nuxt/ui": "^4.6.1", 12 12 "@tauri-apps/api": "^2",
+1 -1
package.json
··· 1 1 { 2 2 "name": "toto", 3 - "version": "0.3.0", 3 + "version": "0.4.0", 4 4 "private": true, 5 5 "type": "module", 6 6 "scripts": {
+1 -1
src-tauri/Cargo.toml
··· 1 1 [package] 2 2 name = "toto" 3 - version = "0.3.0" 3 + version = "0.4.0" 4 4 description = "A Tauri App" 5 5 authors = ["you"] 6 6 edition = "2021"
+1 -1
src-tauri/tauri.conf.json
··· 1 1 { 2 2 "$schema": "https://schema.tauri.app/config/2", 3 3 "productName": "toto", 4 - "version": "0.3.0", 4 + "version": "0.4.0", 5 5 "identifier": "com.kbi.toto", 6 6 "build": { 7 7 "beforeDevCommand": "npm run dev",