Skip to content

Commit 1f757ee

Browse files
James/100 6 (#322)
* 100.6 version update. * More versioning changes. * Updates for more versioning changes. * Only current version should be updated.
1 parent ef4044c commit 1f757ee

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

Examples/CalloutExample.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import QtQuick 2.11
1818
import QtQuick.Controls 2.4
1919
import QtPositioning 5.8
2020
import QtSensors 5.9
21-
import Esri.ArcGISRuntime 100.5
21+
import Esri.ArcGISRuntime 100.6
2222
import Esri.ArcGISExtras 1.1
23-
import Esri.ArcGISRuntime.Toolkit.Controls 100.5
23+
import Esri.ArcGISRuntime.Toolkit.Controls 100.6
2424

2525
Rectangle {
2626
width: 800

Examples/Examples.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import QtQuick 2.11
1818
import QtQuick.Controls 2.4
1919
import QtGraphicalEffects 1.0
20-
import Esri.ArcGISRuntime 100.5
20+
import Esri.ArcGISRuntime 100.6
2121

2222
Rectangle {
2323
width: 640

Examples/PopupExample.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import QtQuick.Controls 2.4
1919
import QtPositioning 5.8
2020
import QtSensors 5.9
2121
import QtQuick.Dialogs 1.2
22-
import Esri.ArcGISRuntime 100.5
22+
import Esri.ArcGISRuntime 100.6
2323
import Esri.ArcGISExtras 1.1
24-
import Esri.ArcGISRuntime.Toolkit.Controls 100.5
24+
import Esri.ArcGISRuntime.Toolkit.Controls 100.6
2525

2626
Rectangle {
2727
id: root

Import/Esri/ArcGISRuntime/Toolkit/Controls/CppApi/qmldir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ ArcGISCompass 100.2 ArcGISCompass1002.qml
2222
ArcGISCompass 100.5 ArcGISCompass.qml
2323
TimeSlider 100.3 TimeSlider1003.qml
2424
TimeSlider 100.5 TimeSlider.qml
25-
CurrentVersion 100.5 CurrentVersion.qml
25+
CurrentVersion 100.6 CurrentVersion.qml

Import/Esri/ArcGISRuntime/Toolkit/Controls/QmlApi/qmldir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ TimeSlider 100.3 TimeSlider1003.qml
2020
TimeSlider 100.5 TimeSlider.qml
2121
internal TimeSlider1003 TimeSliderController1003.qml
2222
internal TimeSlider TimeSliderController.qml
23-
CurrentVersion 100.5 CurrentVersion.qml
23+
CurrentVersion 100.6 CurrentVersion.qml

Import/Esri/ArcGISRuntime/Toolkit/Controls/qmldir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Callout 2.0 Callout20.qml
2222
Callout 100.0 Callout100.qml
2323
Callout 100.1 Callout1001.qml
2424
Callout 100.5 Callout.qml
25-
CurrentVersion 100.5 CurrentVersion.qml
25+
CurrentVersion 100.6 CurrentVersion.qml
2626
Fader 2.0 Fader20.qml
2727
HomeButton 2.0 HomeButton20.qml
2828
ImageButton 2.0 ImageButton20.qml

Import/Esri/ArcGISRuntime/Toolkit/Dialogs/qmldir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ AuthenticationView 100.5 AuthenticationView.qml
2222
ClientCertificateView 2.0 ClientCertificateView20.qml
2323
ClientCertificateView 100.0 ClientCertificateView100.qml
2424
ClientCertificateView 100.5 ClientCertificateView.qml
25-
CurrentVersion 100.5 CurrentVersion.qml
25+
CurrentVersion 100.6 CurrentVersion.qml
2626
ImagePopUpDialog 2.0 ImagePopUpDialog20.qml
2727
OAuth2View 2.0 OAuth2View20.qml
2828
OAuth2View 100.0 OAuth2View100.qml

Plugin/CppApi/ArcGISRuntimeToolkit.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ INCLUDEPATH += $$PWD/include/ \
3232

3333
RUNTIME_PRI = arcgis_runtime_qml_cpp.pri
3434
#RUNTIME_PRI = esri_runtime_qt.pri # use this for widgets
35-
ARCGIS_RUNTIME_VERSION = 100.5
35+
ARCGIS_RUNTIME_VERSION = 100.6
3636

3737
!CONFIG(daily) {
3838
include($$PWD/arcgisruntime.pri)

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ArcGIS Runtime API Toolkit
22
==========================
33

4-
Current Release: 100.5
4+
Current Release: 100.6
55

66
This project contains QML source code for controls and utilities you can use with the [ArcGIS Runtime SDK for Qt](http://developers.arcgis.com/qt). There are QML examples in this repo that demonstrate the use of these controls and how they can be used as resuable building blocks for your QML-based ArcGIS applications.
77

@@ -26,8 +26,8 @@ This project contains QML source code for controls and utilities you can use wit
2626
- Add a qmake variable - `QML_IMPORT_PATH+=<path_to_repo>/Import`
2727
- Add the path to the QML Engine's path list in C++ code - `QQmlEngine::addImportPath("<path_to_repo>/Import");`
2828
4. Import the QML plugin modules in your project. For example:
29-
- `import Esri.ArcGISRuntime.Toolkit.Controls 100.5`
30-
- `import Esri.ArcGISRuntime.Toolkit.Dialogs 100.5`
29+
- `import Esri.ArcGISRuntime.Toolkit.Controls 100.6`
30+
- `import Esri.ArcGISRuntime.Toolkit.Dialogs 100.6`
3131

3232
## Alternate Setup instructions (importing the Toolkit as a plugin)
3333

@@ -38,7 +38,7 @@ Starting with Qt 5.9.0 on iOS, the Toolkit must be imported as a plugin.
3838

3939
For example,
4040
```qmake
41-
include(/Users/james/ArcGIS_SDKs/Qt100.5/sdk/toolkit/Plugin/ArcGISRuntimeToolkitPlugin.pri)
41+
include(/Users/james/ArcGIS_SDKs/Qt100.6/sdk/toolkit/Plugin/ArcGISRuntimeToolkitPlugin.pri)
4242
```
4343

4444
3. The Toolkit will now be compiled into your application directly as a plugin.
@@ -47,13 +47,13 @@ include(/Users/james/ArcGIS_SDKs/Qt100.5/sdk/toolkit/Plugin/ArcGISRuntimeToolkit
4747
The toolkit repo has a demo project located in the Examples folder. This project is not meant to be a template to base your projects off of, but rather to be a quick and easy way to test and demonstrate the capabilities of various toolkit components. You can run the demo project by doing the following steps:
4848

4949
1. Open `Examples.qmlproject` in Qt Creator
50-
2. Go to Projects > Run, and add a new variable called QML2_IMPORT_PATH, and set the value equal to the path of ArcGIS Runtime and the Toolkit. For example, `QML2_IMPORT_PATH=/Users/<username>/ArcGIS_SDKs/Qt100.5/sdk/macOS/x64/qml:/Users/<username>/ArcGIS_SDKs/Qt100.5/sdk/toolkit/Import`
51-
3. Depending on your system, you may additionally need to add the path to the EsriCommonQt library into an environment variable. On Windows, add it to the PATH, on Linux, add it to LD_LIBRARY_PATH, and on macOS, add it to DYLD_LIBRARY_PATH. For example, `PATH=C:\Program Files (x86)\ArcGIS SDKs\Qt100.5\sdk\windows\x64\bin`.
50+
2. Go to Projects > Run, and add a new variable called QML2_IMPORT_PATH, and set the value equal to the path of ArcGIS Runtime and the Toolkit. For example, `QML2_IMPORT_PATH=/Users/<username>/ArcGIS_SDKs/Qt100.6/sdk/macOS/x64/qml:/Users/<username>/ArcGIS_SDKs/Qt100.6/sdk/toolkit/Import`
51+
3. Depending on your system, you may additionally need to add the path to the EsriCommonQt library into an environment variable. On Windows, add it to the PATH, on Linux, add it to LD_LIBRARY_PATH, and on macOS, add it to DYLD_LIBRARY_PATH. For example, `PATH=C:\Program Files (x86)\ArcGIS SDKs\Qt100.6\sdk\windows\x64\bin`.
5252
4. The qmlscene application on Windows and Linux require that the path to the Qt libraries be specified in the PATH and LD_LIBRARY_PATH, respectively. For example, `PATH=C:\Qt5.9.2\msvc2015_64\bin`.
5353
5. Run the app and select an example from the drop down.
5454

5555
## Version
56-
The Toolkit is forwards compatible with the ArcGIS Runtime API. It is not backwards compatible. This means that version 100.4 of the Toolkit can be used with version 100.5 of the Runtime API. However, version 100.5 of the Toolkit cannot be used with version 100.4 of the Runtime API, as this version of the Toolkit may require functionality from a newer version of the Runtime API.
56+
The Toolkit is forwards compatible with the ArcGIS Runtime API. It is not backwards compatible. This means that version 100.3 of the Toolkit can be used with version 100.4 of the Runtime API. However, version 100.4 of the Toolkit cannot be used with version 100.3 of the Runtime API, as this version of the Toolkit may require functionality from a newer version of the Runtime API.
5757

5858
## Use a previous version
5959
The `master` branch contains toolkit components for the current, most up-to-date version of ArcGIS Runtime. To access previous versions, you can checkout by a tag or commit, or alternativley you can download the source zip:

0 commit comments

Comments
 (0)