version.inc 1.3 KB

1234567891011121314151617181920212223242526272829
  1. # Included by CMakeLists, edited by the build script
  2. # (the version numbers are generated by the build script from the git current label)
  3. # name of the slicer
  4. set(SLIC3R_APP_NAME "SuperSlicer")
  5. # Key fo the slicer, must only contains ascii chars and no spaces (be valid in all filesystems)
  6. set(SLIC3R_APP_KEY "SuperSlicer")
  7. # exe name of the slicer, should be lowercase and valid in all os
  8. set(SLIC3R_APP_CMD "superslicer")
  9. # versions
  10. set(SLIC3R_VERSION "2.3.56")
  11. set(SLIC3R_VERSION_FULL "2.3.56.0")
  12. set(SLIC3R_BUILD_ID "Slic3r_${SLIC3R_VERSION_FULL}")
  13. set(SLIC3R_RC_VERSION "2,3,56,0")
  14. set(SLIC3R_RC_VERSION_DOTS "${SLIC3R_VERSION_FULL}")
  15. # Same as the slicer name but for gcodeviewer
  16. set(GCODEVIEWER_APP_NAME "${SLIC3R_APP_NAME} G-code Viewer")
  17. set(GCODEVIEWER_APP_KEY "${SLIC3R_APP_KEY}-gcodeviewer")
  18. set(GCODEVIEWER_APP_CMD "${SLIC3R_APP_CMD}-gcodeviewer")
  19. # string to be added after the SLIC3R_APP_NAME on some places
  20. set(SLIC3R_BASED_ON "a flavored version of Slic3r")
  21. # to get he github repo
  22. set(SLIC3R_GITHUB "supermerill/SuperSlicer")
  23. # download url
  24. set(SLIC3R_DOWNLOAD "https://github.com/supermerill/SuperSlicer/releases")
  25. # string to display in the spalshscreen
  26. set(SLIC3R_INTRO "SuperSlicer is a skinned version of Slic3r, based on the original Slic3r by Alessandro Ranellucci & the RepRap community, and PrusaSlicer by Prusa.")