Skip to content

Commit 9b2e48b

Browse files
committed
Version update: converted to extension and support for Blender 4.4+
1 parent a691d46 commit 9b2e48b

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
# Release Notes
22

3-
A summary of noteworthy changes for each release. Made for humans. :roll_of_paper:
3+
A summary of noteworthy changes for each release. Made for humans. 🧻
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
88

99
Wip wip...
1010

11+
12+
## [0.5.0] - 2025-03-08
13+
14+
### Shiny and New
15+
- Tested to work with Blender 3.6, 4.2, 4.3, 4.4 and 4.5.
16+
- Packaged as extension so it is nicer to install and can be published to the official extensions
17+
platform in the future.
18+
19+
### Fixed
20+
- Support for Blender 4.4 API with Sequencer Strips instead of Sequences.
21+
22+
1123
## [0.4.0] - 2024-01-03
1224

1325
### Shiny and New
@@ -17,15 +29,14 @@ to help with troubleshooting. It is available from the search (no shortcut, no b
1729
### Fixed
1830
- Fixed "KeyError" when doing 'Sync'. It was introduced by v0.3.0.
1931
- Fixed errors when there are issues with the thumbnails on disk.
20-
It's now resillient to a missing/deleted thumbnails folder and to it having a .DS_Store file.
32+
It's now resilient to a missing/deleted thumbnails folder and to it having a .DS_Store file.
2133
- Fixed thumbnails jumping/disappearing after multiple undo steps.
2234

2335

24-
2536
## [0.3.0] - 2023-11-01
2637

2738
### Fixed
28-
- Fixed "KeyError" when addon folder name is different than expected. Fixes #1 and #8.
39+
- Fixed "KeyError" when addon folder name is different from expected. Fixes #1 and #8.
2940
- Update code API to work with Blender 4.0.0. No functional changes.
3041

3142

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
bl_info = {
2222
"name": "Edit Breakdown",
2323
"author": "Inês Almeida, Francesco Siddi",
24-
"version": (0, 4, 0),
24+
"version": (0, 5, 0),
2525
"blender": (3, 3, 0),
2626
"location": "Video Sequence Editor",
2727
"description": "Get insight on the complexity of an edit",

blender_manifest.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
schema_version = "1.0.0"
22

33
id = "edit_breakdown"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
type = "add-on"
66

77
name = "Edit Breakdown"

0 commit comments

Comments
 (0)