version.inc 1.2 KB

12345678910111213141516171819202122232425262728
  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.5.59")
  11. set(SLIC3R_VERSION_FULL "2.5.59.10")
  12. set(SLIC3R_BUILD_ID "${SLIC3R_APP_KEY}_${SLIC3R_VERSION_FULL}+UNKNOWN")
  13. set(SLIC3R_RC_VERSION "2,5,59,10")
  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 " based on PrusaSlicer")
  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. set(SLIC3R_DOC_URL "https://manual.slic3r.org/")