Skip to content

Commit 9e6866c

Browse files
committed
0.13.0-b6
1 parent 7101ad8 commit 9e6866c

File tree

8 files changed

+21
-8
lines changed

8 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
### Builds after release 0.12.0
44

5+
#### Build 2112080
6+
7+
- Version bump to 0.13.0-b6 "Toki"
8+
- Added "ESP02" (ESP8266 with 2M of flash) to PIO/release binaries
9+
510
#### Build 2112070
611

712
- Added new effect "Fairy", replacing "Police All"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wled",
3-
"version": "0.13.0-b5",
3+
"version": "0.13.0-b6",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

platformio.ini

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@
1212
; default_envs = travis_esp8266, travis_esp32
1313

1414
# Release binaries
15-
default_envs = nodemcuv2, esp01_1m_full, esp32dev, esp32_eth
15+
default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, esp32dev, esp32_eth
1616

1717
# Build everything
1818
; default_envs = esp32dev, esp8285_4CH_MagicHome, esp8285_4CH_H801, codm-controller-0.6-rev2, codm-controller-0.6, esp32s2_saola, d1_mini_5CH_Shojo_PCB, d1_mini, sp501e, travis_esp8266, travis_esp32, nodemcuv2, esp32_eth, anavi_miracle_controller, esp07, esp01_1m_full, m5atom, h803wf, d1_mini_ota, heltec_wifi_kit_8, esp8285_5CH_H801, d1_mini_debug, wemos_shield_esp32, elekstube_ips
1919

2020
# Single binaries (uncomment your board)
2121
; default_envs = elekstube_ips
2222
; default_envs = nodemcuv2
23+
; default_envs = esp8266_2m
2324
; default_envs = esp01_1m_full
2425
; default_envs = esp07
2526
; default_envs = d1_mini
@@ -241,6 +242,13 @@ build_unflags = ${common.build_unflags}
241242
build_flags = ${common.build_flags_esp8266} -D WLED_RELEASE_NAME=ESP8266
242243
lib_deps = ${esp8266.lib_deps}
243244

245+
[env:esp8266_2m]
246+
board = esp_wroom_02
247+
platform = ${common.platform_wled_default}
248+
board_build.ldscript = ${common.ldscript_2m512k}
249+
build_flags = ${common.build_flags_esp8266} -D WLED_RELEASE_NAME=ESP02
250+
lib_deps = ${esp8266.lib_deps}
251+
244252
[env:esp01_1m_full]
245253
board = esp01_1m
246254
platform = ${common.platform_wled_default}

wled00/html_other.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function B(){window.history.back()}function U(){document.getElementById("uf").st
4242
.bt{background:#333;color:#fff;font-family:Verdana,sans-serif;border:.3ch solid #333;display:inline-block;font-size:20px;margin:8px;margin-top:12px}input[type=file]{font-size:16px}body{font-family:Verdana,sans-serif;text-align:center;background:#222;color:#fff;line-height:200%}#msg{display:none}
4343
</style></head><body><h2>WLED Software Update</h2><form method="POST"
4444
action="/update" id="uf" enctype="multipart/form-data" onsubmit="U()">
45-
Installed version: 0.13.0-b5<br>Download the latest binary: <a
45+
Installed version: 0.13.0-b6<br>Download the latest binary: <a
4646
href="https://github.com/Aircoookie/WLED/releases" target="_blank"><img
4747
src="https://img.shields.io/github/release/Aircoookie/WLED.svg?style=flat-square">
4848
</a><br><input type="file" class="bt" name="update" required><br><input

wled00/html_settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ onclick='uploadFile(d.Sf.data2,"/cfg.json")'><br></div><div style="color:#fa0">
430430
Incorrect configuration may require a factory reset or re-flashing of your ESP.
431431
</div>For security reasons, passwords are not backed up.<h3>About</h3><a
432432
href="https://github.com/Aircoookie/WLED/" target="_blank">WLED</a>
433-
version 0.13.0-b5<br><br><a
433+
version 0.13.0-b6<br><br><a
434434
href="https://github.com/Aircoookie/WLED/wiki/Contributors-and-credits"
435435
target="_blank">Contributors, dependencies and special thanks</a><br>
436436
A huge thank you to everyone who helped me create WLED!<br><br>

wled00/improv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ void sendImprovInfoResponse() {
189189
out[11] = 4; //Firmware len ("WLED")
190190
out[12] = 'W'; out[13] = 'L'; out[14] = 'E'; out[15] = 'D';
191191
uint8_t lengthSum = 17;
192-
uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.13.0-b5/%i"),VERSION);
192+
uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.13.0-b6/%i"),VERSION);
193193
out[16] = vlen; lengthSum += vlen;
194194
uint8_t hlen = 7;
195195
#ifdef ESP8266

wled00/wled.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
/*
44
Main sketch, global variable declarations
55
@title WLED project sketch
6-
@version 0.13.0-b5
6+
@version 0.13.0-b6
77
@author Christian Schwinne
88
*/
99

1010
// version code in format yymmddb (b = daily build)
11-
#define VERSION 2112070
11+
#define VERSION 2112080
1212

1313
//uncomment this if you have a "my_config.h" file you'd like to use
1414
//#define WLED_USE_MY_CONFIG

0 commit comments

Comments
 (0)