diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 71f19d0..f765adb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,4 @@ { - "app": "0.0.0" + "app": "0.0.0", + ".": "1.0.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d0d451f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +# Changelog + +## 1.0.0 (2025-10-03) + + +### ✨ Features + +* add release please manifests ([1612481](https://github.com/hackclub/hackatime-desktop/commit/1612481dddf6234e6ed79f40fa7fd5c32b90b84f)) +* add updater ([6d03d96](https://github.com/hackclub/hackatime-desktop/commit/6d03d9637a71bfd39721e37080da25c3164dbbed)) +* big bang ([ed294cb](https://github.com/hackclub/hackatime-desktop/commit/ed294cb6624bf7dea181d6058845f19496dde109)) + + +### 🐛 Bugfixes + +* change package path ([5754897](https://github.com/hackclub/hackatime-desktop/commit/5754897646b786c1e9e123ad65f3555cd3bb0c40)) +* eliminate updater from features on tauri conf ([c1a3215](https://github.com/hackclub/hackatime-desktop/commit/c1a32158fc46c0fcd8253890045e4d63a2956eb5)) + + +### 👽 Miscellaneous + +* **ci:** add release workflow ([c4eaa3f](https://github.com/hackclub/hackatime-desktop/commit/c4eaa3f4e51d084f1bd3c3d4d9b2b62aa286f401)) +* **ci:** update release please action ([fa45595](https://github.com/hackclub/hackatime-desktop/commit/fa45595fea1a8cb65ae5ef12d60cd06d3eaa8dde)) +* **ci:** update run on paths ([0d2e292](https://github.com/hackclub/hackatime-desktop/commit/0d2e292d9db8c12a0dd36d7477ca856332e82539)) diff --git a/package.json b/package.json index 29b2333..4ce0320 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "desktop", "private": true, - "version": "0.1.0", + "version": "1.0.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 7f53464..6a31148 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": "Hackatime Desktop", - "version": "0.1.0", + "version": "1.0.0", "identifier": "com.hackclub.hackatime", "build": { "beforeDevCommand": "pnpm dev", @@ -51,11 +51,15 @@ "open": true }, "deepLink": { - "schemes": ["kubetime"] + "schemes": [ + "kubetime" + ] }, "updater": { "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDdERjg4QTFCNTJFMDk0MUQKUldRZGxPQlNHNHI0ZlRkMDN0MGI1MnllY1dUVStZalV3dVdhcTFuREx5SGtBc0txQ2xnTWs3WU4K", - "endpoints": ["https://pub-d35fbe65a5b5426bb6d62ff02a8c7d03.r2.dev/update-manifest.json"] + "endpoints": [ + "https://pub-d35fbe65a5b5426bb6d62ff02a8c7d03.r2.dev/update-manifest.json" + ] } } }