Skip to content
Merged
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.9] - 2026-07-28

Patch release to aid importing trees containing fonts and a few internal code changes.
Some of which might fix bugs that were undiscovered.

### Fixed
- In a new project, [the user might be missing a font to select](https://github.com/Algebraic-UG/tree_clipper/issues/219).

### Changed
- Updated to new version of `ruff` and fixed the new findings.

## [0.1.8] - 2026-07-07

Trying to get the PyPI publish job to work >.<
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.8"
version = "0.1.9"
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.8" # tested to match pyproject.toml
CURRENT_TREE_CLIPPER_VERSION = "0.1.9" # 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 @@ -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.8" # should match tree_clipper (core logic)
version = "0.1.9" # 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
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def draw(self, context: bpy.types.Context):
self.layout.label(text="Could not attached the root to current editor:")
self.layout.label(text=failure_reason)
self.layout.separator()
self.layout.label(text="Please check the INFO for the imported trees.")
self.layout.label(
text="Please check the INFO window for the imported trees."
)

bpy.context.window_manager.popup_menu( # ty:ignore[possibly-missing-attribute]
draw, title="Where's My Import?", icon="INFO"
Expand Down
5 changes: 4 additions & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading