From 9dff8d7bee5d3199440c19ba7e120fc43244e8d9 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Sun, 12 Jan 2025 13:40:08 -0500 Subject: [PATCH 1/2] Fix import issue --- src/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 0f7645c..48d933e 100644 --- a/src/main.js +++ b/src/main.js @@ -2175,7 +2175,8 @@ class Layer extends Widget { layer.frames = []; for (let i in json.frames) { const frame = json.frames[i]; - if (frame && frame.frameType=="keyframe") { + if (!frame) continue; + if (frame.frameType=="keyframe") { layer.frames.push(Frame.fromJSON(frame)); } else { if (layer.frames[layer.frames.length-1]) { From 7b8d3d074b3063dbce786c23b65bb6e94dfd8ff4 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Sun, 12 Jan 2025 13:43:03 -0500 Subject: [PATCH 2/2] Bump version to 0.7.3 --- Changelog.md | 4 ++++ src-tauri/tauri.conf.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 5148ee5..c4fe5a2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +# 0.7.3-alpha: +Bugfixes: +- Fix some files not importing properly + # 0.7.2-alpha: New features: - mp4 export (unreliable) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 7764640..c4a2428 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Lightningbeam", - "version": "0.7.2-alpha", + "version": "0.7.3-alpha", "identifier": "org.lightningbeam.core", "build": { "frontendDist": "../src"