13 #ifndef OPENSHOT_VERSION_H 14 #define OPENSHOT_VERSION_H 16 #define OPENSHOT_VERSION_ALL "0.3.1" 17 #define OPENSHOT_VERSION_FULL "0.3.1" 18 #define OPENSHOT_VERSION_MAJOR_MINOR "0.3" 20 #define OPENSHOT_VERSION_MAJOR 0 21 #define OPENSHOT_VERSION_MINOR 3 22 #define OPENSHOT_VERSION_BUILD 1 23 #define OPENSHOT_VERSION_SO 24 26 #define QT_VERSION_STR "5.11.3" 27 #define AVCODEC_VERSION_STR "58.35.100" 28 #define AVFORMAT_VERSION_STR "58.20.100" 29 #define AVUTIL_VERSION_STR "56.22.100" 32 #define HAVE_IMAGEMAGICK 1 35 #define FFMPEG_USE_SWRESAMPLE 1 36 #define APPIMAGE_BUILD 0 51 std::stringstream version_string;
52 version_string << Major <<
"." << Minor <<
"." <<
Build;
53 return version_string.str();
63 #endif // OPENSHOT_VERSION_H #define OPENSHOT_VERSION_MINOR
static const int Minor
Major version number.
static const int Build
Minor version number.
#define OPENSHOT_VERSION_BUILD
This struct holds version number information. Use the GetVersion() method to access the current versi...
OpenShotVersion GetVersion()
Get the current version number of libopenshot (major, minor, and build number)
This namespace is the default namespace for all code in the openshot library.
#define OPENSHOT_VERSION_SO
static const int So
Build number.
static const std::string ToString()
Shared Object Number (incremented when API or ABI changes)
#define OPENSHOT_VERSION_MAJOR