// This file is a part of Framsticks SDK. http://www.framsticks.com/
// Copyright (C) 1999-2024 Maciej Komosinski and Szymon Ulatowski.
// See LICENSE.txt for details.
#define MAIN_REL_ID "5.0"
#define VERSION_INT 23
#ifdef IPHONE
// in the "About" window, display both MAIN_REL_ID and the version compatible with Apple's ideas about versioning
#define IOS_VERSION "5.0.7" //for Apple, this can't be arbitrary text (like MAIN_REL_ID could be) as in some other platforms, so let's make it "Framsticks version (disregarding "rc", "beta" etc.)" + dot + "number increased on each release"
#define VERSION_FOR_MOBI_ABOUT IOS_VERSION "
(Framsticks " MAIN_REL_ID ")" //...but still display the true internal Framsticks version
#else
#define VERSION_FOR_MOBI_ABOUT MAIN_REL_ID
#endif