release: bump firmware version to 0.5.0
This commit is contained in:
@@ -10,7 +10,7 @@ The firmware itself is intended to stay vehicle-agnostic.
|
|||||||
|
|
||||||
## Current Version
|
## Current Version
|
||||||
|
|
||||||
0.4.0
|
0.5.0
|
||||||
|
|
||||||
## What It Does
|
## What It Does
|
||||||
|
|
||||||
|
|||||||
+5
-5
@@ -19,7 +19,7 @@ All documented endpoints are local-first and must continue to work without inter
|
|||||||
Current firmware version:
|
Current firmware version:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
0.4.0
|
0.5.0
|
||||||
```
|
```
|
||||||
|
|
||||||
## Current Endpoints
|
## Current Endpoints
|
||||||
@@ -91,7 +91,7 @@ Returns a lightweight liveness response for dashboards and service tools.
|
|||||||
"ok": true,
|
"ok": true,
|
||||||
"api_version": "v1",
|
"api_version": "v1",
|
||||||
"firmware_name": "overland-controller",
|
"firmware_name": "overland-controller",
|
||||||
"firmware_version": "0.4.0",
|
"firmware_version": "0.5.0",
|
||||||
"uptime_seconds": 123,
|
"uptime_seconds": 123,
|
||||||
"network": {
|
"network": {
|
||||||
"ap_enabled": true,
|
"ap_enabled": true,
|
||||||
@@ -120,7 +120,7 @@ Returns API and feature discovery data for clients.
|
|||||||
"ok": true,
|
"ok": true,
|
||||||
"api_version": "v1",
|
"api_version": "v1",
|
||||||
"firmware_name": "overland-controller",
|
"firmware_name": "overland-controller",
|
||||||
"firmware_version": "0.4.0",
|
"firmware_version": "0.5.0",
|
||||||
"endpoints": [
|
"endpoints": [
|
||||||
"GET /api/v1/status",
|
"GET /api/v1/status",
|
||||||
"POST /api/v1/relay/set"
|
"POST /api/v1/relay/set"
|
||||||
@@ -319,7 +319,7 @@ The AP remains enabled even when STA WiFi is configured or connected.
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"firmware_name": "overland-controller",
|
"firmware_name": "overland-controller",
|
||||||
"firmware_version": "0.4.0",
|
"firmware_version": "0.5.0",
|
||||||
"build_date": "Jun 7 2026",
|
"build_date": "Jun 7 2026",
|
||||||
"build_time": "12:00:00",
|
"build_time": "12:00:00",
|
||||||
"uptime_seconds": 123
|
"uptime_seconds": 123
|
||||||
@@ -472,7 +472,7 @@ Important: export includes saved WiFi passwords so the backup can be restored. T
|
|||||||
"ok": true,
|
"ok": true,
|
||||||
"api_version": "v1",
|
"api_version": "v1",
|
||||||
"firmware_name": "overland-controller",
|
"firmware_name": "overland-controller",
|
||||||
"firmware_version": "0.4.0",
|
"firmware_version": "0.5.0",
|
||||||
"config": {
|
"config": {
|
||||||
"device_name": "Overland Controller",
|
"device_name": "Overland Controller",
|
||||||
"temperature_sensor_count": 4,
|
"temperature_sensor_count": 4,
|
||||||
|
|||||||
@@ -1,5 +1,27 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.5.0 - 2026-06-08
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- WPA2 AP configuration API and WebUI controls.
|
||||||
|
- AP reset recovery action with regenerated password.
|
||||||
|
- Status API field filtering for smaller dashboard/WebUI payloads.
|
||||||
|
- Config page subtabs for General, WiFi/AP, Relays, Temperatures, BMS, and Maintenance.
|
||||||
|
- Relay button state/command feedback in the WebUI.
|
||||||
|
- Optional Cargo OLED display scaffold.
|
||||||
|
- GPIO plan assigning OLED I2C to GPIO 21/22 and setup button to GPIO 25.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Dashboard communication direction is now WiFi/HTTP API.
|
||||||
|
- Retired active dashboard UART pin usage.
|
||||||
|
- Improved WebUI visual styling, mobile temperature settings layout, and config form behavior during polling.
|
||||||
|
- Removed vehicle-specific branding from active project docs/examples.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Config inputs no longer get overwritten while typing during polling.
|
||||||
|
- Temperature config lookup remains available outside disabled UART code.
|
||||||
|
- Misleading WebUI connection badge text.
|
||||||
|
|
||||||
## 0.4.0 - 2026-06-04
|
## 0.4.0 - 2026-06-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ The assistant should treat the Cargo ESP32 firmware and primary docs as the sour
|
|||||||
Current firmware version:
|
Current firmware version:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
0.4.0
|
0.5.0
|
||||||
```
|
```
|
||||||
|
|
||||||
Current architecture:
|
Current architecture:
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ Last updated: 2026-06-07
|
|||||||
|
|
||||||
Current firmware version:
|
Current firmware version:
|
||||||
|
|
||||||
0.4.0
|
0.5.0
|
||||||
|
|
||||||
## Current Architecture
|
## Current Architecture
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define FIRMWARE_VERSION "0.4.0"
|
#define FIRMWARE_VERSION "0.5.0"
|
||||||
#define FIRMWARE_NAME "overland-controller"
|
#define FIRMWARE_NAME "overland-controller"
|
||||||
|
|||||||
Reference in New Issue
Block a user