Skip to content

Commit

Permalink
version 2.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
minorua committed Jan 16, 2024
1 parent cdbb9e1 commit a44b798
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion js/Qgis2threejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

var Q3D = {

VERSION: "2.7.1",
VERSION: "2.7.2",
application: {},
gui: {}

Expand Down
11 changes: 10 additions & 1 deletion metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit a44b798

Please sign in to comment.