Releases: ayushsharma82/ElegantOTA
3.1.6
What's Changed
- [ImgBot] Optimize images by @imgbot in #213
- Updating libs and improving CI by @mathieucarbou in #227
- Added
arduino-pico
v4.x.x SDK compatibility (RP2040)
Full Changelog: 3.1.5...3.1.6
3.1.5
- Added written offer for source code due to compliance issues.
Full Changelog: 3.1.4...3.1.5
3.1.4
What's Changed
- fix: asyncwebserver backwards compatibility by @ayushsharma82 in #212
Full Changelog: 3.1.3...3.1.4
3.1.3
What's Changed
- fix: update dependencies by @ayushsharma82 in #207
- ESP32 Arduino Core v3.0.3 compatibility
Full Changelog: 3.1.2...3.1.3
June 2024 Maintenance Release
What's Changed
- Arduino 3 / ESP-IDF 5 compatibility by @mathieucarbou in #178
- Arduino 3.0.1 by @mathieucarbou in #191
- Lower memory usage by @mathieucarbou in #192
- Group of commits from dev branch by @mathieucarbou in #199
- PlatformIO Upload: Improve error handling/logging, fix typos. by @gongloo in #195
- v3.1.2 Release by @ayushsharma82 in #189
New Contributors
- @mathieucarbou made their first contribution in #178
- @gongloo made their first contribution in #195
Full Changelog: 3.1.1...3.1.2
Updated PIO Script
Added RP2040 ( Pico W ) Support
ElegantOTA ( and Pro ) now officially supports platforms other than ESP family! 🎉 I think it's a good move towards making it the-facto library for all wireless MCUs. Really excited about the future of ElegantOTA!
Changelog:
- Added RP2040 ( Pico W ) Support
- Added
setAutoReboot
( @mathieucarbou ) - Improved auth logic ( @mathieucarbou )
- Improved DEBUG defs ( @mathieucarbou )
- Switched to std::functional for callbacks ( allows lib to be used in classes ) ( @mathieucarbou )
- Added note in Async Demo for enabling async mode
- Minor bug fixes and improvements
ElegantOTA V3 is Here! 🔥
ElegantOTA had a lot in waiting and I wanted to make sure it's worth waiting for! 🎊 The 3rd major release of ElegantOTA since 2019 🔥. It's quite surprising that ElegantOTA has been the choice of many since last 4 years. Wohoo!
A quick rundown of things that have been added with V3:
1. Switch to Vanilla JS 👨💻
Rewritten portal with Vanilla JS: ElegantOTA is one particular library in which using a JS framework was actually not a good choice because of the bundle size. Hence, I made the switch to vanilla JS which is the most bare form of making a webpage interactive. The final bundle size is something that a JS framework can never achieve!
Here's the comparison:
V2 | New V3 with VanillaJS |
---|---|
52Kb | 9.3Kb (-82%) |
2. Improved Webpage Generation Script
Improved compression script, now webpage header files are divided between header and source. This fixes linker issues when using ElegantOTA within another class/library.
3. Refreshed UI ⚡️
Refreshed portal UI according to Y23 standards. It now features light/dark theme selector so that you ( dark mode people ) don't burn your eyes when staring at the progress bar 😆.
4. Callbacks 📈
Callbacks now comes as standard across ElegantOTA and you can use them to stop any heavy/crucial task while the MCU is downloading OTA, keep track of progress and know when the OTA is finished with what status. Callbacks Documentation
5. Async Mode 🔄
ElegantOTA now gets the Async functionality from AsyncElegantOTA library. I decided to merge the existing AsyncElegantOTA library to keep the codebase same for all, this in return guarantees less bugs; and improvements are ported to both audiences. Async Mode Documentation
6. Dedicated Documentation ✏️
ElegantOTA lacked serious documentation because till date it was a library which didn't have much features. But all that is about to change and with V3 onwards, there is a dedicated documentation website that goes through every functionality.
7. Disable OTA Modes 🔥 ( Pro )
OTA Modes can now be disabled! This is something which was asked a lot in issues and now you can disable specific OTA modes as per your liking. Don't want filesystem updates? You can now do that 😄, the disabled modes appear disabled (greyed out) in portal so that user can know what is allowed. Documentation.
8. Custom Title 🔤 ( Pro )
You can now add your own custom portal title. Know more
9. Branding/Logo 😎 ( Pro )
I know people wanted to add their own project/company logo to personalize their ElegantOTA portal, therefore with V3 I've separated the logos from the webpage and now those can be set within the C++ code without touching the HTML, CSS or JS which is just awesome. Know more
10. Hardware ID & Firmware Version 💻 ( Pro )
Having a lot of devices on your network can be a mess! You can set hardware ID and current firmware version to better manage your devices. No more keeping the IP address of your device in mind, the ElegantOTA portal will let you know which device it is and what firmware version is it running. Documentation
I hope everybody likes this release! If you are new to ElegantOTA, I'll highly recommend trying out the open-source version and if you want more features you can look into purchasing pro version which is catered towards people who want more features. Learn More: https://elegantota.pro
License Change
The license of ElegantOTA open source edition has been changed from MIT
to AGPL-3.0
to better facilitate users with a good library and user experience. Please be aware of it if you are running ElegantOTA in any of your commercial products and please consider switching to SCL-1.0 ( SOFTT Commercial License 1.0 ) which allows commercial usage, it is comes included with ElegantOTA Pro.
April 2022 Release
- Merged ESP8266 & ESP32 Examples. One example will work for both platforms.
- Updated CI
Fixes for ESP8266
- Fixed ElegantOTA for ESP8266. This release rectifies the code which was introduced with v2.2.4
- Improved ID generation technique