Changeset 0ac9690913 in tspsg for src/version.h


Ignore:
Timestamp:
Dec 7, 2009, 5:06:44 PM (14 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
a218bf2cb2
Parents:
3b1caa32d0
Message:

+ Toolbar state and position is now saved and restored with Main Window state and position.

  • Made some small improvements to the code.
  • Fixed some errors in the documentation.
  • Made source code more "documentation friendly".
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/version.h

    r3b1caa32d0 r0ac9690913  
    5757//! Minor version of current TSPSG build
    5858#define BUILD_VERSION_MINOR 1
    59 //! TSPSG release number
     59/*!
     60 * \brief TSPSG release number
     61 *
     62 *  Release number meanings:
     63 *    - 1  --  3: <b>alpha</b> 1 to 3
     64 *    - 4  --  7: <b>beta</b> 1 to 4
     65 *    - 8  -- 10: <b>rc</b> 1 to 3
     66 *    - 11 --  x: <b>release</b> 1 to x-10
     67 */
    6068#define BUILD_RELEASE 2
    6169
     
    6371 * \brief Current TSPSG build number
    6472 *
    65  * This will only change on releases and will be the same as revision number.
    66  *
    67  * Build number meanings:
    68  *   - 1  --  3: <b>alpha</b> 1 to 3
    69  *   - 4  --  7: <b>beta</b> 1 to 4
    70  *   - 8  -- 10: <b>rc</b> 1 to 3
    71  *   - 11 --  x: <b>release</b> 1 to x-10
     73 *  This will only change on releases and will be the same as revision number.
    7274 */
    7375#define BUILD_NUMBER 65535
     
    7779 * \brief TSPSG build status
    7880 *
    79  * Determined based on BUILD_NUMBER.
     81 * Determined based on BUILD_NUMBER and BUILD_RELEASE.
    8082 */
    8183#if BUILD_NUMBER == 65535
    8284        #define BUILD_STATUS (dev build)
    83 #elif BUILD_RELEASE < 4
    84         #define BUILD_STATUS (alpha)
    85 #elif BUILD_RELEASE < 8
    86         #define BUILD_STATUS (beta)
    87 #elif BUILD_RELEASE < 11
    88         #define BUILD_STATUS (rc)
     85#else
     86        #if BUILD_RELEASE < 4
     87                #define BUILD_STATUS (alpha)
     88        #elif BUILD_RELEASE < 8
     89                #define BUILD_STATUS (beta)
     90        #elif BUILD_RELEASE < 11
     91                #define BUILD_STATUS (rc)
     92        #else
     93                #define BUILD_STATUS
     94        #endif
    8995#endif // BUILD_NUMBER == 65535
    9096
Note: See TracChangeset for help on using the changeset viewer.