chore(main): release app 1.0.0

This commit is contained in:
leafdbot[bot] 2025-10-03 18:16:40 +00:00 committed by GitHub
parent 5754897646
commit ead15e9b03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 33 additions and 5 deletions

View file

@ -1,3 +1,4 @@
{
"app": "0.0.0"
"app": "0.0.0",
".": "1.0.0"
}

23
CHANGELOG.md Normal file
View file

@ -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))

View file

@ -1,7 +1,7 @@
{
"name": "desktop",
"private": true,
"version": "0.1.0",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",

View file

@ -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"
]
}
}
}