File tree Expand file tree Collapse file tree 10 files changed +42
-11
lines changed Expand file tree Collapse file tree 10 files changed +42
-11
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ Controller.prototype.ObligationsPageCallback = function()
42
42
{
43
43
var page = gui . pageWidgetByObjectName ( "ObligationsPage" ) ;
44
44
page . obligationsAgreement . setChecked ( true ) ;
45
+ var individualPerson = gui . findChild ( page , "IndividualPerson" ) ;
46
+ individualPerson . setChecked ( true ) ;
45
47
page . completeChanged ( ) ;
46
48
gui . clickButton ( buttons . NextButton , 2000 ) ;
47
49
}
Original file line number Diff line number Diff line change 9
9
- 0.3
10
10
- 0.4
11
11
- 0.5
12
+ - 0.6
12
13
- ci_check
13
14
jobs :
14
15
build-ubuntu :
Original file line number Diff line number Diff line change
1
+ 2021-05-23 version 0.6.0 (generator/QtProtobuf/QtGrpc)
2
+ QtProtobuf
3
+ * Split generator and QtProtobuf library
4
+ * Add standalone tests build
5
+ * Change the installation folder for the .pri files and qml modules
6
+ * Initial cross-compiling support
7
+ * Change the lookup mechanism of 3rdparty components
8
+ * Add github workflow to build Windows release packages
9
+ * Fix transparent types converter
10
+ * Replace ASSERT_EQ by EXPECT_EQ in converter tests
11
+ * Make microjson build-in only
12
+ * Tune coverage collecting procedure
13
+ * Add support of the cycling dependency between nested types
14
+ QtGrpc
15
+ * Fix subscription read buffer not clearing on subsequent calls
16
+ * Add a client QML call with the return value as a parameter
17
+ * Fixes for newer grpc versions
18
+ * Add implementation of a QAbstractGrpcChannel based on gRPC C++ native library
19
+ * Add timeout for subscription error
20
+ * Add disconnect method for subscription
21
+ generator
22
+ * Implement extra namespace for the generated code
23
+ * Add reflection of the json name to the property ordering
24
+ * Change the name of QML list properties. Keep the protobuf name for the
25
+ QML list prtoperties.
26
+ * Add field enum generation
27
+
1
28
2020-08-31 version 0.5.0 (generator/QtProtobuf/QtGrpc)
2
29
QtProtobuf
3
30
* Change the qmake executable lookup way
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.14 )
2
2
cmake_policy (VERSION 3.6...3.14 )
3
3
4
- set (QT_PROTOBUF_VERSION 0.5 .0 )
4
+ set (QT_PROTOBUF_VERSION 0.6 .0 )
5
5
set (QT_PROTOBUF_NAMESPACE QtProtobuf )
6
6
set (QT_PREFIX Qt )
7
7
set (QT_VERSIONED_PREFIX Qt5 )
Original file line number Diff line number Diff line change @@ -415,6 +415,7 @@ endfunction()
415
415
function (qt_protobuf_internal_generate_pri target )
416
416
string (TOLOWER "${target} " target_lower )
417
417
set (pri_name "qt_lib_${target_lower} .pri" )
418
+ get_target_property (QT_PROTOBUF_LIBRARY_OUTPUT_NAME ${target} OUTPUT_NAME )
418
419
419
420
configure_file ("${CMAKE_CURRENT_SOURCE_DIR} /${pri_name} .in"
420
421
"${QT_PROTOBUF_BINARY_DIR} /${pri_name} " @ONLY
Original file line number Diff line number Diff line change 1
1
QT.grpc.VERSION = @QT_PROTOBUF_VERSION@
2
- QT.grpc.name = QtGrpc
3
- QT.grpc.module = QtGrpc
4
- QT.grpc.includes = @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_INCLUDEDIR@/QtGrpc
2
+ QT.grpc.name = Qt@target@
3
+ QT.grpc.module = @QT_PROTOBUF_LIBRARY_OUTPUT_NAME@
4
+ QT.grpc.includes = @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_INCLUDEDIR@/@QT_PROTOBUF_NAMESPACE@@target@
5
5
QT.grpc.private_includes =
6
6
QT.grpc.libs = @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@
7
7
QT.grpc.depends = core network protobuf
Original file line number Diff line number Diff line change 1
1
QT.protobuf.VERSION = @QT_PROTOBUF_VERSION@
2
- QT.protobuf.name = QtProtobuf
3
- QT.protobuf.module = QtProtobuf
4
- QT.protobuf.includes = @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_INCLUDEDIR@/QtProtobuf
2
+ QT.protobuf.name = Qt@target@
3
+ QT.protobuf.module = @QT_PROTOBUF_LIBRARY_OUTPUT_NAME@
4
+ QT.protobuf.includes = @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_INCLUDEDIR@/@QT_PROTOBUF_NAMESPACE@@target@
5
5
QT.protobuf.private_includes =
6
6
QT.protobuf.libs = @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@
7
7
QT.protobuf.depends = core qml
Original file line number Diff line number Diff line change 26
26
import QtQuick 2.12
27
27
import QtTest 1.0
28
28
29
- import QtProtobuf 0.5
29
+ import QtProtobuf 0.6
30
30
import MyTestNamespace.qtprotobufnamespace.tests 1.0
31
31
32
32
TestCase {
Original file line number Diff line number Diff line change 26
26
import QtQuick 2.12
27
27
import QtTest 1.0
28
28
29
- import QtProtobuf 0.5
30
- import QtGrpc 0.5
29
+ import QtProtobuf 0.6
30
+ import QtGrpc 0.6
31
31
import qtprotobufnamespace.tests 1.0
32
32
33
33
TestCase {
Original file line number Diff line number Diff line change 26
26
import QtQuick 2.12
27
27
import QtTest 1.0
28
28
29
- import QtProtobuf 0.5
29
+ import QtProtobuf 0.6
30
30
import qtprotobufnamespace.tests 1.0
31
31
import qtprotobufnamespace.tests.nested 1.0
32
32
import qtprotobufnamespace.tests.nested.NestedFieldMessage 1.0 as NestedFieldMessage_
You can’t perform that action at this time.
0 commit comments