Commit e48efd3852d58db057ad0aee02c0673cc3238192
1 parent
9ba562e5
Update NEWS file
Showing
1 changed file
with
44 additions
and
0 deletions
NEWS
| 1 | libmodbus 3.1.1 (2012-XX-XX) | 1 | libmodbus 3.1.1 (2012-XX-XX) |
| 2 | ============================ | 2 | ============================ |
| 3 | 3 | ||
| 4 | +- Fix socket value on init/close | ||
| 5 | +- Returns -1 on invalid mode in modbus_rtu_set_rts | ||
| 6 | +- Protect all public functions against invalid context | ||
| 7 | +- Sleep for delay of response timeout before reconnect (closes #77). | ||
| 8 | + Thanks to Karl Palsson. | ||
| 9 | +- Baud rate until 4,000,000 (POSIX), 1,000,000 (Windows) (closes #93) | ||
| 10 | +- New modbus_get|set_float_dcba to get|set float in inversed byte order | ||
| 11 | +- Remove unsupported -Wtype-limits for GCC < 4.3.5 (closes #109) | ||
| 12 | +- Enable out-of-source build. Thanks to Yegor Yefremov. | ||
| 13 | +- Fix alignment problem on ARMv5 platform | ||
| 14 | +- Improvement to Debian package. Thanks to Alexander Klauer. | ||
| 15 | +- Improve support of VS 2005. Thanks to Petr Gladkiy. | ||
| 16 | +- Add documentation for modbus_mask_write_register (closes #91). | ||
| 17 | + Thanks to Martijn de Gouw. | ||
| 18 | +- Avoid C99 declaration in win32 section code (closes #92). | ||
| 19 | + Thanks to oldfaber and endrelovas. | ||
| 20 | +- Add a windows scripting host configure file. | ||
| 21 | + Thanks to oldfaber and Stéphane Raimbault. | ||
| 22 | +- Fix typo in modbus_strerror documentation. Thanks to Mirko Rajkovaca. | ||
| 23 | +- Rename reserved C++ keywords of modbus_mask_write_register. | ||
| 24 | + Thanks Tobias Doerffel. | ||
| 25 | +- Another quick workaround for deficient OS (closes #63) | ||
| 26 | +- Add support for Mask Write Register | ||
| 27 | +- Fix missing close on socket in random-test-server. | ||
| 28 | + Thanks to Damian Zieliński. | ||
| 29 | +- Use nonblocking sockets on Win32 and OS X/iOS too. | ||
| 30 | + Thanks to Julian Raschke. | ||
| 31 | +- Fix all compilations warnings spotted by new compilation flags | ||
| 32 | +- Major update of build system | ||
| 33 | +- Calculate RTS activation time by send length | ||
| 34 | +- Dynamic memory allocation of device name (closes #11) | ||
| 35 | +- Add unit tests for modbus_mapping_new | ||
| 4 | - Add Visual Studio 2008 project files by oldfaber | 36 | - Add Visual Studio 2008 project files by oldfaber |
| 5 | - Fix missing argument in synopsis section of modbus_rtu_set_serial_mode | 37 | - Fix missing argument in synopsis section of modbus_rtu_set_serial_mode |
| 6 | - Fix wrong constant names to create version number | 38 | - Fix wrong constant names to create version number |
| 7 | - More compilation fixes for Windows by oldfaber. | 39 | - More compilation fixes for Windows by oldfaber. |
| 40 | +- Fix wrong constant names to create version number. | ||
| 41 | + Thanks to Denis Davydov. | ||
| 8 | 42 | ||
| 9 | libmodbus 3.1.0 (2012-06-22) | 43 | libmodbus 3.1.0 (2012-06-22) |
| 10 | ============================ | 44 | ============================ |
| @@ -32,6 +66,16 @@ RTS flow control. | @@ -32,6 +66,16 @@ RTS flow control. | ||
| 32 | - RTS flow control with modbus_rtu_set_rts and modbus_rtu_get_rts | 66 | - RTS flow control with modbus_rtu_set_rts and modbus_rtu_get_rts |
| 33 | functions by Torello Querci <tquerci@gmail.com> and Stéphane Raimbault. | 67 | functions by Torello Querci <tquerci@gmail.com> and Stéphane Raimbault. |
| 34 | 68 | ||
| 69 | +libmodbus 3.0.4 (2012-05-08) | ||
| 70 | +============================ | ||
| 71 | + | ||
| 72 | +- autogen.sh creates symlinks instead of copies | ||
| 73 | +- Add missing m4 directory (closes #103) | ||
| 74 | +- Fix alignment problem on ARMv5 platform | ||
| 75 | + Thanks to Alexander Dahl | ||
| 76 | +- Remove useless test on error_recovery argument | ||
| 77 | + Thanks to Carlos Tangerino | ||
| 78 | + | ||
| 35 | libmodbus 3.0.3 (2012-05-25) | 79 | libmodbus 3.0.3 (2012-05-25) |
| 36 | ============================ | 80 | ============================ |
| 37 | 81 |