Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

179 lines
4.7 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # ESPurna change log
  2. The format is based on [Keep a Changelog](http://keepachangelog.com/)
  3. and this project adheres to [Semantic Versioning](http://semver.org/).
  4. ## [1.4.4] 2017-01-13
  5. ### Added
  6. - Adding current, voltage, apparent and reactive power reports to Sonoff POW (Web & MQTT)
  7. ### Fixed
  8. - #35 Fixed frequent MQTT connection drops after WIFI reconnect
  9. - Defer wifi disconnection from web interface to allow request to return
  10. ### Changed
  11. - Move all Arduino IDE configuration values to their own file
  12. - Using latest HLW8012 library in interrupt mode
  13. ## [1.4.3] 2017-01-11
  14. ### Fixed
  15. - #6 Using forked Time library to prevent conflict with Arduino Core for ESP8266 time.h file in windows machines
  16. ## [1.4.2] 2017-01-09
  17. ### Added
  18. - Support for inverse logic relays
  19. ### Fixed
  20. - Fixed error in relay identification from MQTT messages (issue #31)
  21. ## [1.4.1] 2017-01-05
  22. ### Added
  23. - Alexa support by default on all devices
  24. - Added support for Wemos D1 Mini board with official Relay Shield
  25. ### Fixed
  26. - Multi-packet websocket frames
  27. ## [1.4.0] 2016-12-31
  28. ### Added
  29. - Domoticz support via MQTT (https://www.domoticz.com/wiki/MQTT)
  30. - Support for static IP connections
  31. ### Fixed
  32. - Enforce minimum password strength in web interface (#16)
  33. ### Changed
  34. - Using default client_id provided by AsyncMqttClient
  35. - Allow up to 5 different WIFI networks
  36. ### Removed
  37. - File system version file
  38. ## [1.3.1] 2016-12-31
  39. ### Fixed
  40. - data_dir fix for PlatformIO
  41. ## [1.3.0] 2016-12-30
  42. ### Changed
  43. - Arduino IDE support (changes in the folder structure and documentation)
  44. ## [1.2.0] 2016-12-27
  45. ### Added
  46. - Force password changing if it's the default one
  47. - Added Last-Modified header to static contents
  48. - Added DNS captive portal for AP mode
  49. - Added support for Sonoff 4CH
  50. - Added support for WorkChoice ecoPlug (ECOPLUG). Thanks to David Myers
  51. - Added support for Sonoff SV
  52. - Added support for Sonoff Touch
  53. - Comment out hardware selection in hardware.h if using Arduino IDE
  54. - Added support for MQTT get/set suffixes (/status, /set, ...)
  55. - Added support for LED notifications via MQTT
  56. - Added EEPROM check commands to terminal interface
  57. ### Changed
  58. - Using unreleased AsyncMqttClient with stability improvements
  59. - Better decoupling between MQTT and relays/websockets
  60. - Skipping retained MQTT messages (configurable)
  61. ### Fixed
  62. - Issue #11 Compile error when building sonoff-dual-debug
  63. - Issue #14 MQTT Connection with Username an Password not working
  64. - Issue #17 Moved static variable 'pending' to class variable
  65. ## [1.1.0] 2016-12-06
  66. ### Added
  67. - Added support for DS18B20 temperature sensor. Thanks to Francesco Boscarino
  68. - Added reset command from console
  69. - Added support for multirelay boards like Sonoff DUAL or Electrodragon ESP Relay Board
  70. ### Changed
  71. - Not using espressif8266_stage in default environment
  72. - Relay MQTT topics
  73. - API entry points
  74. ### Removed
  75. - Old non protected API
  76. ## [1.0.3] 2016-11-29
  77. ### Added
  78. - WeMo emulation through the fauxmoESP library (control your switch from Alexa!)
  79. - REST API for relay management
  80. - Better dependency definitions in platformio.ini
  81. - Option to define inverse logic to on-board LED
  82. - Built data folder included in repo
  83. ### Changed
  84. - Using non-interrupt driven mode for HLW8012
  85. - Better documentation
  86. - Small changes to web interface
  87. - Same admin password for web, OTA and WIFI AP mode
  88. ### Fixed
  89. - Prevent fauxmoESP to be compiled by default
  90. ### Removed
  91. - Removed ESPurna board to its own repo
  92. ## [1.0.1] 2016-11-13
  93. ### Added
  94. - Basic authentication and CSRF to websocket requests
  95. ## [1.0.0] 2016-11-13
  96. ### Added
  97. - Using ESPAsyncWebServer (for web & websockets) and AsyncMqttClient
  98. ## [0.9.9] 2016-11-12
  99. ### Added
  100. - Preliminary support for Sonoff POW
  101. - Replace AJAX requests with websockets
  102. - Using sprites for images
  103. - Hostname can be changed
  104. - Added initial relay state mode
  105. - Reconnect and reset buttons on web interface
  106. ### Changed
  107. - Changed long click to reset and double click to AP mode
  108. - Using officially supported platformio.ini file by default
  109. ### Fixed
  110. - Removed unnecessary memory inefficient code
  111. - Temprary fix for Adafruit DHT library (see https://github.com/adafruit/DHT-sensor-library/issues/62)
  112. ## [0.9.8] 2016-10-06
  113. ### Added
  114. - Using PureCMS for the web interface
  115. - Using gulp to build the filesystem files
  116. - Using Embedis for configuration
  117. ### Changed
  118. - Updated JustWifi library
  119. - Web interface changes
  120. - Using custom platformio.ini file
  121. - Loads of changes in modules
  122. - Added DEBUG_MSG
  123. ### Fixed
  124. - Clean gulp builder script
  125. ## [0.9.7] 2016-08-28
  126. ### Changed
  127. - Moving wifi management to library (JustWifi)
  128. - Split code into modules
  129. ## [0.9.6] 2016-08-12
  130. ### Added
  131. - Added heartbeat, version and fsversion MQTT messages
  132. ### Changed
  133. - GZip 3rd party contents
  134. ## [0.9.5] 2016-07-31
  135. - Initial stable version