Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
!define PRODUCT_INSTALL_KEY "Software\${PRODUCT_PUBLISHER}\${PRODUCT_NAME}"

!ifndef VERSION
!define VERSION "2.3.6"
!define VERSION "2.4.0"
!endif

!ifndef SOURCE_DIR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
<color type="primary" scheme_preference="light">#009688</color>
</branding>
<releases>
<release version="2.3.6" date="2026-8-13">
<release version="2.4.0" date="2026-9-3">
<description>
<p>Version 2.3.6 release with improvements and bug fixes.</p>
<p>Version 2.4.0 release with improvements and bug fixes.</p>
</description>
</release>
</releases>
Expand Down
4 changes: 2 additions & 2 deletions src/common_func/common_func.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.6"
#define Snapmaker_VERSION "2.4.0"
#define MIN_FIRM_VER "1.6.0"
#ifndef GIT_COMMIT_HASH
#define GIT_COMMIT_HASH "0000000" // 0000000 means uninitialized
#endif
#define SLIC3R_BUILD_ID "2.3.6"
#define SLIC3R_BUILD_ID "2.4.0"
// #define SLIC3R_RC_VERSION "01.10.01.50"
#define BBL_RELEASE_TO_PUBLIC 1
#define BBL_INTERNAL_TESTING 0
Expand Down
2 changes: 1 addition & 1 deletion version.inc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif()
if(NOT DEFINED BBL_INTERNAL_TESTING)
set(BBL_INTERNAL_TESTING "0")
endif()
set(Snapmaker_VERSION "2.3.6")
set(Snapmaker_VERSION "2.4.0")
set(MIN_FIRM_VER "1.0.0")
string(REGEX MATCH "^([0-9]+)\\.([0-9]+)\\.([0-9]+)"
Snapmaker_VERSION_MATCH ${Snapmaker_VERSION})
Expand Down