Skip to content

Commit 9550445

Browse files
committed
200.4.0 -> 200.5.0 version upgrade.
1 parent e582fb9 commit 9550445

File tree

14 files changed

+18
-18
lines changed

14 files changed

+18
-18
lines changed

augmentedreality/Examples/CppArExample/CppArExample.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ equals(QT_MAJOR_VERSION, 6) {
3535
}
3636
}
3737

38-
ARCGIS_RUNTIME_VERSION = 200.4.0
38+
ARCGIS_RUNTIME_VERSION = 200.5.0
3939
include($$PWD/arcgisruntime.pri)
4040

4141
HEADERS += \

augmentedreality/Examples/QmlArExample/QmlArExample.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ equals(QT_MAJOR_VERSION, 6) {
3737
}
3838
}
3939

40-
ARCGIS_RUNTIME_VERSION = 200.4.0
40+
ARCGIS_RUNTIME_VERSION = 200.5.0
4141
include($$PWD/arcgisruntime.pri)
4242

4343
TEMPLATE = app

augmentedreality/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ for details.
8484
[ArcGIS Maps SDK for Qt Toolkit](https://github.com/Esri/arcgis-maps-sdk-toolkit-qt).
8585

8686
3. In Qt Creator, create a new project and select the app template named
87-
"ArcGIS Maps 200.4.0 Qt Quick C++ app". Select the option "3D project" in the
87+
"ArcGIS Maps 200.5.0 Qt Quick C++ app". Select the option "3D project" in the
8888
"Details" dialog.
8989

9090
4. In the newly created project, add the following lines anywhere in the app's project (`.pro`)
@@ -231,7 +231,7 @@ for details.
231231

232232
2. Download the sources of the [ArcGIS Maps SDK for Qt Toolkit](https://github.com/Esri/arcgis-maps-sdk-toolkit-qt) from GitHub.
233233

234-
3. In Qt Creator, create a new project and select "ArcGIS Maps 200.4.0 Qt Quick QML app".
234+
3. In Qt Creator, create a new project and select "ArcGIS Maps 200.5.0 Qt Quick QML app".
235235
Select the option "3D project" in the "Details" step.
236236

237237
4. In the created project, add the following lines anywhere in the app's project

calcite-qml/demo/calcite_test.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ CONFIG += c++17
2323
# additional modules are pulled in via arcgisruntime.pri
2424
QT += opengl qml quick quickcontrols2
2525

26-
ARCGIS_RUNTIME_VERSION = 200.4.0
26+
ARCGIS_RUNTIME_VERSION = 200.5.0
2727
include($$PWD/arcgisruntime.pri)
2828

2929
TEMPLATE = app

tests/uitools/cpp_quick/unit_tests/BasemapGalleryItemUnitTest/BasemapGalleryItemUnitTest.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ QT += testlib
2727
QT -= gui
2828
QT += core gui opengl xml testlib network positioning sensors multimedia quick
2929

30-
ARCGIS_RUNTIME_VERSION = 200.4.0
30+
ARCGIS_RUNTIME_VERSION = 200.5.0
3131

3232
include($$PWD/../arcgisruntime.pri)
3333
include($$PWD/../../../../../uitools/toolkitcpp.pri)

tests/uitools/qml_quick/functional_tests/FloorFilterControllerFuncTest/FloorFilterControllerFuncTest.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CONFIG += c++17 warn_on qmltestcase
1616

1717
TEMPLATE = app
1818

19-
ARCGIS_RUNTIME_VERSION = 200.4.0
19+
ARCGIS_RUNTIME_VERSION = 200.5.0
2020
include($$PWD/../../shared/arcgisruntime.pri)
2121
include($$PWD/../../../../../uitools/toolkitqml.pri)
2222

tests/uitools/qml_quick/functional_tests/FloorFilterFuncTest/FloorFilterFuncTest.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CONFIG += c++17 warn_on qmltestcase
1616

1717
TEMPLATE = app
1818

19-
ARCGIS_RUNTIME_VERSION = 200.4.0
19+
ARCGIS_RUNTIME_VERSION = 200.5.0
2020
include($$PWD/../../shared/arcgisruntime.pri)
2121
include($$PWD/../../../../../uitools/toolkitqml.pri)
2222

tests/uitools/qml_quick/unit_tests/FloorFilterControllerUnitTest/FloorFilterControllerUnitTest.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CONFIG += c++17 warn_on qmltestcase
1616

1717
TEMPLATE = app
1818

19-
ARCGIS_RUNTIME_VERSION = 200.4.0
19+
ARCGIS_RUNTIME_VERSION = 200.5.0
2020
include($$PWD/../../shared/arcgisruntime.pri)
2121
include($$PWD/../../../../../uitools/toolkitqml.pri)
2222

uitools/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ project.
4747
A good way to start using the toolkit is to use one of the template apps which
4848
get added to QtCreator when you install the ArcGIS Runime SDK for Qt.
4949

50-
- In QtCreator choose `File/New file or project/ArcGIS/ArcGIS Maps 200.4.0 Quick QML App`
50+
- In QtCreator choose `File/New file or project/ArcGIS/ArcGIS Maps 200.5.0 Quick QML App`
5151
- choose settings to match the platform etc. you are building for
5252
- in the `.pro` file of your new app, add a line to add the toolkit for your
5353
QML application. For example:
@@ -111,7 +111,7 @@ MapView {
111111
A good way to start using the toolkit is to use one of the template apps which
112112
get added to QtCreator when you install the ArcGIS Runime SDK for Qt.
113113

114-
- In QtCreator choose `File/New file or project/ArcGIS/ArcGIS Maps 200.4.0 Qt Quick C++ App`
114+
- In QtCreator choose `File/New file or project/ArcGIS/ArcGIS Maps 200.5.0 Qt Quick C++ App`
115115
- choose settings to match the platform etc. you are building for
116116
- in the `.pro` file of your new app, add a line to add the library for your QML
117117
plugin - for example:
@@ -172,7 +172,7 @@ MapView {
172172
A good way to start using the toolkit is to use one of the template apps which
173173
get added to QtCreator when you install the ArcGIS Maps SDK for Qt.
174174

175-
- In QtCreator choose `File/New file or project/ArcGIS/ArcGIS Maps 200.4.0 Qt Widgets App`
175+
- In QtCreator choose `File/New file or project/ArcGIS/ArcGIS Maps 200.5.0 Qt Widgets App`
176176
- choose settings to match the platform etc. you are building for
177177
- in the `.pro` file of your new app, add a line to add the library for your QML
178178
plugin - for example:

uitools/examples/cpp_quick/cpp_quick.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ equals(QT_MAJOR_VERSION, 6) {
3939
}
4040
}
4141

42-
ARCGIS_RUNTIME_VERSION = 200.4.0
42+
ARCGIS_RUNTIME_VERSION = 200.5.0
4343
include($$PWD/arcgisruntime.pri)
4444
include($$PWD/../../toolkitcpp.pri)
4545

0 commit comments

Comments
 (0)