Skip to content

Commit

Permalink
version 2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
minorua committed Oct 30, 2024
1 parent 98a1d3e commit b1854e1
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## CHANGELOG

### Version 2.8
- Added option to select either WebEngine or WebKit for preview from the menu
- WebEngine view is now preferred option when available
- Removed console panel
- Developer tools are now accessible even when not in debug mode
- Log python side warnings and errors also in the JavaScript console
- An icon will appear in the status bar to indicate warnings or errors
- Fixed a bug where labels were not displayed on Extruded/Overlay polygons
- Fixed a bug that prevented the plugin settings dialog from opening due to the deprecation of SafeConfigParser

### Version 2.7.3
- Fixed a regression related to vertical line
- Fixed a popup layout issue
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.3"
PLUGIN_VERSION_INT = 20703
PLUGIN_VERSION = "2.8"
PLUGIN_VERSION_INT = 20800

# vector layer
FEATURES_PER_BLOCK = 50 # max number of features in a data block
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.3",
VERSION: "2.8",
application: {},
gui: {}

Expand Down
14 changes: 12 additions & 2 deletions metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
name=Qgis2threejs
qgisMinimumVersion=3.4
qgisMaximumVersion=3.99
description=3D visualization powered by WebGL technology and three.js JavaScript library
description=3D map visualization and web export powered by 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.3
version=2.8
author=Minoru Akagi
[email protected]

Expand All @@ -24,6 +24,16 @@ [email protected]

# Uncomment the following line and add your changelog entries:
changelog=
Version 2.8
- Added option to select either WebEngine or WebKit for preview from the menu
- WebEngine view is now preferred option when available
- Removed console panel
- Developer tools are now accessible even when not in debug mode
- Log python side warnings and errors also in the JavaScript console
- An icon will appear in the status bar to indicate warnings or errors
- Fixed a bug where labels were not displayed on Extruded/Overlay polygons
- Fixed a bug that prevented the plugin settings dialog from opening due to the deprecation of SafeConfigParser

Version 2.7.3
- Fixed a regression related to vertical line
- Fixed a popup layout issue
Expand Down

0 comments on commit b1854e1

Please sign in to comment.