From 9c0f269ee5da0e318b40afc62fae7e4024c48b7b Mon Sep 17 00:00:00 2001 From: Alex Petrochenko Date: Wed, 7 Jan 2026 09:44:57 +0000 Subject: [PATCH] chore: bump version to 1.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- firmware/clock_ntp_ota_v1.9/clock_ntp_ota_v1.9.ino | 2 +- firmware/clock_ntp_ota_v1.9/config.h | 4 ++-- firmware/clock_ntp_ota_v1.9/display.cpp | 2 +- firmware/clock_ntp_ota_v1.9/globals.h | 2 +- firmware/clock_ntp_ota_v1.9/ntp_client.cpp | 2 +- firmware/clock_ntp_ota_v1.9/weather.cpp | 2 +- firmware/clock_ntp_ota_v1.9/web_server.cpp | 2 +- firmware/clock_ntp_ota_v1.9/wifi_manager.cpp | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/firmware/clock_ntp_ota_v1.9/clock_ntp_ota_v1.9.ino b/firmware/clock_ntp_ota_v1.9/clock_ntp_ota_v1.9.ino index 0fe1dd4..c71b670 100644 --- a/firmware/clock_ntp_ota_v1.9/clock_ntp_ota_v1.9.ino +++ b/firmware/clock_ntp_ota_v1.9/clock_ntp_ota_v1.9.ino @@ -1,5 +1,5 @@ /* - * TJ-56-654 Weather Clock - Custom NTP Firmware with OTA v1.9.2 + * TJ-56-654 Weather Clock - Custom NTP Firmware with OTA v1.9.3 * * Hardware: * - ESP-01S (ESP8266) diff --git a/firmware/clock_ntp_ota_v1.9/config.h b/firmware/clock_ntp_ota_v1.9/config.h index d84d2a9..21f7bc5 100644 --- a/firmware/clock_ntp_ota_v1.9/config.h +++ b/firmware/clock_ntp_ota_v1.9/config.h @@ -1,6 +1,6 @@ /* * config.h - Configuration structures and constants - * TJ-56-654 Weather Clock v1.9.2 + * TJ-56-654 Weather Clock v1.9.3 */ #ifndef CONFIG_H @@ -9,7 +9,7 @@ #include // Firmware version -#define FIRMWARE_VERSION "1.9.2" +#define FIRMWARE_VERSION "1.9.3" // OLED I2C Configuration #define I2C_SDA 0 // GPIO0 (I2C Data) - SWAPPED! diff --git a/firmware/clock_ntp_ota_v1.9/display.cpp b/firmware/clock_ntp_ota_v1.9/display.cpp index 08d75f4..d8b00b3 100644 --- a/firmware/clock_ntp_ota_v1.9/display.cpp +++ b/firmware/clock_ntp_ota_v1.9/display.cpp @@ -1,6 +1,6 @@ /* * display.cpp - Display functions for OLED - * TJ-56-654 Weather Clock v1.9.2 + * TJ-56-654 Weather Clock v1.9.3 */ #include "globals.h" diff --git a/firmware/clock_ntp_ota_v1.9/globals.h b/firmware/clock_ntp_ota_v1.9/globals.h index 079eb15..a960124 100644 --- a/firmware/clock_ntp_ota_v1.9/globals.h +++ b/firmware/clock_ntp_ota_v1.9/globals.h @@ -1,6 +1,6 @@ /* * globals.h - Global variables and extern declarations - * TJ-56-654 Weather Clock v1.9.2 + * TJ-56-654 Weather Clock v1.9.3 */ #ifndef GLOBALS_H diff --git a/firmware/clock_ntp_ota_v1.9/ntp_client.cpp b/firmware/clock_ntp_ota_v1.9/ntp_client.cpp index a56435e..4ee53d1 100644 --- a/firmware/clock_ntp_ota_v1.9/ntp_client.cpp +++ b/firmware/clock_ntp_ota_v1.9/ntp_client.cpp @@ -1,6 +1,6 @@ /* * ntp_client.cpp - NTP client and time functions - * TJ-56-654 Weather Clock v1.9.2 + * TJ-56-654 Weather Clock v1.9.3 */ #include "globals.h" diff --git a/firmware/clock_ntp_ota_v1.9/weather.cpp b/firmware/clock_ntp_ota_v1.9/weather.cpp index f38fecb..8a51a4e 100644 --- a/firmware/clock_ntp_ota_v1.9/weather.cpp +++ b/firmware/clock_ntp_ota_v1.9/weather.cpp @@ -1,6 +1,6 @@ /* * weather.cpp - Weather API functions - * TJ-56-654 Weather Clock v1.9.2 + * TJ-56-654 Weather Clock v1.9.3 */ // Include AsyncHTTPRequest BEFORE globals.h to provide full type definition diff --git a/firmware/clock_ntp_ota_v1.9/web_server.cpp b/firmware/clock_ntp_ota_v1.9/web_server.cpp index 5280aa0..c17f40e 100644 --- a/firmware/clock_ntp_ota_v1.9/web_server.cpp +++ b/firmware/clock_ntp_ota_v1.9/web_server.cpp @@ -1,6 +1,6 @@ /* * web_server.cpp - Web server handlers - * TJ-56-654 Weather Clock v1.9.2 + * TJ-56-654 Weather Clock v1.9.3 */ #include "globals.h" diff --git a/firmware/clock_ntp_ota_v1.9/wifi_manager.cpp b/firmware/clock_ntp_ota_v1.9/wifi_manager.cpp index c027a46..114a954 100644 --- a/firmware/clock_ntp_ota_v1.9/wifi_manager.cpp +++ b/firmware/clock_ntp_ota_v1.9/wifi_manager.cpp @@ -1,6 +1,6 @@ /* * wifi_manager.cpp - WiFi connection management - * TJ-56-654 Weather Clock v1.9.2 + * TJ-56-654 Weather Clock v1.9.3 */ #include "globals.h"