Skip to content

Commit 5a9bdad

Browse files
committed
Relax self update requirements
Apply no restrictions in the 0.15 release line.
1 parent 379f9c9 commit 5a9bdad

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

wled00/wled_metadata.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,7 @@ const wled_metadata_t __attribute__((section(BUILD_METADATA_SECTION))) WLED_BUIL
5959
TOSTRING(WLED_VERSION),
6060
WLED_RELEASE_NAME, // release_name
6161
std::integral_constant<uint32_t, djb2_hash_constexpr(WLED_RELEASE_NAME)>::value, // hash - computed at compile time; integral_constant enforces this
62-
#if defined(ESP32) && defined(CONFIG_IDF_TARGET_ESP32)
63-
{ 0, 15, 3 }, // Some older ESP32 might have bootloader issues; assume we'll have it sorted by 0.15.3
64-
#else
65-
{ 0, 15, 2 }, // All other platforms can update safely
66-
#endif
62+
{ 0, 0, 0 }, // All other platforms can update safely
6763
};
6864

6965
static const char repoString_s[] PROGMEM = WLED_REPO;

0 commit comments

Comments
 (0)