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.

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