From 72eb6882fab7cceb08166266fa819c8fbd95514e Mon Sep 17 00:00:00 2001 From: alves Date: Wed, 11 Mar 2026 10:32:57 +0800 Subject: [PATCH] feature update version info --- .../flatpak/io.github.Snapmaker.Snapmaker_Orca.metainfo.xml | 4 ++-- src/common_func/common_func.hpp | 4 ++-- src/slic3r/GUI/MainFrame.cpp | 2 ++ version.inc | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/scripts/flatpak/io.github.Snapmaker.Snapmaker_Orca.metainfo.xml b/scripts/flatpak/io.github.Snapmaker.Snapmaker_Orca.metainfo.xml index 452d3dc67b..fd7b2d1986 100644 --- a/scripts/flatpak/io.github.Snapmaker.Snapmaker_Orca.metainfo.xml +++ b/scripts/flatpak/io.github.Snapmaker.Snapmaker_Orca.metainfo.xml @@ -38,9 +38,9 @@ #009688 - + -

Version 2.2.4 release with improvements and bug fixes.

+

Version 2.3.0 release with improvements and bug fixes.

diff --git a/src/common_func/common_func.hpp b/src/common_func/common_func.hpp index a9b8f737d3..b4001498bb 100644 --- a/src/common_func/common_func.hpp +++ b/src/common_func/common_func.hpp @@ -6,12 +6,12 @@ #define SLIC3R_APP_NAME "Snapmaker Orca" #define SLIC3R_APP_KEY "Snapmaker_Orca" #define SLIC3R_VERSION "01.10.01.50" -#define Snapmaker_VERSION "2.2.4" +#define Snapmaker_VERSION "2.3.0" #define MIN_FIRM_VER "1.0.0" #ifndef GIT_COMMIT_HASH #define GIT_COMMIT_HASH "0000000" // 0000000 means uninitialized #endif -#define SLIC3R_BUILD_ID "2.2.4" +#define SLIC3R_BUILD_ID "2.3.0" // #define SLIC3R_RC_VERSION "01.10.01.50" #define BBL_RELEASE_TO_PUBLIC 1 #define BBL_INTERNAL_TESTING 0 diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 48a4648e99..877ee21fcd 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -1156,6 +1156,7 @@ void MainFrame::init_tabpanel() { wxString url = evt.GetString(); wxString key = evt.GetAPIkey(); //select_tab(MainFrame::tpMonitor); + m_printer_view->Show(); m_printer_view->load_url(url, key); }); m_printer_view->Hide(); @@ -1255,6 +1256,7 @@ void MainFrame::show_device(bool bBBLPrinter) { wxString url = evt.GetString(); wxString key = evt.GetAPIkey(); // select_tab(MainFrame::tpMonitor); + m_printer_view->Show(); m_printer_view->load_url(url, key); }); } diff --git a/version.inc b/version.inc index f0284c2f52..b4003ab6ac 100644 --- a/version.inc +++ b/version.inc @@ -10,7 +10,7 @@ endif() if(NOT DEFINED BBL_INTERNAL_TESTING) set(BBL_INTERNAL_TESTING "0") endif() -set(Snapmaker_VERSION "2.2.4") +set(Snapmaker_VERSION "2.3.0") set(MIN_FIRM_VER "1.0.0") string(REGEX MATCH "^([0-9]+)\\.([0-9]+)\\.([0-9]+)" Snapmaker_VERSION_MATCH ${Snapmaker_VERSION})