From 7eccd3820f73ae43dbecbae8920fbc83a26d53ba Mon Sep 17 00:00:00 2001 From: Michaelschnabel-DM Date: Mon, 29 Jan 2024 21:35:03 +0100 Subject: [PATCH] updated changelog --- CHANGELOG.md | 9 +++++++-- io_mesh_w3d/__init__.py | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4874e09..fc5cec63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Version History -## v0.7.0 (29.01.24) -* delete base sphere object and mesh after hierarchy import +## v0.7.1 (29.01.24) * adapt to API changes in Blender 4.0+ + +## v0.7.0 (09.09.23) +* delete base sphere object and mesh after hierarchy import +* fix face distance calculation to match 3DS max exporter +* multi-texture / multi-material support by @nkx111 thx! + ## v0.6.9 (06.04.23) * fixed export of materials with normal maps diff --git a/io_mesh_w3d/__init__.py b/io_mesh_w3d/__init__.py index 06aadb90..a83904ee 100644 --- a/io_mesh_w3d/__init__.py +++ b/io_mesh_w3d/__init__.py @@ -12,12 +12,12 @@ from io_mesh_w3d.blender_addon_updater import addon_updater_ops -VERSION = (0, 7, 0) +VERSION = (0, 7, 1) bl_info = { 'name': 'Import/Export Westwood W3D Format (.w3d/.w3x)', 'author': 'OpenSage Developers', - 'version': (0, 7, 0), + 'version': (0, 7, 1), "blender": (2, 90, 0), 'location': 'File > Import/Export > Westwood W3D (.w3d/.w3x)', 'description': 'Import or Export the Westwood W3D-Format (.w3d/.w3x)',