Changeset 1305 for cpp/frams


Ignore:
Timestamp:
05/11/24 16:51:08 (4 months ago)
Author:
Maciej Komosinski
Message:

Cosmetic

Location:
cpp/frams
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/config/version.h

    r692 r1305  
    11// This file is a part of Framsticks SDK.  http://www.framsticks.com/
    2 // Copyright (C) 1999-2017  Maciej Komosinski and Szymon Ulatowski.
     2// Copyright (C) 1999-2024  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
    5 #define MAIN_REL_ID "5.0rc10"
    6 #define VERSION_INT 3
     5#define MAIN_REL_ID "5.0rc30"
     6#define VERSION_INT 22
     7
     8
     9#ifdef IPHONE
     10        // make the version displayed in the "About" window compatible with Apple's ideas about versioning
     11        #define IOS_VERSION "5.0.5" //can't be arbitrary text as in some other platforms, so let's make it "Framsticks version (disregarding rc)" + dot + "number increased on each release"
     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
  • cpp/frams/genetics/geneprops.h

    r1260 r1305  
    137137
    138138        double cred;              ///<incremented by D, decremented by d. Part's red color proportion
    139         double cgreen;            ///<incremented by B, decremented by b. Part's blue color proportion
    140         double cblue;             ///<incremented by G, decremented by g. Part's green color proportion
     139        double cgreen;            ///<incremented by B, decremented by b. Part's green color proportion
     140        double cblue;             ///<incremented by G, decremented by g. Part's blue color proportion
    141141
    142142        static GeneProps standard_values;
Note: See TracChangeset for help on using the changeset viewer.