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.

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