Skip to content

Commit

Permalink
Update changes.txt and version number for 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tordanik committed Jan 21, 2025
1 parent 215da96 commit 4d90f7f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions doc/changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
--------------------------------------------------------------------------------
OSM2World 0.4.0 2025-01-21
--------------------------------------------------------------------------------

* upgrade to Java 17
* upgrade to JOGL 2.4.0, drop i586 natives
* new output format: glb
* new input format: GeoDesk
* zipped glTF output
* initial support for including existing glTF models
* command line option for LOD
* LOD support for all modules
* LOD selector in viewer
* ability to read tile metadata from external sources
* ability to read zipped SRTM hgt files
* reasonable default elevation handler
* consistent handling of overlapping features
* rendering of parked vehicles
* padding for textures to avoid clamping artifacts
* 3D building improvements: roof:angle, relation and roof line edge cases
* resolution of config paths relative to config location
* improved logging


--------------------------------------------------------------------------------
OSM2World 0.3.1 2022-12-29
--------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.osm2world</groupId>
<artifactId>osm2world</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.4.0</version>

<name>OSM2World</name>
<description>OSM2World creates three-dimensional models of the world from OpenStreetMap data</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/osm2world/core/GlobalValues.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public final class GlobalValues {
private GlobalValues() {}

/** version string */
public static final String VERSION_STRING = "0.4.0-SNAPSHOT";
public static final String VERSION_STRING = "0.4.0";

/** link to the OSM wiki documentation */
public static final String WIKI_URI = "https://wiki.osm.org/OSM2World";
Expand Down

0 comments on commit 4d90f7f

Please sign in to comment.