Skip to content

Commit

Permalink
bump version 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
minff committed Jun 10, 2020
1 parent 20fe700 commit 37b7d84
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 10 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## Version 1.8.2 (2020-06-10)

#### New Features

* Supports self-hosted XYZ Hub Server: token authentication, loading, uploading, editing data, managing spaces
* Supports Property query and selection (XYZ Hub API)
* Supports Api Key for HERE Tiles

#### Improvements

* UX improvement: default button when pressing button, combo box selection, etc..
* Improved layer organization
* Server/token config is backward-compatible
* Adds UA of the plugin
* No longer raise EmptyXYZSpaceError during layer loading
* Refactored token dialog, token model
* Refactored components to xyz_qgis module

#### Bug Fixes

* Fix loading error when 'handle' is string

## Version 1.8.1 (2020-03-09)

#### Improvements
Expand All @@ -13,7 +35,7 @@

## Version 1.8.0 (2020-02-12)

#### New Feature
#### New Features

* 3 loading modes:
* Live loading: interactively refresh features in tiles
Expand Down
13 changes: 12 additions & 1 deletion RELEASENOTE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## Version 1.8.2 (2020-06-10)

✨ NEW FEATURES ✨
* Supports self-hosted XYZ Hub Server: token authentication, loading, uploading, editing data, managing spaces
* Supports Property query and selection (XYZ Hub API)
* Supports Api Key for HERE Tiles

⚡️ IMPROVEMENTS ⚡️
* UX improvement
* Improved layer organization

## Version 1.8.1 (2020-03-10)

⚡️ IMPROVEMENTS ⚡️
Expand All @@ -8,7 +19,7 @@

## Version 1.8.0 (2020-02-12)

✨ NEW FEATURE
✨ NEW FEATURES
* Introducing three loading modes:
* Live loading - interactive mode for visualization of dynamic dataset with full editing capabilities
* Incremental loading - interactive mode with caching for visualization and exploration of large dataset
Expand Down
2 changes: 1 addition & 1 deletion XYZHubConnector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
__copyright__ = "Copyright 2019, HERE Europe B.V."

__license__ = "MIT"
__version__ = "1.8.2-alpha"
__version__ = "1.8.2"
__maintainer__ = "Minh Nguyen"
__email__ = "[email protected]"
__status__ = "Development"
Expand Down
15 changes: 9 additions & 6 deletions XYZHubConnector/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
name=XYZ Hub Connector
qgisMinimumVersion=3.0
description=Connect QGIS to your personal space on HERE XYZ Hub
version=1.8.2-alpha
version=1.8.2
author=HERE Europe B.V.
[email protected]

Expand Down Expand Up @@ -42,12 +42,15 @@ experimental=False
# deprecated flag (applies to the whole plugin, not just a single version)
deprecated=False

changelog=Version 1.8.1 (2020-03-10)
changelog=Version 1.8.2 (2020-06-10)

⚡️ IMPROVEMENTS ⚡️
* Loading tile using Web Mercator projection
✨ NEW FEATURES ✨
* Supports self-hosted XYZ Hub Server: token authentication, loading, uploading, editing data, managing spaces
* Supports Property query and selection (XYZ Hub API)
* Supports Api Key for HERE Tiles

🐛 FIXES 🐛
* Fixed wrong data loaded from virtual space, cf. https://www.here.xyz/cli/cli/#virtual-spaces
⚡️ IMPROVEMENTS ⚡️
* UX improvement
* Improved layer organization

* .. more details on Github repos
2 changes: 1 addition & 1 deletion XYZHubConnector/xyz_qgis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
__copyright__ = "Copyright 2019, HERE Europe B.V."

__license__ = "MIT"
__version__ = "1.8.1"
__version__ = "1.8.2"
__maintainer__ = "Minh Nguyen"
__email__ = "[email protected]"
__status__ = "Development"

0 comments on commit 37b7d84

Please sign in to comment.