diff --git a/Changelog.md b/Changelog.md index 2924498..6cf0e17 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,14 @@ +# 1.0.6-alpha: +Changes: +- Hardware-accelerated H.264 video export: each frame is rendered and encoded on the GPU (zero-copy VAAPI), roughly 2x faster, with automatic fallback to software encoding when hardware acceleration isn't available (Linux, Intel/AMD only for now) +- Video export now runs on a background thread, so the UI stays responsive during export and edits made while exporting no longer affect the output +- Grouped and nested video clips now composite on the GPU path +- Video is now packed into and streamed from the .beam project container + +Bugfixes: +- Fix an export hang when a video's audio track is shorter than the video +- Fix a sample key-range overlap bug in instruments + # 1.0.5-alpha: Changes: - Add shape tweens (morph vector geometry between keyframes) diff --git a/lightningbeam-ui/lightningbeam-editor/Cargo.toml b/lightningbeam-ui/lightningbeam-editor/Cargo.toml index b37f5f6..9ad8b55 100644 --- a/lightningbeam-ui/lightningbeam-editor/Cargo.toml +++ b/lightningbeam-ui/lightningbeam-editor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightningbeam-editor" -version = "1.0.5-alpha" +version = "1.0.6-alpha" edition = "2021" description = "Multimedia editor for audio, video and 2D animation" license = "GPL-3.0-or-later"