Skip to content

Commit 053f834

Browse files
committed
Version 0.6
Amend extra fix for .pri files.
1 parent a96d916 commit 053f834

File tree

10 files changed

+42
-11
lines changed

10 files changed

+42
-11
lines changed

.ci/qt_installer_windows.qs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Controller.prototype.ObligationsPageCallback = function()
4242
{
4343
var page = gui.pageWidgetByObjectName("ObligationsPage");
4444
page.obligationsAgreement.setChecked(true);
45+
var individualPerson = gui.findChild(page, "IndividualPerson");
46+
individualPerson.setChecked(true);
4547
page.completeChanged();
4648
gui.clickButton(buttons.NextButton, 2000);
4749
}

.github/workflows/branchpush.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
- 0.3
1010
- 0.4
1111
- 0.5
12+
- 0.6
1213
- ci_check
1314
jobs:
1415
build-ubuntu:

CHANGES.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
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+
128
2020-08-31 version 0.5.0 (generator/QtProtobuf/QtGrpc)
229
QtProtobuf
330
* Change the qmake executable lookup way

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.14)
22
cmake_policy(VERSION 3.6...3.14)
33

4-
set(QT_PROTOBUF_VERSION 0.5.0)
4+
set(QT_PROTOBUF_VERSION 0.6.0)
55
set(QT_PROTOBUF_NAMESPACE QtProtobuf)
66
set(QT_PREFIX Qt)
77
set(QT_VERSIONED_PREFIX Qt5)

cmake/QtProtobufInternalHelpers.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,7 @@ endfunction()
415415
function(qt_protobuf_internal_generate_pri target)
416416
string(TOLOWER "${target}" target_lower)
417417
set(pri_name "qt_lib_${target_lower}.pri")
418+
get_target_property(QT_PROTOBUF_LIBRARY_OUTPUT_NAME ${target} OUTPUT_NAME)
418419

419420
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/${pri_name}.in"
420421
"${QT_PROTOBUF_BINARY_DIR}/${pri_name}" @ONLY

src/grpc/qt_lib_grpc.pri.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
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@
55
QT.grpc.private_includes =
66
QT.grpc.libs = @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@
77
QT.grpc.depends = core network protobuf

src/protobuf/qt_lib_protobuf.pri.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
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@
55
QT.protobuf.private_includes =
66
QT.protobuf.libs = @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@
77
QT.protobuf.depends = core qml

tests/test_extra_namespace_qml/qml/tst_extra_namespace.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import QtQuick 2.12
2727
import QtTest 1.0
2828

29-
import QtProtobuf 0.5
29+
import QtProtobuf 0.6
3030
import MyTestNamespace.qtprotobufnamespace.tests 1.0
3131

3232
TestCase {

tests/test_grpc_qml/qml/tst_grpc.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
import QtQuick 2.12
2727
import QtTest 1.0
2828

29-
import QtProtobuf 0.5
30-
import QtGrpc 0.5
29+
import QtProtobuf 0.6
30+
import QtGrpc 0.6
3131
import qtprotobufnamespace.tests 1.0
3232

3333
TestCase {

tests/test_qml/qml/tst_simple.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import QtQuick 2.12
2727
import QtTest 1.0
2828

29-
import QtProtobuf 0.5
29+
import QtProtobuf 0.6
3030
import qtprotobufnamespace.tests 1.0
3131
import qtprotobufnamespace.tests.nested 1.0
3232
import qtprotobufnamespace.tests.nested.NestedFieldMessage 1.0 as NestedFieldMessage_

0 commit comments

Comments
 (0)