Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-opcua for openSUSE:Factory 
checked in at 2021-06-15 16:37:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qt6-opcua (Old)
 and      /work/SRC/openSUSE:Factory/.qt6-opcua.new.32437 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qt6-opcua"

Tue Jun 15 16:37:54 2021 rev:3 rq:900087 version:6.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/qt6-opcua/qt6-opcua.changes      2021-05-10 
15:40:48.445221085 +0200
+++ /work/SRC/openSUSE:Factory/.qt6-opcua.new.32437/qt6-opcua.changes   
2021-06-15 16:38:29.381813266 +0200
@@ -1,0 +2,6 @@
+Tue Jun  8 05:54:15 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 6.1.1:
+  * https://www.qt.io/blog/qt-6.1.1-released
+
+-------------------------------------------------------------------

Old:
----
  qtopcua-6.1.0.tar.xz

New:
----
  qtopcua-6.1.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ qt6-opcua.spec ++++++
--- /var/tmp/diff_new_pack.6EjoY2/_old  2021-06-15 16:38:29.961814271 +0200
+++ /var/tmp/diff_new_pack.6EjoY2/_new  2021-06-15 16:38:29.961814271 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define real_version 6.1.0
+%define real_version 6.1.1
 %define short_version 6.1
 %define tar_name qtopcua
 %define tar_suffix %{nil}
@@ -27,7 +27,7 @@
 %endif
 #
 Name:           qt6-opcua%{?pkg_suffix}
-Version:        6.1.0
+Version:        6.1.1
 Release:        0
 Summary:        Qt wrapper for existing OPC UA stacks
 # src/plugins/opcua is GPL-3.0-or-later, rest is dual licensed

++++++ _service ++++++
--- /var/tmp/diff_new_pack.6EjoY2/_old  2021-06-15 16:38:30.001814340 +0200
+++ /var/tmp/diff_new_pack.6EjoY2/_new  2021-06-15 16:38:30.001814340 +0200
@@ -1,9 +1,9 @@
 <services>
   <service name="tar_scm" mode="disabled">
    <param name="changesgenerate">disable</param>
-   <param name="version">6.1.0</param>
+   <param name="version">6.1.1</param>
    <param name="url">git://code.qt.io/qt/qtopcua.git</param>
-   <param name="revision">v6.1.0</param>
+   <param name="revision">v6.1.1</param>
    <param name="scm">git</param>
    <param name="filename">qtopcua</param>
   </service>

++++++ qtopcua-6.1.0.tar.xz -> qtopcua-6.1.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/.cmake.conf 
new/qtopcua-6.1.1/.cmake.conf
--- old/qtopcua-6.1.0/.cmake.conf       2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/.cmake.conf       2021-06-02 20:55:34.000000000 +0200
@@ -1 +1 @@
-set(QT_REPO_MODULE_VERSION "6.1.0")
+set(QT_REPO_MODULE_VERSION "6.1.1")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/.qmake.conf 
new/qtopcua-6.1.1/.qmake.conf
--- old/qtopcua-6.1.0/.qmake.conf       2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/.qmake.conf       2021-06-02 20:55:34.000000000 +0200
@@ -3,4 +3,4 @@
 ROOT_SOURCE_DIR=$$PWD
 ROOT_BUILD_DIR=$$shadowed($$PWD)
 
-MODULE_VERSION = 6.1.0
+MODULE_VERSION = 6.1.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/conanfile.py 
new/qtopcua-6.1.1/conanfile.py
--- old/qtopcua-6.1.0/conanfile.py      2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/conanfile.py      2021-06-02 20:55:34.000000000 +0200
@@ -28,6 +28,7 @@
 
 from conans import ConanFile, tools, CMake
 import os
+from pathlib import Path
 
 
 class QtConanError(Exception):
@@ -36,7 +37,7 @@
 
 class QtOPCUA(ConanFile):
     name = "qtopcua"
-    version = "6.1.0"
+    version = "6.1.1"
     license = "GPL-3.0+, LGPL-3.0+, Commercial Qt License Agreement"
     author = "The Qt Company <https://www.qt.io/contact-us>"
     url = "https://code.qt.io/cgit/qt/qtopcua.git";
@@ -48,7 +49,8 @@
     default_options = {"shared": "default",  # default: Use the value of the 
Qt build
                        "qt6": None}
     exports_sources = "*", "!conan*.*"
-    revision_mode = "scm"  # use commit ID as the RREV (recipe revision)
+    # use commit ID as the RREV (recipe revision) if this is exported from 
.git repository
+    revision_mode = "scm" if Path(Path(__file__).parent.resolve() / 
".git").exists() else "hash"
 
     def source(self):
         # sources are installed next to recipe, no need to clone etc. sources 
here
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/dependencies.yaml 
new/qtopcua-6.1.1/dependencies.yaml
--- old/qtopcua-6.1.0/dependencies.yaml 2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/dependencies.yaml 2021-06-02 20:55:34.000000000 +0200
@@ -1,13 +1,13 @@
 dependencies:
   ../qtbase:
-    ref: b2ebc64dd9914359fe8acf2bc9960e341e98cf80
+    ref: 179b3f6797094a494e13a4d3daa5c6732bf0ada2
     required: true
   ../qtdeclarative:
-    ref: 2423608d6c0fa55595db3fe0138b0be94307596b
+    ref: 41c787b567e15e4524efd8cad25b61551d3d71b4
     required: true
   ../qtquickcontrols2:
-    ref: a9ec14df33421082e06d990b93c168bf8627dead
+    ref: e9ebf5fea7f88f3a46c46bfc88251b58330bda45
     required: true
   ../qttools:
-    ref: c973cf4f088f9d97a10f03ad60a5a39395edd188
+    ref: 7fe527d19d60b71adef5d3e41a0f013d4f521ac0
     required: true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/imports/opcua/opcuaattributeoperand.cpp 
new/qtopcua-6.1.1/src/imports/opcua/opcuaattributeoperand.cpp
--- old/qtopcua-6.1.0/src/imports/opcua/opcuaattributeoperand.cpp       
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/imports/opcua/opcuaattributeoperand.cpp       
2021-06-02 20:55:34.000000000 +0200
@@ -70,6 +70,7 @@
              ...
         ]
     }
+    \endcode
 */
 
 /*!
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/imports/opcua/opcuaconnection.cpp 
new/qtopcua-6.1.1/src/imports/opcua/opcuaconnection.cpp
--- old/qtopcua-6.1.0/src/imports/opcua/opcuaconnection.cpp     2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/imports/opcua/opcuaconnection.cpp     2021-06-02 
20:55:34.000000000 +0200
@@ -171,7 +171,7 @@
     \since 5.13
 
     Emitted when the read request, started using \l readNodeAttributes(), is 
finished.
-    The parameter of this signal is an array of \l ReadResult, which contains 
the
+    The \a readResults parameter is an array of \l ReadResult entries, 
containing the
     values requested from the server.
 
     \code
@@ -194,8 +194,8 @@
     \since 5.13
 
     Emitted when the write request started using \l writeNodeAttributes() is
-    finished. The parameter of this signal is an array of \l WriteResult, which
-    contains the values requested from the server.
+    finished. The \a writeResults parameter is an array of \l WriteResult 
entries,
+    containing the values requested from the server.
 
     \code
     for (var i = 0; i < writeResults.length; i++) {
@@ -327,7 +327,7 @@
 /*!
     \qmlmethod Connection::connectToEndpoint(endpointDescription)
 
-    Connects to the given endpoint.
+    Connects to the endpoint specified with \a endpointDescription.
 
     \sa EndpointDescription
 */
@@ -341,7 +341,7 @@
 }
 
 /*!
-    \qmlmethod Connection::disconnectFromEndpoint(url)
+    \qmlmethod Connection::disconnectFromEndpoint()
 
     Disconnects an established connection.
 */
@@ -421,7 +421,8 @@
     This function is used to read multiple values from a server in one go.
     Returns \c true if the read request was dispatched successfully.
 
-    The values to be read have to be passed as JavaScript array of \l ReadItem.
+    The \a valuesToBeRead parameter must be a JavaScript array of \l ReadItem
+    entries.
 
     \code
     // List of items to read
@@ -503,7 +504,8 @@
     This function is used to write multiple values to a server in one go.
     Returns \c true if the write request was dispatched successfully.
 
-    The values to be written have to be passed as JavaScript array of \l 
WriteItem.
+    The \a valuesToBeWritten parameter must be a JavaScript array of
+    \l WriteItem entries.
 
     \code
     // List of items to write
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/imports/opcua/opcuaeventfilter.cpp 
new/qtopcua-6.1.1/src/imports/opcua/opcuaeventfilter.cpp
--- old/qtopcua-6.1.0/src/imports/opcua/opcuaeventfilter.cpp    2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/imports/opcua/opcuaeventfilter.cpp    2021-06-02 
20:55:34.000000000 +0200
@@ -119,7 +119,7 @@
 */
 
 /*!
-    \qmlproperty list<SimpleAttributeOperand::select
+    \qmlproperty list<SimpleAttributeOperand> EventFilter::select
 
     Selected event fields that shall be included when a new event is reported.
 */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/imports/opcua/opcuafilterelement.cpp 
new/qtopcua-6.1.1/src/imports/opcua/opcuafilterelement.cpp
--- old/qtopcua-6.1.0/src/imports/opcua/opcuafilterelement.cpp  2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/imports/opcua/opcuafilterelement.cpp  2021-06-02 
20:55:34.000000000 +0200
@@ -70,9 +70,11 @@
 */
 
 /*!
-    \qmlproperty FilterElement::FilterOperator
+    \qmlproperty enumeration FilterElement::operatorType
 
-    FilterOperator enumerates all possible operators for a FilterElement that 
are specified in
+    The filter operator.
+
+    Possible operators for a FilterElement that are specified in
     OPC-UA part 4, Tables 115 and 116.
 
     \value FilterElement.Equals
@@ -96,25 +98,19 @@
 */
 
 /*!
-    \qmlproperty FilterElement::FilterOperator FilterElement::operatorType
-
-    The filter operator.
-*/
-
-/*!
     \qmlproperty variant FilterElement::firstOperand
 
     First operand to be used with the operator.
-    This can be one of \l SimplateAttributeOperand, \l AttributeOperand,
-    \l LiteralOperal or \l ElementOperand.
+    This can be one of \l SimpleAttributeOperand, \l AttributeOperand,
+    \l LiteralOperand or \l ElementOperand.
 */
 
 /*!
     \qmlproperty variant FilterElement::secondOperand
 
     Second operand to be used with the operator.
-    This can be one of \l SimplateAttributeOperand, \l AttributeOperand,
-    \l LiteralOperal or \l ElementOperand.
+    This can be one of \l SimpleAttributeOperand, \l AttributeOperand,
+    \l LiteralOperand or \l ElementOperand.
 */
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/imports/opcua/opcuasimpleattributeoperand.cpp 
new/qtopcua-6.1.1/src/imports/opcua/opcuasimpleattributeoperand.cpp
--- old/qtopcua-6.1.0/src/imports/opcua/opcuasimpleattributeoperand.cpp 
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/imports/opcua/opcuasimpleattributeoperand.cpp 
2021-06-02 20:55:34.000000000 +0200
@@ -81,6 +81,7 @@
              ...
         ]
     }
+    \endcode
 */
 
 /*!
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/imports/opcua/opcuavaluenode.cpp 
new/qtopcua-6.1.1/src/imports/opcua/opcuavaluenode.cpp
--- old/qtopcua-6.1.0/src/imports/opcua/opcuavaluenode.cpp      2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/imports/opcua/opcuavaluenode.cpp      2021-06-02 
20:55:34.000000000 +0200
@@ -78,7 +78,7 @@
     \qmlproperty variant ValueNode::valueType
 
     Type type of this node.
-    The initial value will be \l 
{QtOpcUa::Undefined}{QtOpcUa.Constants.Undefined} and be fetched from the 
server when the first connection is established.
+    The initial value will be \l 
{QOpcUa::Undefined}{QtOpcUa.Constants.Undefined} and be fetched from the server 
when the first connection is established.
     Any value will be written to the server as the specified type.
 */
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/opcua/client/qopcuaapplicationrecorddatatype.cpp 
new/qtopcua-6.1.1/src/opcua/client/qopcuaapplicationrecorddatatype.cpp
--- old/qtopcua-6.1.0/src/opcua/client/qopcuaapplicationrecorddatatype.cpp      
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/client/qopcuaapplicationrecorddatatype.cpp      
2021-06-02 20:55:34.000000000 +0200
@@ -201,7 +201,7 @@
 }
 
 /*!
-    Sets the discovery URLs to \a discoverUrls.
+    Sets the discovery URLs to \a discoveryUrls.
 */
 void QOpcUaApplicationRecordDataType::setDiscoveryUrls(const QList<QString> 
&discoveryUrls)
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/opcua/client/qopcuaextensionobject.cpp 
new/qtopcua-6.1.1/src/opcua/client/qopcuaextensionobject.cpp
--- old/qtopcua-6.1.0/src/opcua/client/qopcuaextensionobject.cpp        
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/client/qopcuaextensionobject.cpp        
2021-06-02 20:55:34.000000000 +0200
@@ -159,10 +159,10 @@
     \since 5.13
 
     Sets the body of this extension object to \a encodedBody,
-    sets the encoding of the body to \l Encoding::ByteString and
+    sets the encoding of the body to \l ByteString and
     sets the type id of the encoded data to \a typeId.
 
-    \sa setEncodedBody() setEncoding() setEncodingTypeId()
+    \sa setEncodedBody(), setEncoding(), setEncodingTypeId()
 */
 void QOpcUaExtensionObject::setBinaryEncodedBody(const QByteArray 
&encodedBody, const QString &typeId)
 {
@@ -175,10 +175,10 @@
     \since 5.13
 
     Sets the body of this extension object to \a encodedBody,
-    sets the encoding of the body to \l Encoding::Xml and
-    sets the type id of the encoded data to \a typeId.
+    sets the encoding of the body to \l Xml and sets the type
+    id of the encoded data to \a typeId.
 
-    \sa setEncodedBody() setEncoding() setEncodingTypeId()
+    \sa setEncodedBody(), setEncoding(), setEncodingTypeId()
 */
 void QOpcUaExtensionObject::setXmlEncodedBody(const QByteArray &encodedBody, 
const QString &typeId)
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/opcua/client/qopcuagdsclient.cpp 
new/qtopcua-6.1.1/src/opcua/client/qopcuagdsclient.cpp
--- old/qtopcua-6.1.0/src/opcua/client/qopcuagdsclient.cpp      2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/client/qopcuagdsclient.cpp      2021-06-02 
20:55:34.000000000 +0200
@@ -71,7 +71,7 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief Handles communication with the GDS Server
+    \brief Handles communication with the GDS Server.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without
@@ -177,8 +177,7 @@
 /*!
     \fn QOpcUaGdsClient::errorChanged(Error error)
 
-    This signal is emitted when an error occurred.
-    The \a state indicates the new state.
+    This signal is emitted when an \a error occurred.
 */
 
 /*!
@@ -190,7 +189,7 @@
 /*!
     \fn QOpcUaGdsClient::certificateGroupsReceived(QStringList 
certificateGroups)
 
-    This signal is emitted when the GDS client receives a new list of 
certificateGroups
+    This signal is emitted when the GDS client receives a new list of \a 
certificateGroups
     for this application.
 */
 
@@ -228,13 +227,6 @@
 */
 
 /*!
-    \fn QOpcUaGdsClient::trustListUpdated()
-
-    This signal is emitted when the GDS client has received a new trust list 
from the
-    server and stored to disk.
-*/
-
-/*!
     \fn 
QOpcUaGdsClient::authenticationRequired(QOpcUaAuthenticationInformation 
&authInfo)
 
     This signal is emitted when the GDS client tries to do a first time 
authentication
@@ -339,7 +331,7 @@
 */
 
 /*!
-    Constructs a GDS client
+    Constructs a GDS client with \a parent as the parent object.
 */
 QOpcUaGdsClient::QOpcUaGdsClient(QObject *parent)
     : QObject(*(new QOpcUaGdsClientPrivate()), parent)
@@ -349,7 +341,7 @@
 }
 
 /*!
-    Destructs a GDS client
+    Destructs a GDS client.
 */
 QOpcUaGdsClient::~QOpcUaGdsClient()
 {
@@ -410,7 +402,7 @@
 }
 
 /*!
-    Sets the PKI configuration to be used by the client.
+    Sets the PKI configuration \a pkiConfig to be used by the client.
 
     All certificates, keys and trust lists will be used from or stored to
     the locations given. In order to use the certificate received from
@@ -435,7 +427,7 @@
 }
 
 /*!
-    Sets the application identity to be used by the client.
+    Sets the application identity \a appIdentity to be used by the client.
 
     This identity is used to register with the GDS server.
     This function has to be called before starting the GDS client.
@@ -457,7 +449,7 @@
 }
 
 /*!
-    Sets the application record data to be used by the client.
+    Sets the application record data \a appRecord to be used by the client.
 
     This data is used to register with the GDS server.
     This function has to be called before starting the GDS client.
@@ -496,7 +488,8 @@
 }
 
 /*!
-    Sets the presets for certificate siging requests.
+    Sets the presets for certificate siging requests; the distinguished name 
\a dn and
+    the DNS string \a dns.
 
     When creating a certificate signing request some additional information is 
needed,
     that is not provided by the application identity.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/opcua/client/qopcuagdsclient.h 
new/qtopcua-6.1.1/src/opcua/client/qopcuagdsclient.h
--- old/qtopcua-6.1.0/src/opcua/client/qopcuagdsclient.h        2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/client/qopcuagdsclient.h        2021-06-02 
20:55:34.000000000 +0200
@@ -118,8 +118,8 @@
     void unregisterApplication();
 
 Q_SIGNALS:
-    void stateChanged(State);
-    void errorChanged(Error);
+    void stateChanged(State state);
+    void errorChanged(Error error);
     void applicationRegistered();
     void certificateGroupsReceived(QStringList certificateGroups);
     void certificateUpdateRequired();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/opcua/client/qopcuatype.cpp 
new/qtopcua-6.1.1/src/opcua/client/qopcuatype.cpp
--- old/qtopcua-6.1.0/src/opcua/client/qopcuatype.cpp   2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/client/qopcuatype.cpp   2021-06-02 
20:55:34.000000000 +0200
@@ -880,7 +880,8 @@
 /*!
     \since QtOpcUa 5.14
 
-    Returns \c true if a security policy is a secure policy.
+    Returns \c true if \a securityPolicy is a secure policy, \c false
+    otherwise.
 */
 bool QOpcUa::isSecurePolicy(const QString &securityPolicy)
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/opcua/doc/qtopcua.qdocconf 
new/qtopcua-6.1.1/src/opcua/doc/qtopcua.qdocconf
--- old/qtopcua-6.1.0/src/opcua/doc/qtopcua.qdocconf    2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/doc/qtopcua.qdocconf    2021-06-02 
20:55:34.000000000 +0200
@@ -53,11 +53,15 @@
 
 examplesinstallpath = opcua
 
+# Add a generic thumbnail to an example that has none
+manifestmeta.thumbnail.names += "QtOpcUa/Qt OPC UA X509 Support Example"
+
 depends += \
    qtcore \
    qtqml \
    qtquick \
    qtdoc \
+   qtcmake \
    qmake \
    qtwidgets
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/opcua/doc/src/qtopcua.qdoc 
new/qtopcua-6.1.1/src/opcua/doc/src/qtopcua.qdoc
--- old/qtopcua-6.1.0/src/opcua/doc/src/qtopcua.qdoc    2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/doc/src/qtopcua.qdoc    2021-06-02 
20:55:34.000000000 +0200
@@ -34,7 +34,8 @@
     \since 5.11
     \brief List of C++ classes that provide the Qt OPC UA functionality.
 
-    To link against the module, add this line to your \l cmake \c project file:
+    To link against the module, add this line to your \l {Build with CMake}
+    {cmake} project file:
 
     \code
     target_link_libraries(mytarget Qt::OpcUa)
@@ -54,7 +55,8 @@
     import QtOpcUa 5.12 as QtOpcUa
     \endcode
 
-    To link against the module, add the following QT variable to your \l cmake 
project file:
+    To link against the module, add the following QT variable to your
+    \l {Build with CMake}{cmake} project file:
 
     \badcode
     target_link_libraries(mytarget Qt::OpcUa)
@@ -91,7 +93,8 @@
     #include <QtOpcUa>
     \endcode
 
-    To link against the module, add this line to your \l cmake project file:
+    To link against the module, add this line to your \l {Build with CMake}
+    {cmake} project file:
 
     \code
     target_link_libraries(mytarget Qt::OpcUa)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/opcua/x509/qopcuakeypair.cpp 
new/qtopcua-6.1.1/src/opcua/x509/qopcuakeypair.cpp
--- old/qtopcua-6.1.0/src/opcua/x509/qopcuakeypair.cpp  2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/x509/qopcuakeypair.cpp  2021-06-02 
20:55:34.000000000 +0200
@@ -44,7 +44,7 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief QOpcUaKeyPair handles private and public key pairs
+    \brief QOpcUaKeyPair handles private and public key pairs.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without
@@ -92,15 +92,15 @@
 */
 
 /*!
-    \fn QOpcUaKeyPair::passphaseNeeded()
+    \fn QOpcUaKeyPair::passphraseNeeded(QString &passphrase, int 
maximumLength, bool writeOperation)
 
-    This signal is emitted when a private key needs a passphrase for en- or 
decryption.
+    This signal is emitted when a private key needs a \a passphrase for 
encryption or
+    decryption.
 
-    Place the passphrase in \a passphrase.
     \a writeOperation is \c true when the passphrase is needed for exporting a 
key, and
     is \c false when the passphrase is needed for importing a key.
 
-    \a maximumPassphraseSize specifies the maximum length in bytes for the 
passphrase.
+    \a maximumLength specifies the maximum length in bytes for the passphrase.
     All characters in \a passphrase exceeding this limit will be ignored.
 
     In case you have use this signal crossing thread boundaries you have to 
connect it
@@ -108,7 +108,7 @@
 */
 
 /*!
-    Creates a new empty key pair.
+    Creates a new empty key pair with \a parent as the parent object.
 */
 QOpcUaKeyPair::QOpcUaKeyPair(QObject *parent)
     : QObject(*(new QOpcUaKeyPairPrivate()), parent)
@@ -137,13 +137,7 @@
 }
 
 /*!
-    Loads a key from PEM encoded data in \a data.
-    Returns \c true on success and \c false otherwise.
-
-    It detects from the PEM header if the data contains a private or
-    public key. Loading encrypted keys is possible by connecting a
-    function to the signal \c passphraseNeeded for provision of the
-    passphrase.
+    Returns the public key as a byte array.
 */
 QByteArray QOpcUaKeyPair::publicKeyToByteArray() const
 {
@@ -187,7 +181,7 @@
 /*!
     Generates a new asymmetric RSA key pair.
 
-    The length of the key can be specified by the \c strength parameter.
+    The length of the key is specified by \a strength.
 */
 void QOpcUaKeyPair::generateRsaKey(QOpcUaKeyPair::RsaKeyStrength strength)
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/opcua/x509/qopcuax509certificatesigningrequest.cpp 
new/qtopcua-6.1.1/src/opcua/x509/qopcuax509certificatesigningrequest.cpp
--- old/qtopcua-6.1.0/src/opcua/x509/qopcuax509certificatesigningrequest.cpp    
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/x509/qopcuax509certificatesigningrequest.cpp    
2021-06-02 20:55:34.000000000 +0200
@@ -47,7 +47,7 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief QOpcUaX509CertificateSigningRequest create a certificate signing 
request
+    \brief QOpcUaX509CertificateSigningRequest create a certificate signing 
request.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without
@@ -182,9 +182,12 @@
 /*!
     Adds a certificate extension to the request.
 
-    The ownership of the extension object will be transferred to this class.
+    The ownership of the \a extension object will be transferred to this class.
 
-    \sa QOpcUaX509ExtensionSubjectAlternativeName, 
QOpcUaX509ExtensionBasicConstraints, QOpcUaX509ExtensionKeyUsage, 
QOpcUaX509ExtensionKeyUsage
+    \sa QOpcUaX509ExtensionSubjectAlternativeName,
+        QOpcUaX509ExtensionBasicConstraints,
+        QOpcUaX509ExtensionKeyUsage,
+        QOpcUaX509ExtensionKeyUsage
 */
 void QOpcUaX509CertificateSigningRequest::addExtension(QOpcUaX509Extension 
*extension)
 {
@@ -193,7 +196,7 @@
 }
 
 /*!
-    Sets the subject for this request.
+    Sets the \a subject for this request.
     Without a subject it is not possible to generate the request.
 */
 void QOpcUaX509CertificateSigningRequest::setSubject(const 
QOpcUaX509DistinguishedName &subject)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/opcua/x509/qopcuax509distinguishedname.cpp 
new/qtopcua-6.1.1/src/opcua/x509/qopcuax509distinguishedname.cpp
--- old/qtopcua-6.1.0/src/opcua/x509/qopcuax509distinguishedname.cpp    
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/x509/qopcuax509distinguishedname.cpp    
2021-06-02 20:55:34.000000000 +0200
@@ -44,7 +44,7 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief Information about a distinguished name item
+    \brief Information about a distinguished name item.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extension.cpp 
new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extension.cpp
--- old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extension.cpp    2021-05-04 
07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extension.cpp    2021-06-02 
20:55:34.000000000 +0200
@@ -44,13 +44,14 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief Base class for all X509 extensions
+    \brief Base class for all X509 extensions.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without
     prior notice.
 
-    \sa QOpcUaX509ExtensionSubjectAlternativeName, 
QOpcUaX509ExtensionBasicConstraints, QOpcUaX509ExtensionKeyUsage, 
QOpcUaX509ExtensionKeyUsage
+    \sa QOpcUaX509ExtensionSubjectAlternativeName, 
QOpcUaX509ExtensionBasicConstraints,
+        QOpcUaX509ExtensionKeyUsage, QOpcUaX509ExtensionKeyUsage
 */
 
 /*!
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extensionbasicconstraints.cpp 
new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extensionbasicconstraints.cpp
--- old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extensionbasicconstraints.cpp    
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extensionbasicconstraints.cpp    
2021-06-02 20:55:34.000000000 +0200
@@ -44,7 +44,7 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief Class for X509 basic constraints
+    \brief Class for X509 basic constraints.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extensionextendedkeyusage.cpp 
new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extensionextendedkeyusage.cpp
--- old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extensionextendedkeyusage.cpp    
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extensionextendedkeyusage.cpp    
2021-06-02 20:55:34.000000000 +0200
@@ -45,7 +45,7 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief Class for X509 extended key usage
+    \brief Class for X509 extended key usage.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extensionkeyusage.cpp 
new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extensionkeyusage.cpp
--- old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extensionkeyusage.cpp    
2021-05-04 07:56:49.000000000 +0200
+++ new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extensionkeyusage.cpp    
2021-06-02 20:55:34.000000000 +0200
@@ -45,7 +45,7 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief Class for X509 extended key usage
+    \brief Class for X509 extended key usage.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extensionsubjectalternativename.cpp 
new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extensionsubjectalternativename.cpp
--- 
old/qtopcua-6.1.0/src/opcua/x509/qopcuax509extensionsubjectalternativename.cpp  
    2021-05-04 07:56:49.000000000 +0200
+++ 
new/qtopcua-6.1.1/src/opcua/x509/qopcuax509extensionsubjectalternativename.cpp  
    2021-06-02 20:55:34.000000000 +0200
@@ -46,7 +46,7 @@
     \inmodule QtOpcUa
     \since 5.14
 
-    \brief Class for an X509 subject alternative name
+    \brief Class for an X509 subject alternative name.
 
     This class is currently available as a Technology Preview, and therefore 
the API
     and functionality provided by the class may be subject to change at any 
time without

Reply via email to