From b223581abb51d360747a3b3566ea02687efe63e4 Mon Sep 17 00:00:00 2001 From: Denis Shienkov Date: Sat, 17 Jan 2015 13:34:21 +0300 Subject: Add changelog for 5.4.1 version Change-Id: I7623182c1ce1eecd724a2b4e8593f75a1ac49cc9 Reviewed-by: Sergey Belyashov --- dist/changes-5.4.1 | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 dist/changes-5.4.1 diff --git a/dist/changes-5.4.1 b/dist/changes-5.4.1 new file mode 100644 index 0000000..65437ce --- /dev/null +++ b/dist/changes-5.4.1 @@ -0,0 +1,62 @@ +Qt 5.4.1 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.4.0. + +For more details, refer to the online documentation included in this +distribution. The documentation is also available online: + + http://qt-project.org/doc/ + +The Qt version 5.4 series is binary compatible with the 5.3.x series. +Applications compiled for 5.3 will continue to run with 5.4. + +Some of the changes listed in this file include issue tracking numbers +corresponding to tasks in the Qt Bug Tracker: + + http://bugreports.qt-project.org/ + +Each of these identifiers can be entered in the bug tracker to obtain more +information about a particular change. + +**************************************************************************** +* Library * +**************************************************************************** + + - Improved the Terminal example in which the user can setup a custom serial + port name. + - Improved the Enumerator example in which is added the scroll area. + - Now the Terminal example does not close already closed serial port. It + allows to suppress an additional messagebox with NotOpenError error. + - Now the Q_NULLPTR are used where it is possible. + + - QSerialPortInfo: + * [QTBUG-41262] Now the QSerialPortInfo::isNull() returns true when it + is empty. + * Improved the algorithm of serial ports enumeration for Unix-like systems. + Now does not trying to find out a devices in /dev/, when the udev or the + sysfs returns nothing. + * Improved the sysfs backend's algorithm to enumerate of serial ports + on Linux. + * [QTBUG-32024] Fixed detection of valid serial8250 serial ports on Linux. + * Added detection of Bluetooth SPP (rfcomm) serial port with SysFs backend. + + - QSerialPort: + * [QTBUG-38639] Allow to use custom (non standard) serial ports paths + which can be as symlinks, starts with not '/dev' and so on. + * Fixed leak of handles of events on Windows. + * Added handling for EINVAL, ENOIOCTLCMD, ENOTTY and EPERM errors on + Unix-like systems. + * Now the serial port is marked as opened only if all settings was aplied + internally. It allows to suppress the NotOpenError when the close() + method is called from a slot which is connected to the SerialPortError + signal. + * Fixed setup an error on Unix-like systems, when the setBaudRate() + method is failed. + * Now the serial port does not query a state of RTS and DTR lines when + opening. It allows to suppress the UnsupportedOperationError error when + a serial port does not support this feature (for example when using + socat and so on). + * [QTBUG-43484] Fixed stalling of reading when the multiple opening and + closing calls in a row are used. + * Fixed stalling of reading on Windows when the clear() method are used. + * Fixed stalling of reading on Windows when the limited buffer size + are used. -- cgit v1.2.1 From 5a05fb7b63b6e3a89ab6d4ea8a7795ecdb95748b Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Mon, 19 Jan 2015 11:00:42 +0100 Subject: Edit changelog for 5.4.1 version Fix grammar, spelling, and style issues. Change-Id: I98f8429f200d24633f504f6ea701509555da38a1 Reviewed-by: Denis Shienkov --- dist/changes-5.4.1 | 53 ++++++++++++++++++++++++++--------------------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/dist/changes-5.4.1 b/dist/changes-5.4.1 index 65437ce..f7bf85d 100644 --- a/dist/changes-5.4.1 +++ b/dist/changes-5.4.1 @@ -12,7 +12,7 @@ Applications compiled for 5.3 will continue to run with 5.4. Some of the changes listed in this file include issue tracking numbers corresponding to tasks in the Qt Bug Tracker: - http://bugreports.qt-project.org/ + http://bugreports.qt.io Each of these identifiers can be entered in the bug tracker to obtain more information about a particular change. @@ -21,42 +21,41 @@ information about a particular change. * Library * **************************************************************************** - - Improved the Terminal example in which the user can setup a custom serial - port name. - - Improved the Enumerator example in which is added the scroll area. - - Now the Terminal example does not close already closed serial port. It - allows to suppress an additional messagebox with NotOpenError error. - - Now the Q_NULLPTR are used where it is possible. + - Improved the Terminal and Enumerator examples: + * In the Terminal example, users can now specify a custom serial port name. + * The Terminal example no longer attempts to close a serial port that is + already closed. It allows to suppress an additional message box with the + NotOpenError error. + * Added a scroll area to the Enumerator example. + * Q_NULLPTR is now used where it is possible. - QSerialPortInfo: * [QTBUG-41262] Now the QSerialPortInfo::isNull() returns true when it is empty. * Improved the algorithm of serial ports enumeration for Unix-like systems. - Now does not trying to find out a devices in /dev/, when the udev or the - sysfs returns nothing. - * Improved the sysfs backend's algorithm to enumerate of serial ports + Devices are no longer looked for in /dev/ if udev or sysfs return nothing. + * Improved the sysfs backend's algorithm for enumeration of serial ports on Linux. * [QTBUG-32024] Fixed detection of valid serial8250 serial ports on Linux. * Added detection of Bluetooth SPP (rfcomm) serial port with SysFs backend. - QSerialPort: - * [QTBUG-38639] Allow to use custom (non standard) serial ports paths - which can be as symlinks, starts with not '/dev' and so on. - * Fixed leak of handles of events on Windows. + * [QTBUG-38639] Allowed using custom (non standard) serial ports paths + that can be used as symlinks or do not start with '/dev', and so on. + * Fixed leak of event handles on Windows. * Added handling for EINVAL, ENOIOCTLCMD, ENOTTY and EPERM errors on Unix-like systems. - * Now the serial port is marked as opened only if all settings was aplied - internally. It allows to suppress the NotOpenError when the close() - method is called from a slot which is connected to the SerialPortError + * The serial port is now marked as opened only if all settings were applied + internally. This enables suppressing the NotOpenError when the close() + method is called from a slot that is connected to the SerialPortError signal. - * Fixed setup an error on Unix-like systems, when the setBaudRate() - method is failed. - * Now the serial port does not query a state of RTS and DTR lines when - opening. It allows to suppress the UnsupportedOperationError error when - a serial port does not support this feature (for example when using - socat and so on). - * [QTBUG-43484] Fixed stalling of reading when the multiple opening and - closing calls in a row are used. - * Fixed stalling of reading on Windows when the clear() method are used. - * Fixed stalling of reading on Windows when the limited buffer size - are used. + * Fixed setting up an error on Unix-like systems, when the setBaudRate() + method fails. + * The serial port no longer queries the state of RTS and DTR lines when + opening. This enables suppressing the UnsupportedOperationError error when + a serial port does not support this feature (for example, when using + socat). + * [QTBUG-43484] Fixed stalling of reading when multiple open and + close calls are used in a row. + * Fixed stalling of reading on Windows when the clear() method is used. + * Fixed stalling of reading on Windows when the buffer size is limited. -- cgit v1.2.1