Files
homepage/src-tauri/tauri.conf.json
Alexander Bocken 3b11cb9878
All checks were successful
CI / update (push) Successful in 3m43s
feat: record cadence from step detector during GPS workouts
Use Android TYPE_STEP_DETECTOR sensor in LocationForegroundService to
count steps in a 15s rolling window. Cadence (spm) is computed at each
GPS point and stored alongside lat/lng/altitude/speed. Session detail
page shows cadence chart when data is available.

No additional permissions required — step detector is not a restricted
sensor. Gracefully skipped on devices without the sensor.
2026-04-11 15:28:27 +02:00

32 lines
588 B
JSON

{
"productName": "Bocken",
"identifier": "org.bocken.app",
"version": "0.4.0",
"build": {
"devUrl": "http://192.168.1.4:5173",
"frontendDist": "https://bocken.org"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "Bocken",
"url": "/",
"fullscreen": false,
"useHttpsScheme": true
}
]
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}