From 00e6e2a8f71f1b168e7f7bb2a89b697cb11368ce Mon Sep 17 00:00:00 2001 From: Devydd <68201914+devydd@users.noreply.github.com> Date: Thu, 18 Mar 2021 17:00:18 +0100 Subject: [PATCH 1/2] In detailed soldering view add '+' symbol after the temperature to indicate active boost mode (when active) --- source/Core/Threads/GUIThread.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/Core/Threads/GUIThread.cpp b/source/Core/Threads/GUIThread.cpp index f6bcd8a5..f05d325d 100644 --- a/source/Core/Threads/GUIThread.cpp +++ b/source/Core/Threads/GUIThread.cpp @@ -547,7 +547,13 @@ static void gui_solderingMode(uint8_t jumpToSleep) { OLED::setCursor(0, 8); OLED::print(SleepingTipAdvancedString); gui_drawTipTemp(true); - OLED::print(SymbolSpace); + + if (boostModeOn) { + OLED::print(SymbolPlus); + } else { + OLED::print(SymbolSpace); + } + printVoltage(); OLED::print(SymbolVolts); } else { From cf942dd7adbaab89659214e4fe1eb659a6fbc844 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Fri, 19 Mar 2021 20:34:38 +1100 Subject: [PATCH 2/2] Restore build.sh Closes #893 --- build.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 00000000..10f26c0d --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +docker-compose run --rm builder /bin/bash /build/ci/buildAll.sh \ No newline at end of file