summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@theqtcompany.com>2015-06-26 14:04:49 +0200
committerLiang Qi <liang.qi@theqtcompany.com>2015-06-26 14:04:49 +0200
commit1ef2ccf0facd75b7c4a478e4cef0595e0c7fd683 (patch)
tree01ae15c6ebb956c7dbd3390aca65258e52e1a512
parentb7f3086ef8f52a931ebe51fc065fcd813c913ef0 (diff)
parente7efbd88cd7a52a32116497d3e125d9b0bd9cd36 (diff)
downloadqtserialport-1ef2ccf0facd75b7c4a478e4cef0595e0c7fd683.tar.gz
Merge remote-tracking branch 'origin/5.5.0' into 5.5
Change-Id: Idb4e8013657a60e35a7772efff5e96090eb3a104
-rw-r--r--dist/changes-5.5.033
-rw-r--r--src/serialport/qserialport.h4
2 files changed, 35 insertions, 2 deletions
diff --git a/dist/changes-5.5.0 b/dist/changes-5.5.0
new file mode 100644
index 0000000..9100a5f
--- /dev/null
+++ b/dist/changes-5.5.0
@@ -0,0 +1,33 @@
+QtSerialPort 5.5 introduces a few new features and improvements as well as
+bugfixes over the 5.4.x series. For more details, refer to the online
+documentation included in this distribution. The documentation is also available
+online:
+
+ https://doc.qt.io/
+
+The QtSerialPort version 5.5 series is binary compatible with the 5.4.x series.
+Applications compiled for 5.4 will continue to run with 5.5.
+
+Some of the changes listed in this file include issue tracking numbers
+corresponding to tasks in the Qt Bug Tracker:
+
+ http://bugreports.qt.io/
+
+Each of these identifiers can be entered in the bug tracker to obtain more
+information about a particular change.
+
+****************************************************************************
+* Library *
+****************************************************************************
+
+ - Now the version for Qt 4 always will be in the separate "qt4-dev" branch.
+
+ - QSerialPort:
+ * [QTBUG-34946] The streaming does not stop anymore when the window is
+ resizing or moving.
+ * Added new lock directories for the *nix-specific platforms.
+ * The method QSP::clearError() now clears the error string.
+ * [QTBUG-45338] It is now possible to open the serial port on OS X when
+ the App Sandbox is used.
+ * [QTBUG-46066] The QT_DISABLE_DEPRECATED_BEFORE=QT_VERSION macro does
+ not lead to compilation failure now.
diff --git a/src/serialport/qserialport.h b/src/serialport/qserialport.h
index cbf489d..7531e47 100644
--- a/src/serialport/qserialport.h
+++ b/src/serialport/qserialport.h
@@ -259,13 +259,13 @@ Q_SIGNALS:
void parityChanged(QSerialPort::Parity parity);
void stopBitsChanged(QSerialPort::StopBits stopBits);
void flowControlChanged(QSerialPort::FlowControl flowControl);
-#if QT_DEPRECATED_SINCE(5, 2)
+#if QT_DEPRECATED_SINCE(5, 5)
QT_DEPRECATED void dataErrorPolicyChanged(QSerialPort::DataErrorPolicy policy);
#endif
void dataTerminalReadyChanged(bool set);
void requestToSendChanged(bool set);
void error(QSerialPort::SerialPortError serialPortError);
-#if QT_DEPRECATED_SINCE(5, 3)
+#if QT_DEPRECATED_SINCE(5, 5)
QT_DEPRECATED void settingsRestoredOnCloseChanged(bool restore);
#endif
void breakEnabledChanged(bool set);