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.

79 lines
2.6 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 (C) 1992-2020 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. class wxString;
  28. /**
  29. * Get the full KiCad version string. This string contains platform-specific information
  30. * added by the packagers. It is created by CMake in the KICAD_FULL_VERSION variable.
  31. *
  32. * @return the full version string
  33. */
  34. wxString GetBuildVersion();
  35. /**
  36. * @return the bitness name string (like "Little endian")
  37. */
  38. wxString GetPlatformGetBitnessName();
  39. /**
  40. * Get the semantic version string for KiCad defined inside the KiCadVersion.cmake file in
  41. * the variable KICAD_SEMANTIC_VERSION.
  42. *
  43. * @return the semantic version string
  44. */
  45. wxString GetSemanticVersion();
  46. /**
  47. * Get only the major and minor version in a string major.minor.
  48. * This is extracted by CMake from the KICAD_SEMANTIC_VERSION variable.
  49. *
  50. * @return the major and minor version as a string
  51. */
  52. wxString GetMajorMinorVersion();
  53. /**
  54. * Get the build date as a string.
  55. *
  56. * @return the build date string
  57. */
  58. wxString GetBuildDate();
  59. /**
  60. * Create a version info string for bug reports and the about dialog
  61. * @param aTitle is the application title to include at the top of the report
  62. * @param aBrief = true to condense information for the bug report URL
  63. * @param aHtml = true to use a minimal HTML format, false for plan text
  64. * @return the version info string
  65. */
  66. wxString GetVersionInfoData( const wxString& aTitle, bool aHtml = false, bool aBrief = false );
  67. #endif // KICAD_BUILD_VERSION_H