From a44b798eb625baf5096f6e5ab614f0290a108dbc Mon Sep 17 00:00:00 2001 From: Minoru Akagi Date: Tue, 16 Jan 2024 14:26:50 +0900 Subject: [PATCH] version 2.7.2 --- CHANGELOG.md | 9 +++++++++ conf.py | 4 ++-- js/Qgis2threejs.js | 2 +- metadata.txt | 11 ++++++++++- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a19a23c8..ba5c3343 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## CHANGELOG +### Version 2.7.2 +- Fixed easing of sequential line growing +- Fixed URL of GSI elevation tile +- Fixed some other bugs +- Added some GUI tests +- Exporter can now work with Qt WebEngine view (Experimental. Needs some changes on QGIS code) +- Use JS class so that we can use a recent three.js version in the future +- Plugin document migrated to GitHub pages + ### Version 2.7.1 - Added option to export DEM texture in JPEG format - Bug fixes diff --git a/conf.py b/conf.py index b5639e4c..2fd11898 100644 --- a/conf.py +++ b/conf.py @@ -5,8 +5,8 @@ # general PLUGIN_NAME = "Qgis2threejs" -PLUGIN_VERSION = "2.7.1" -PLUGIN_VERSION_INT = 20701 +PLUGIN_VERSION = "2.7.2" +PLUGIN_VERSION_INT = 20702 # 3D view PREFER_WEBKIT = True diff --git a/js/Qgis2threejs.js b/js/Qgis2threejs.js index d764807d..38652fa4 100644 --- a/js/Qgis2threejs.js +++ b/js/Qgis2threejs.js @@ -6,7 +6,7 @@ var Q3D = { - VERSION: "2.7.1", + VERSION: "2.7.2", application: {}, gui: {} diff --git a/metadata.txt b/metadata.txt index dd97ca7f..388b5d51 100644 --- a/metadata.txt +++ b/metadata.txt @@ -14,7 +14,7 @@ qgisMinimumVersion=3.4 qgisMaximumVersion=3.99 description=3D visualization powered by WebGL technology and three.js JavaScript library about=This plugin visualizes DEM and vector data in 3D on web browsers. You can build various kinds of 3D objects and generate files for web publishing in simple procedure. In addition, you can save the 3D model in glTF format for 3DCG or 3D printing. -version=2.7.1 +version=2.7.2 author=Minoru Akagi email=akaginch@gmail.com @@ -24,6 +24,15 @@ email=akaginch@gmail.com # Uncomment the following line and add your changelog entries: changelog= + Version 2.7.2 + - Fixed easing of sequential line growing + - Fixed URL of GSI elevation tile + - Fixed some other bugs + - Added some GUI tests + - Exporter can now work with Qt WebEngine view (Experimental. Needs some changes on QGIS code) + - Use JS class so that we can use a recent three.js version in the future + - Plugin document migrated to GitHub pages + Version 2.7.1 - Added option to export DEM texture in JPEG - Bug fixes