Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.1.12] - 2026-09-03

Tree Clipper can now import to assets!

### Added
- Import to assets
- Preliminary check of the clipbard contents
- Menu functions for import/export

## [0.1.11] - 2026-08-17

This release adds support for panel's states.
Expand Down
2 changes: 1 addition & 1 deletion packages/tree_clipper/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tree-clipper"
version = "0.1.11"
version = "0.1.12"
dependencies = []
maintainers = [
{ name="Algebraic", email="tree.clipper@algebraic.games" },
Expand Down
2 changes: 1 addition & 1 deletion packages/tree_clipper/src/tree_clipper/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# these fields are in the top level JSON object
BLENDER_VERSION = "blender_version"
TREE_CLIPPER_VERSION = "tree_clipper_version"
CURRENT_TREE_CLIPPER_VERSION = "0.1.11" # tested to match pyproject.toml
CURRENT_TREE_CLIPPER_VERSION = "0.1.12" # tested to match pyproject.toml
MATERIAL_NAME = "name"
TREES = "node_trees"
EXTERNAL = "external"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ def import_to_asset_file(
asset_file_path = move_import_to_asset_file(
report=report,
asset_file_path=asset_file_path,
asset_directory=asset_directory,
path_remap=path_remap,
fake_user=fake_user,
compress=compress,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ schema_version = "1.0.0"
# Example of manifest file for a Blender extension
# Change the values according to your extension
id = "tree_clipper"
version = "0.1.11" # should match tree_clipper (core logic)
version = "0.1.12" # should match tree_clipper (core logic)
name = "Tree Clipper"
tagline = "Export and import Blender node trees as JSON"
maintainer = "Algebraic <tree.clipper@algebraic.games>"
Expand Down
Loading