From 796cbfb67fe7de75514cc574e6f4e0f67ecbb9a2 Mon Sep 17 00:00:00 2001 From: alves Date: Thu, 25 Dec 2025 15:11:19 +0800 Subject: [PATCH] feature update copy right time --- src/CMakeLists.txt | 4 ++-- src/dev-utils/platform/msw/Snapmaker_Orca-gcodeviewer.rc.in | 2 +- src/dev-utils/platform/msw/Snapmaker_Orca.rc.in | 2 +- src/dev-utils/platform/osx/Info.plist.in | 2 +- src/slic3r/GUI/AboutDialog.cpp | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4df5047638..4f71a1c266 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -96,7 +96,7 @@ if(ORCA_TOOLS) MACOSX_BUNDLE_BUNDLE_VERSION "${SLIC3R_VERSION}" MACOSX_BUNDLE_SHORT_VERSION_STRING "${SLIC3R_VERSION}" MACOSX_BUNDLE_IDENTIFIER "com.Snapmaker.Snapmaker_Orca.profile-validator" - MACOSX_BUNDLE_COPYRIGHT "Copyright © 2024-2025 Snapmaker. All rights reserved." + MACOSX_BUNDLE_COPYRIGHT "Copyright © 2024-2026 Snapmaker. All rights reserved." MACOSX_BUNDLE_GUI_IDENTIFIER "com.Snapmaker.Snapmaker_Orca.profile-validator" ) else() @@ -294,7 +294,7 @@ else () MACOSX_BUNDLE TRUE MACOSX_BUNDLE_BUNDLE_NAME "Snapmaker Orca" MACOSX_BUNDLE_SHORT_VERSION_STRING ${Snapmaker_VERSION} - MACOSX_BUNDLE_COPYRIGHT "Copyright © 2024-2025 Snapmaker. All rights reserved.") + MACOSX_BUNDLE_COPYRIGHT "Copyright © 2024-2026 Snapmaker. All rights reserved.") # Get the bundle directory by going up from the executable to the .app bundle if (CMAKE_CONFIGURATION_TYPES) set(BIN_RESOURCES_DIR "$/../Resources") diff --git a/src/dev-utils/platform/msw/Snapmaker_Orca-gcodeviewer.rc.in b/src/dev-utils/platform/msw/Snapmaker_Orca-gcodeviewer.rc.in index 561421417b..77f127b636 100644 --- a/src/dev-utils/platform/msw/Snapmaker_Orca-gcodeviewer.rc.in +++ b/src/dev-utils/platform/msw/Snapmaker_Orca-gcodeviewer.rc.in @@ -12,7 +12,7 @@ PRODUCTVERSION @SLIC3R_RC_VERSION@ VALUE "ProductName", "@SLIC3R_APP_NAME@ G-code Viewer" VALUE "ProductVersion", "@SLIC3R_BUILD_ID@" VALUE "InternalName", "@SLIC3R_APP_NAME@ G-code Viewer" - VALUE "LegalCopyright", "Copyright © 2024-2025 Snapmaker. All rights reserved." + VALUE "LegalCopyright", "Copyright © 2024-2026 Snapmaker. All rights reserved." VALUE "OriginalFilename", "bambu-gcodeviewer.exe" } } diff --git a/src/dev-utils/platform/msw/Snapmaker_Orca.rc.in b/src/dev-utils/platform/msw/Snapmaker_Orca.rc.in index fc9e1adda1..41e5d7f76e 100644 --- a/src/dev-utils/platform/msw/Snapmaker_Orca.rc.in +++ b/src/dev-utils/platform/msw/Snapmaker_Orca.rc.in @@ -12,7 +12,7 @@ PRODUCTVERSION @SLIC3R_RC_VERSION@ VALUE "ProductName", "@SLIC3R_APP_NAME@" VALUE "ProductVersion", "@SLIC3R_BUILD_ID@" VALUE "InternalName", "@SLIC3R_APP_NAME@" - VALUE "LegalCopyright", "Copyright © 2024-2025 Snapmaker. All rights reserved." + VALUE "LegalCopyright", "Copyright © 2024-2026 Snapmaker. All rights reserved." VALUE "OriginalFilename", "Snapmaker_Orca.exe" } } diff --git a/src/dev-utils/platform/osx/Info.plist.in b/src/dev-utils/platform/osx/Info.plist.in index fac6d45470..5cb04bb0f8 100644 --- a/src/dev-utils/platform/osx/Info.plist.in +++ b/src/dev-utils/platform/osx/Info.plist.in @@ -5,7 +5,7 @@ CFBundleExecutable @SLIC3R_APP_KEY@ CFBundleGetInfoString - @SLIC3R_APP_NAME@ Copyright © 2024-2025 Snapmaker. All rights reserved. + @SLIC3R_APP_NAME@ Copyright © 2024-2026 Snapmaker. All rights reserved. CFBundleIconFile images/Snapmaker_Orca.icns CFBundleName diff --git a/src/slic3r/GUI/AboutDialog.cpp b/src/slic3r/GUI/AboutDialog.cpp index 45abd4de91..0fe7b40fa9 100644 --- a/src/slic3r/GUI/AboutDialog.cpp +++ b/src/slic3r/GUI/AboutDialog.cpp @@ -333,7 +333,7 @@ AboutDialog::AboutDialog() copyright_hor_sizer->Add(copyright_ver_sizer, 0, wxLEFT, FromDIP(20)); - wxStaticText *html_text = new wxStaticText(this, wxID_ANY, "Copyright © 2024-2025 Snapmaker. All rights reserved.", wxDefaultPosition, wxDefaultSize); + wxStaticText *html_text = new wxStaticText(this, wxID_ANY, "Copyright © 2024-2026 Snapmaker. All rights reserved.", wxDefaultPosition, wxDefaultSize); html_text->SetForegroundColour(wxColour(107, 107, 107)); copyright_ver_sizer->Add(html_text, 0, wxALL , 0);