Changeset 3516 for trunk/tools/install


Ignore:
Timestamp:
May 10, 2000, 3:57:49 PM (25 years ago)
Author:
sandervl
Message:

Added ChangeLog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/install/odin.cmd

    r3459 r3516  
    6666rc = lineout(instfile, 'of the Win32 binary emulator.');
    6767rc = lineout(instfile, '');
    68 rc = lineout(instfile, 'This readme is intended for end users that have downloaded the');
    69 rc = lineout(instfile, 'latest public alpha release and want to give it a try. For more');
    70 rc = lineout(instfile, 'information, be sure to regularly check http://www.netlabs.org/odin.</TEXT>');
     68rc = lineout(instfile, 'Odin is available thanks to the work of the following people:');
     69rc = lineout(instfile, '');
     70rc = lineout(instfile, '     Christoph Bratschi');
     71rc = lineout(instfile, '     Edgar Buerkle');
     72rc = lineout(instfile, '     Yuri Dario');
     73rc = lineout(instfile, '     Przemyslaw Dobrowolski');
     74rc = lineout(instfile, '     Daniela Engert');
     75rc = lineout(instfile, '     Peter Fitzsimmons');
     76rc = lineout(instfile, '     Adrian Gschwend');
     77rc = lineout(instfile, '     Jeroen van den Horn');
     78rc = lineout(instfile, '     Patrick Haller');
     79rc = lineout(instfile, '     Achim Hasenmueller');
     80rc = lineout(instfile, '     Kevin Langman');
     81rc = lineout(instfile, '     Bart van Leeuwen');
     82rc = lineout(instfile, '     Sander van Leeuwen');
     83rc = lineout(instfile, '     Felix Maschek');
     84rc = lineout(instfile, '     Chris McKillop');
     85rc = lineout(instfile, '     Nenad Milenkovic');
     86rc = lineout(instfile, '     Michal Necasek');
     87rc = lineout(instfile, '     Ondrej Necasek');
     88rc = lineout(instfile, '     Knut Stange Osmundsen');
     89rc = lineout(instfile, '     Vitali E. Pelenyov');
     90rc = lineout(instfile, '     Rene Pronk');
     91rc = lineout(instfile, '     David Raison');
     92rc = lineout(instfile, '     Vit Timchishin');
     93rc = lineout(instfile, '     Joel Troster');
     94rc = lineout(instfile, '     Jens Wiessner');
     95rc = lineout(instfile, '     Vince Vielhaber');
     96rc = lineout(instfile, '     All the WINE people');
     97rc = lineout(instfile, '');
     98rc = lineout(instfile, '</TEXT>');
    7199rc = lineout(instfile, '</PAGE>');
    72100rc = lineout(instfile, '<PAGE INDEX=2 TYPE=README>');
     
    145173rc = lineout(instfile, '</README>');
    146174rc = lineout(instfile, '</PAGE>');
    147 rc = lineout(instfile, '<PAGE INDEX=3 TYPE=CONTAINER>');
     175rc = lineout(instfile, '<PAGE INDEX=3 TYPE=README>');
    148176rc = lineout(instfile, '<NEXTBUTTON TARGET=4>~Next</NEXTBUTTON>');
    149177rc = lineout(instfile, '<TEXT>');
     178rc = lineout(instfile, 'List of changes and bugfixes for this Odin daily build ('date()')');
     179rc = lineout(instfile, '</TEXT>');
     180rc = lineout(instfile, '<README>');
     181/* Insert ChangeLog */
     182changelog = '..\..\ChangeLog'
     183logline = linein(changelog);
     184do while lines(changelog) > 0
     185rc = lineout(instfile, logline);
     186logline = linein(changelog);
     187end
     188rc = lineout(instfile, '</README>');
     189rc = lineout(instfile, '</PAGE>');
     190rc = lineout(instfile, '<PAGE INDEX=4 TYPE=CONTAINER>');
     191rc = lineout(instfile, '<NEXTBUTTON TARGET=5>~Next</NEXTBUTTON>');
     192rc = lineout(instfile, '<TEXT>');
    150193rc = lineout(instfile, 'Please select the packages which are to be installed. You may change the target paths for the packages.');
    151194rc = lineout(instfile, '</TEXT>');
    152195rc = lineout(instfile, '</PAGE>');
    153 rc = lineout(instfile, '<PAGE INDEX=4 TYPE=CONFIGURE>');
    154 rc = lineout(instfile, '<NEXTBUTTON TARGET=5>~Next</NEXTBUTTON>');
     196rc = lineout(instfile, '<PAGE INDEX=5 TYPE=CONFIGURE>');
     197rc = lineout(instfile, '<NEXTBUTTON TARGET=6>~Next</NEXTBUTTON>');
    155198rc = lineout(instfile, '<TEXT>');
    156199rc = lineout(instfile, 'Please select additional configuration that WarpIN should perform after installing this archive.');
    157200rc = lineout(instfile, '</TEXT>');
    158201rc = lineout(instfile, '</PAGE>');
    159 rc = lineout(instfile, '<PAGE INDEX=5 TYPE=TEXT>');
     202rc = lineout(instfile, '<PAGE INDEX=6 TYPE=TEXT>');
    160203rc = lineout(instfile, '<NEXTBUTTON TARGET=0>I~nstall</NEXTBUTTON>');
    161204rc = lineout(instfile, '<TEXT>');
     
    175218do
    176219        dlldir = "bin\debug";
    177         installarchive = "odin32bin-"date('S')"_debug"
     220        installarchive = "odin32bin-"date('S')"-debug"
    178221end
    179222else
    180223do
    181224        dlldir = "bin\release";
    182         installarchive = "odin32bin-"date('S')"_release"
     225        installarchive = "odin32bin-"date('S')"-release"
    183226end
    184227
     
    187230"del "installarchive".wpi";
    188231
    189 /* package 1: Mahjongg */
    190232call directory maindir;
    191233"wic.exe "curdir"\"installarchive" -a 1 LICENSE.TXT ChangeLog Readme.txt";
     
    200242"wic.exe "curdir"\"installarchive" -a 4 *.dll";
    201243
    202 call directory "..\Voodoo1"
     244call directory "..\Voodoo2"
    203245"wic.exe "curdir"\"installarchive" -a 5 *.dll";
    204246
Note: See TracChangeset for help on using the changeset viewer.