mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-15 00:41:46 +08:00

- icons - gcodeviewer name&key now include the slic3r name - instance check now depends on hte slic3r name, and not always prusaslicer - possible fix for 3Dmouse on macos - error text - CWS now output the slicer name & version separately and the slicer config in the slicer.ini field - re-add some of the 'about' credentials from slic3r (icon, manual)
30 lines
1.2 KiB
PHP
30 lines
1.2 KiB
PHP
# Included by CMakeLists, edited by the build script
|
|
# (the version numbers are generated by the build script from the git current label)
|
|
|
|
# name of the slicer
|
|
set(SLIC3R_APP_NAME "Slic3r")
|
|
# Key fo the slicer, must only contains ascii chars and no spaces (be valid in all filesystems)
|
|
set(SLIC3R_APP_KEY "Slic3r")
|
|
# exe name of the slicer, should be lowercase and valid in all os
|
|
set(SLIC3R_APP_CMD "Slic3r")
|
|
# versions
|
|
set(SLIC3R_VERSION "2.4")
|
|
set(SLIC3R_VERSION_FULL "2.4.00.0")
|
|
set(SLIC3R_BUILD_ID "Slic3r_${SLIC3R_VERSION_FULL}")
|
|
set(SLIC3R_RC_VERSION "2,4,00,0")
|
|
set(SLIC3R_RC_VERSION_DOTS "${SLIC3R_VERSION_FULL}")
|
|
|
|
# Same as the slicer name but for gcodeviewer
|
|
set(GCODEVIEWER_APP_NAME "${SLIC3R_APP_NAME} G-code Viewer")
|
|
set(GCODEVIEWER_APP_KEY "${SLIC3R_APP_KEY}-gcodeviewer")
|
|
set(GCODEVIEWER_APP_CMD "${SLIC3R_APP_CMD}-gcodeviewer")
|
|
|
|
# string to be added after the SLIC3R_APP_NAME on some places
|
|
set(SLIC3R_BASED_ON "")
|
|
# to get he github repo
|
|
set(SLIC3R_GITHUB "slic3r/Slic3r")
|
|
# download url
|
|
set(SLIC3R_DOWNLOAD "https://slic3r.org/download")
|
|
# string to display in the spalshscreen
|
|
set(SLIC3R_INTRO "Slic3r contains sizable contributions from Prusa Research. Original work by Alessandro Ranellucci and the RepRap community.")
|