source: cpp/frams/config/version.h @ 1329

Last change on this file since 1329 was 1318, checked in by Maciej Komosinski, 6 months ago

Cosmetic

  • Property svn:eol-style set to native
File size: 803 bytes
RevLine 
[286]1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
[1305]2// Copyright (C) 1999-2024  Maciej Komosinski and Szymon Ulatowski.
[286]3// See LICENSE.txt for details.
[179]4
[1318]5#define MAIN_REL_ID "5.0"
6#define VERSION_INT 23
[1305]7
8
9#ifdef IPHONE
[1318]10        // in the "About" window, display both MAIN_REL_ID and the version compatible with Apple's ideas about versioning
11        #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"
[1305]12        #define VERSION_FOR_MOBI_ABOUT IOS_VERSION "<br><small>(Framsticks " MAIN_REL_ID ")</small>" //...but still display the true internal Framsticks version
13#else
14        #define VERSION_FOR_MOBI_ABOUT MAIN_REL_ID
15#endif
Note: See TracBrowser for help on using the repository browser.