You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
3.8 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2007-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
  5. * Copyright The KiCad Developers, see AUTHORS.TXT for contributors.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, you may find one here:
  19. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  20. * or you may search the http://www.gnu.org website for the version 2 license,
  21. * or you may write to the Free Software Foundation, Inc.,
  22. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  23. */
  24. /* Date for kicad build version */
  25. #ifndef KICAD_BUILD_VERSION_H
  26. #define KICAD_BUILD_VERSION_H
  27. #include <kicommon.h>
  28. #include <tuple>
  29. class wxString;
  30. /**
  31. * Get the full KiCad version string. This string contains platform-specific information
  32. * added by the packagers. It is created by CMake in the KICAD_FULL_VERSION variable.
  33. *
  34. * @return the full version string
  35. */
  36. KICOMMON_API wxString GetBuildVersion();
  37. /**
  38. * Get the KiCad version string without the information added by the packagers.
  39. * It is created by CMake in the KICAD_VERSION variable.
  40. *
  41. * @return the base version string
  42. */
  43. KICOMMON_API wxString GetBaseVersion();
  44. /**
  45. * @return the bitness name string (like "Little endian")
  46. */
  47. KICOMMON_API wxString GetPlatformGetBitnessName();
  48. /**
  49. * Get the semantic version string for KiCad defined inside the KiCadVersion.cmake file in
  50. * the variable KICAD_SEMANTIC_VERSION.
  51. *
  52. * @return the semantic version string
  53. */
  54. KICOMMON_API wxString GetSemanticVersion();
  55. /**
  56. * Get only the major and minor version in a string major.minor.
  57. * This is extracted by CMake from the KICAD_SEMANTIC_VERSION variable.
  58. *
  59. * @return the major and minor version as a string
  60. */
  61. KICOMMON_API wxString GetMajorMinorVersion();
  62. /**
  63. * Get the major, minor and patch version in a string major.minor.patch
  64. * This is extracted by CMake from the KICAD_SEMANTIC_VERSION variable.
  65. *
  66. * @return the major.minor.patch version as a string
  67. */
  68. KICOMMON_API wxString GetMajorMinorPatchVersion();
  69. /**
  70. * Get the build date as a string.
  71. *
  72. * @return the build date string
  73. */
  74. KICOMMON_API wxString GetBuildDate();
  75. /**
  76. * Get the commit hash as a string.
  77. *
  78. * @return the commit hash string
  79. */
  80. KICOMMON_API wxString GetCommitHash();
  81. /**
  82. * Get the build version numbers as a tuple
  83. *
  84. * @return A tuple with three ints for major/minor/patch revisions
  85. */
  86. KICOMMON_API const std::tuple<int, int, int>& GetMajorMinorPatchTuple();
  87. /**
  88. * Check if the build is meant to be nightly
  89. * @return true if running nightly build
  90. */
  91. KICOMMON_API bool IsNightlyVersion();
  92. /**
  93. * A setter for OpenGL info when it's initialized.
  94. */
  95. KICOMMON_API void SetOpenGLInfo( const char* aRenderer, const char* aVendor, const char* aVersion );
  96. /**
  97. * Create a version info string for bug reports and the about dialog
  98. * @param aTitle is the application title to include at the top of the report
  99. * @param aBrief = true to condense information for the bug report URL
  100. * @param aHtml = true to use a minimal HTML format, false for plan text
  101. * @return the version info string
  102. */
  103. KICOMMON_API wxString GetVersionInfoData( const wxString& aTitle, bool aHtml = false,
  104. bool aBrief = false );
  105. #endif // KICAD_BUILD_VERSION_H