Ignore:
Timestamp:
Nov 7, 2017, 7:12:56 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Added 'RELEASE' option for building a RELEASE version [v1.1.1-testing]

Formerly this was done by editing the related files, which is kinda
annoying when using versioning. With this new method it is more easy
to test release builds while developing.

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/version.h

    r182 r188  
    1818
    1919
     20
    2021/*
    21 // OS/2 BLDLEVEL Information.
     22// OS/2 BLDLEVEL Information
    2223*/
    2324
     
    3233#endif
    3334
     35// Build language
     36#define     BLDLVL_LANGUAGE         "EN"
     37
     38
     39// Release and TestBuild variants
     40#ifdef  RELEASE
     41
     42// Version
     43#define     BLDLVL_MAJOR_VERSION    "1"
     44#define     BLDLVL_MIDDLE_VERSION   "1"
     45#define     BLDLVL_MINOR_VERSION    "2"
     46
     47// Build date
     48#define     BLDLVL_YEAR             "2017"
     49#define     BLDLVL_MONTH            "04"
     50#define     BLDLVL_DAY              "13"
     51
     52// Build time
     53#define     BLDLVL_HOURS            "01"
     54#define     BLDLVL_MINUTES          "01"
     55#define     BLDLVL_SECONDS          "02"
     56
     57#else
     58
    3459// Version
    3560#define     BLDLVL_MAJOR_VERSION    "1"
     
    4368
    4469// Build time
    45 //~ #define     BLDLVL_HOURS            "01"
    46 //~ #define     BLDLVL_MINUTES          "01"
    47 //~ #define     BLDLVL_SECONDS          "00"
    4870#define     BLDLVL_HOURS            "23"
    4971#define     BLDLVL_MINUTES          "59"
    5072#define     BLDLVL_SECONDS          "59"
    5173
    52 // Build language
    53 #define     BLDLVL_LANGUAGE         "EN"
     74#endif
Note: See TracChangeset for help on using the changeset viewer.