2014-10-22 15:51:34 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2024-02-29 01:24:12 +00:00
|
|
|
* Copyright (C) 1992-2024 KiCad Developers, see AUTHORS.TXT for contributors.
|
2014-10-22 15:51:34 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/* Date for kicad build version */
|
|
|
|
|
2010-01-05 08:48:49 +00:00
|
|
|
#ifndef KICAD_BUILD_VERSION_H
|
|
|
|
#define KICAD_BUILD_VERSION_H
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2023-09-26 01:32:26 +00:00
|
|
|
#include <kicommon.h>
|
2023-01-03 21:54:20 +00:00
|
|
|
#include <tuple>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2023-01-03 21:54:20 +00:00
|
|
|
class wxString;
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/**
|
2020-03-07 18:43:24 +00:00
|
|
|
* Get the full KiCad version string. This string contains platform-specific information
|
|
|
|
* added by the packagers. It is created by CMake in the KICAD_FULL_VERSION variable.
|
|
|
|
*
|
|
|
|
* @return the full version string
|
2010-01-04 19:09:33 +00:00
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API wxString GetBuildVersion();
|
2008-08-15 16:38:05 +00:00
|
|
|
|
2024-02-29 01:24:12 +00:00
|
|
|
/**
|
|
|
|
* Get the KiCad version string without the information added by the packagers.
|
|
|
|
* It is created by CMake in the KICAD_VERSION variable.
|
|
|
|
*
|
|
|
|
* @return the base version string
|
|
|
|
*/
|
|
|
|
KICOMMON_API wxString GetBaseVersion();
|
|
|
|
|
2021-11-13 08:52:08 +00:00
|
|
|
/**
|
|
|
|
* @return the bitness name string (like "Little endian")
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API wxString GetPlatformGetBitnessName();
|
2021-11-13 08:52:08 +00:00
|
|
|
|
2019-11-11 17:57:33 +00:00
|
|
|
/**
|
2020-03-07 18:43:24 +00:00
|
|
|
* Get the semantic version string for KiCad defined inside the KiCadVersion.cmake file in
|
|
|
|
* the variable KICAD_SEMANTIC_VERSION.
|
|
|
|
*
|
|
|
|
* @return the semantic version string
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API wxString GetSemanticVersion();
|
2020-03-07 18:43:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get only the major and minor version in a string major.minor.
|
|
|
|
* This is extracted by CMake from the KICAD_SEMANTIC_VERSION variable.
|
|
|
|
*
|
|
|
|
* @return the major and minor version as a string
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API wxString GetMajorMinorVersion();
|
2020-03-07 18:43:24 +00:00
|
|
|
|
2023-01-03 21:54:20 +00:00
|
|
|
/**
|
|
|
|
* Get the major, minor and patch version in a string major.minor.patch
|
|
|
|
* This is extracted by CMake from the KICAD_SEMANTIC_VERSION variable.
|
|
|
|
*
|
|
|
|
* @return the major.minor.patch version as a string
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API wxString GetMajorMinorPatchVersion();
|
2023-01-03 21:54:20 +00:00
|
|
|
|
2020-03-07 18:43:24 +00:00
|
|
|
/**
|
|
|
|
* Get the build date as a string.
|
|
|
|
*
|
2019-11-11 17:57:33 +00:00
|
|
|
* @return the build date string
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API wxString GetBuildDate();
|
2019-11-11 17:57:33 +00:00
|
|
|
|
2023-01-03 21:54:20 +00:00
|
|
|
/**
|
|
|
|
* Get the commit hash as a string.
|
|
|
|
*
|
|
|
|
* @return the commit hash string
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API wxString GetCommitHash();
|
2023-01-03 21:54:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the build version numbers as a tuple
|
|
|
|
*
|
|
|
|
* @return A tuple with three ints for major/minor/patch revisions
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API const std::tuple<int, int, int>& GetMajorMinorPatchTuple();
|
2023-01-03 21:54:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the build is meant to be nightly
|
|
|
|
* @return true if running nightly build
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API bool IsNightlyVersion();
|
2020-05-25 00:39:15 +00:00
|
|
|
|
2024-05-05 18:30:21 +00:00
|
|
|
/**
|
|
|
|
* A setter for OpenGL info when it's initialized.
|
|
|
|
*/
|
|
|
|
KICOMMON_API void SetOpenGLInfo( const char* aRenderer, const char* aVendor, const char* aVersion );
|
|
|
|
|
2020-05-25 00:39:15 +00:00
|
|
|
/**
|
|
|
|
* Create a version info string for bug reports and the about dialog
|
|
|
|
* @param aTitle is the application title to include at the top of the report
|
|
|
|
* @param aBrief = true to condense information for the bug report URL
|
|
|
|
* @param aHtml = true to use a minimal HTML format, false for plan text
|
|
|
|
* @return the version info string
|
|
|
|
*/
|
2023-09-26 01:32:26 +00:00
|
|
|
KICOMMON_API wxString GetVersionInfoData( const wxString& aTitle, bool aHtml = false,
|
|
|
|
bool aBrief = false );
|
2020-05-25 00:39:15 +00:00
|
|
|
|
2021-04-04 06:48:02 +00:00
|
|
|
#endif // KICAD_BUILD_VERSION_H
|