From c7269cbc05861154961c272bb67ff016b2fff555 Mon Sep 17 00:00:00 2001 From: Connor Slade Date: Wed, 19 Feb 2025 22:01:08 -0500 Subject: [PATCH] Bump version to 0.2.0 --- Cargo.lock | 2 +- Changelog.md | 2 +- dist/com.connorcode.mslicer.metainfo.xml | 12 ++++++++++++ goo_format/src/default.rs | 2 +- mslicer/Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4541856..cf82bd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2938,7 +2938,7 @@ dependencies = [ [[package]] name = "mslicer" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "bincode", diff --git a/Changelog.md b/Changelog.md index 154f213..554a843 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,6 @@ # Changelog -## v0.2.0 — Coming Soon +## v0.2.0 — Feb 19, 2025 - Convert slice operation window to a dockable panel - Render parts of models that go beyond the print volume red diff --git a/dist/com.connorcode.mslicer.metainfo.xml b/dist/com.connorcode.mslicer.metainfo.xml index a353f16..dc8413a 100644 --- a/dist/com.connorcode.mslicer.metainfo.xml +++ b/dist/com.connorcode.mslicer.metainfo.xml @@ -33,6 +33,18 @@ + + +
    +
  • Convert slice operation window to a dockable panel
  • +
  • Render parts of models that go beyond the print volume red
  • +
  • Remove the Stats panel and merge it into the Workspace panel
  • +
  • Add documentation into the About panel
  • +
  • Add random triangle color mesh render mode
  • +
  • Persist panel layout between sessions. I also added a button to reset the UI layout in the Workspace panel.
  • +
+
+

Initial release.

diff --git a/goo_format/src/default.rs b/goo_format/src/default.rs index 4166989..b3dda9e 100644 --- a/goo_format/src/default.rs +++ b/goo_format/src/default.rs @@ -7,7 +7,7 @@ impl Default for Header { Self { version: SizedString::new(b"V3.0"), software_info: SizedString::new(b"mslicer by Connor Slade"), - software_version: SizedString::new(b"0.1.0"), + software_version: SizedString::new(env!("CARGO_PKG_VERSION").as_bytes()), file_time: SizedString::new(b""), printer_name: SizedString::new(b"standard"), printer_type: SizedString::new(b"Default"), diff --git a/mslicer/Cargo.toml b/mslicer/Cargo.toml index 71ecea8..9eedbe1 100644 --- a/mslicer/Cargo.toml +++ b/mslicer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mslicer" -version = "0.1.0" +version = "0.2.0" edition = "2021" [dependencies]