From ff5ad5cfb0de23a44fecf9fc88da87c955608bb0 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Sat, 18 Jan 2025 00:31:57 -0500 Subject: [PATCH] Bump version to 0.7.13-alpha --- Changelog.md | 9 +++++++++ src-tauri/tauri.conf.json | 6 ++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 73e3ebd..bfb00c9 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,12 @@ +# 0.7.12-alpha: +New features: +- Add "New Window" command +- Enable files to be opened with Lightningbeam +Bugfixes: +- Fix error when an object is deleted from a frame +- Fix parent references being lost +- Fix objects not showing up when imported multiple times + # 0.7.11-alpha: Bugfixes: - Fix duplicate objects showing up after grouping diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 5d0b1b5..35e528c 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.11-alpha", + "version": "0.7.13-alpha", "identifier": "org.lightningbeam.core", "build": { "frontendDist": "../src" @@ -49,7 +49,9 @@ }, "fileAssociations": [ { - "ext": ["beam"], + "ext": [ + "beam" + ], "mimeType": "text/plain" } ]