Ignore:
Timestamp:
Apr 13, 2014, 9:13:58 PM (11 years ago)
Author:
Ben Rietbroek
Message:

Preparing for v1.1.0 [2013-04-05]

During v1.0.8 it was decided that odd minor numbers will be
test-versions. Since v1.0.8 was actually a test-version with several
test-releases but with an even minor number, it was decided to bump the
final release to v1.1.0.

Thus, v1.1.1 will be the next test-version after the upcoming official
v1.1.0 release. When such test-versions are published, for instance to
get feedback, or solve a particular issue, the build-date and BLDLEVEL
information will identify such a test-release. This information can be
viewed by pressing the TAB-key while the Main Menu is displayed. Such
test-releases will also have a slightly different visual appearance to
distinguish them from official releases.

Because all test-versions between official releases identify themselves
with the same version number, upgrading from one test-release to another
requires the /forcecode option on the Installer.

Following this scheme, v1.1.2 will be the next official release after
the upcoming v1.1.0 release.

It is possible however, that major changes break compatibility with
previous releases, in which case the middle number will be incremented
to reflect this.

Note that this commit still identifies as v1.0.8.

Changes

o Bumped version information to v1.1.0
o Updated version dependent code in the Installers and SETABOOT.EXE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BOOTCODE/VERSION.INC

    r53 r54  
    3737AB_YEAR             EQU     2013h
    3838AB_MONTH            EQU     04h
    39 AB_DAY              EQU     03h
     39AB_DAY              EQU     05h
    4040
    4141; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
    42 AB_HOURS            EQU     16h
    43 AB_MINUTES          EQU     10h
    44 AB_SECONDS          EQU     00h
     42AB_HOURS            EQU     01h
     43AB_MINUTES          EQU     00h
     44AB_SECONDS          EQU     08h
    4545
    4646; The AiR-BOOT signature uses big-endian so we shuffle some bits around.
     
    4848AB_SIG_YEAR         EQU     ((AB_YEAR SHR 8) OR (AB_YEAR SHL 8) AND 0FFFFh)
    4949AB_SIG_DATE         EQU     (AB_MONTH SHL 8) OR AB_DAY
    50 
    5150
    5251;
Note: See TracChangeset for help on using the changeset viewer.