version.inc 1.3 KB

12345678910111213141516171819202122232425262728293031
  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. # id for windows registry
  10. set(SLIC3R_APP_PROG_ID "Slic3r.1")
  11. # versions
  12. set(SLIC3R_VERSION "2.7-alpha+UNKNOWN")
  13. set(SLIC3R_VERSION_FULL "2.7.61.0")
  14. set(SLIC3R_BUILD_ID "${SLIC3R_APP_KEY}_${SLIC3R_VERSION_FULL}+UNKNOWN")
  15. set(SLIC3R_RC_VERSION "2,7,61,0")
  16. set(SLIC3R_RC_VERSION_DOTS "${SLIC3R_VERSION_FULL}")
  17. # Same as the slicer name but for gcodeviewer
  18. set(GCODEVIEWER_APP_NAME "${SLIC3R_APP_NAME} G-code Viewer")
  19. set(GCODEVIEWER_APP_KEY "${SLIC3R_APP_KEY}-gcodeviewer")
  20. set(GCODEVIEWER_APP_CMD "${SLIC3R_APP_CMD}-gcodeviewer")
  21. set(GCODEVIEWER_APP_PROG_ID "${SLIC3R_APP_NAME}.GCodeViewer.1")
  22. # string to be added after the SLIC3R_APP_NAME on some places
  23. set(SLIC3R_BASED_ON " based on PrusaSlicer")
  24. # to get he github repo
  25. set(SLIC3R_GITHUB "supermerill/SuperSlicer")
  26. # download url
  27. set(SLIC3R_DOWNLOAD "https://github.com/supermerill/SuperSlicer/releases")
  28. set(SLIC3R_DOC_URL "https://manual.slic3r.org/")