Changeset 54 for trunk/TOOLS


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

Location:
trunk/TOOLS
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/TOOLS/INTERNAL/FIXCODE.C

    r51 r54  
    190190    /*
    191191    // Count Code Sectors.
    192     // Obsolete now because since v1.0.8 the Protection Image has moved just
     192    // Obsolete now because since v1.0.8+ the Protection Image has moved just
    193193    // below the Configuration and the code is always max. size.
    194194    // Overlap checking is done while assembling AIR-BOOT.ASM.
  • trunk/TOOLS/OS2/SETABOOT/Makefile

    r51 r54  
    297297dist:   .SYMBOLIC
    298298        @if exist *.EXE $(CP) *.EXE ..$(DS)..$(DS)..$(DS)RELEASE$(DS)OS2
    299 
     299        @if exist *.EXE $(CP) *.EXE ..$(DS)..$(DS)..$(DS)RELEASE$(DS)BOOTCODE
    300300#
    301301# Help on using this Makefile.
  • trunk/TOOLS/OS2/SETABOOT/SETABOOT.C

    r46 r54  
    478478   //puts ("SETABOOT - AiR-BOOT Configuration Utility (OS/2) - (c) 2004-2009 by M. Kiewitz");
    479479   //puts ("SETABOOT v1.07a - AiR-BOOT Configuration Utility - (c) 2004-2011 by M. Kiewitz");
    480    puts ("SETABOOT v1.0.8 - AiR-BOOT Configuration Utility - (c) 2004-2012 by M. Kiewitz");
     480   puts ("SETABOOT v"
     481    BLDLVL_MAJOR_VERSION"."
     482    BLDLVL_MIDDLE_VERSION"."
     483    BLDLVL_MINOR_VERSION" - AiR-BOOT Configuration Utility - (c) 2004-"
     484    BLDLVL_YEAR
     485    " by M. Kiewitz");
    481486
    482487
     
    976981   // Rousseau: # Keep compatible with v1.07 CRC #
    977982   // AB v1.07 had bugs in writing the wrong number of AB config sectors.
    978    // This is fixed in v1.0.8 but the CRC has to be calculated the "v1.07 way"
     983   // This is fixed in v1.0.8+ but the CRC has to be calculated the "v1.07 way"
    979984   // otherwise v1.07 SET(A)BOOT and INSTALL2.EXE will think the AB config
    980985   // is corrupted.
  • trunk/TOOLS/OS2/SETABOOT/SETABOOT.H

    r51 r54  
    1414#define     BLDLVL_MINOR_VERSION    "8"
    1515// Build date
    16 #define     BLDLVL_YEAR             "2012"
    17 #define     BLDLVL_MONTH            "09"
    18 #define     BLDLVL_DAY              "09"
     16#define     BLDLVL_YEAR             "2013"
     17#define     BLDLVL_MONTH            "04"
     18#define     BLDLVL_DAY              "05"
    1919// Build time
    20 #define     BLDLVL_HOURS            "09"
    21 #define     BLDLVL_MINUTES          "09"
    22 #define     BLDLVL_SECONDS          "09"
     20#define     BLDLVL_HOURS            "01"
     21#define     BLDLVL_MINUTES          "00"
     22#define     BLDLVL_SECONDS          "08"
    2323// Build machine
    2424//#define     BLDLVL_MACHINE          "ecs-devbox"
Note: See TracChangeset for help on using the changeset viewer.