From 9e6269d413ad225c19dc71feca2baac163afd2f1 Mon Sep 17 00:00:00 2001 From: MarcelineVPQ Date: Sun, 17 May 2026 08:11:15 -0600 Subject: [PATCH] =?UTF-8?q?rebase:=20bump=20on-screen=20version=20strings?= =?UTF-8?q?=200.5.4=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both occurrences in src/oled.cpp (Status header + boot splash) and the matching README ASCII mockup. Matches our new upstream base. --- README.md | 2 +- src/oled.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a667b17..2646c52 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ Connection state, paired DualSense BD address, battery % with bar (`+` charging ``` ┌──────────────────────────────┐ -│ DS5 Bridge v0.5.4 ● │ +│ DS5 Bridge v0.6.0 ● │ │ 14:3A:9A:FF:D9:F9 │ │ 87%+ ╔══════════════╗ │ │ ║██████░░░░░░░░║▌ │ diff --git a/src/oled.cpp b/src/oled.cpp index 47cd226..0174a1a 100644 --- a/src/oled.cpp +++ b/src/oled.cpp @@ -437,7 +437,7 @@ __attribute__((noinline)) void render_screen() { const bool connected = bt_is_connected(); - draw_text(0, 0, "DS5 Bridge v0.5.4"); + draw_text(0, 0, "DS5 Bridge v0.6.0"); draw_icon(120, 0, connected ? kIconLinkOn : kIconLinkOff, 8, 8); if (connected) { @@ -1157,7 +1157,7 @@ void boot_splash() { return (128 - (n * 6 - 1)) / 2; }; const char* l1 = "DS5 Bridge"; - const char* l2 = "v0.5.4"; + const char* l2 = "v0.6.0"; const char* l3 = "Pico2W + OLED"; draw_text(cx_for(l1), 16, l1); draw_text(cx_for(l2), 30, l2);