From: Dirk B. <db...@us...> - 2008-12-19 12:48:41
|
Update of /cvsroot/win32forth/win32forth/apps/Setup In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21442/apps/Setup Modified Files: Setup.f Log Message: Removed some Options from the Setup that are not needed any more. And made it look a little better with the new console. Index: Setup.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Setup/Setup.f,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Setup.f 2 Sep 2008 06:38:40 -0000 1.22 --- Setup.f 19 Dec 2008 12:48:34 -0000 1.23 *************** *** 59,67 **** SystemDirectory$ c! ; \ make counted string : setupinit 3 Show-Window cls ! ." Win32Forth" .version cr ! ." Setup Program" cr cr &forthdir ?-\ --- 59,72 ---- SystemDirectory$ c! ; \ make counted string + : .version ( -- ) + base @ decimal + ." Version: " + version# ((version)) type + ." Build: " build# . + base ! ; : setupinit 3 Show-Window cls ! ." Win32Forth " .version ." - Setup Program" cr cr &forthdir ?-\ *************** *** 120,145 **** ." To Install Win32Forth Press one of these Keys" cr dashline cr ! ." I (Re)Install the entire Win32Forth system from scratch." cr cr ." M Same as install but, you can change the size of the" cr ! ." Application-, System- and Codespace." cr cr ! ." K Meta compile a new Kernel (builds fkernel.exe) only." cr cr ! ." E Extend the kernel (builds a new win32for.exe)" cr cr ! ." B Rebuild win32for.exe (same as 'K' with setsize and 'E')" cr cr ! ." W Rebuild WinEd." cr cr ! ." H Rebuild the Hyper link indices used by WinEd, Project Manager" cr ! ." and the Win32Forth IDE." cr cr ! ." F Rebuild ForthForm." cr cr ! ." P Rebuild Project Manager." cr cr ! ." G Rebuild Win32forth IDE." cr cr ! ." A Rebuild sample applications (Player4, Solipon2, Sudoku," cr ! ." PlayVirginRadio and PictureViewer)" cr cr ! ." T Rebuild Help program." cr cr ! ." U Rebuild Help words database (this is not done by default)." cr cr ! ." R Rebuild Help dexh HTML files (this is not done by default)." cr cr ! ." D Copy Win32Forth dll files (w32fConsole.dll, w32fScintilla.dll," cr ." wincon.dll and Zip32.dll) into the Windows system folder:" cr ! ." '" SystemDirectory$ count type ." ' (this is not done by default)." cr cr ! ." X Exit setup." cr cr ! cr true then ; --- 125,146 ---- ." To Install Win32Forth Press one of these Keys" cr dashline cr ! ." I (Re)Install the entire Win32Forth system from scratch." cr ." M Same as install but, you can change the size of the" cr ! ." Application-, System- and Codespace." cr ! ." K Meta compile a new Kernel (builds fkernel.exe) only." cr ! ." E Extend the kernel (builds a new win32for.exe)" cr ! ." B Rebuild win32for.exe (same as 'K' with setsize and 'E')" cr ! ." W Rebuild WinEd." cr ! ." G Rebuild Win32forth IDE." cr ! ." A Rebuild sample applications" cr ! ." H Rebuild the Hyper link indices used by WinEd and the Win32Forth IDE." cr ! ." T Rebuild Help program." cr ! ." U Rebuild Help words database (this is not done by default)." cr ! ." R Rebuild Help dexh HTML files (this is not done by default)." cr ! ." D Copy Win32Forth dll files (w32fScintilla.dll," cr ." wincon.dll and Zip32.dll) into the Windows system folder:" cr ! ." '" SystemDirectory$ count type ." ' (this is not done by default)." cr ! ." X Exit setup." ! true then ; *************** *** 271,301 **** ; - : buildforthform - cr - cr ." *** ForthForm has been moved to the IDE *** " - cr - \ ." -- ForthForm" cr - \ c" WIN32FOR.EXE chdir apps\forthform fload forthform.f bye" procexec - \ c" FORTHFORM.EXE" filecheck - ; - - : buildproject - cr - cr ." *** ProjectManager has been moved to the IDE *** " - cr - \ ." -- ProjectManager" cr - \ c" WIN32FOR.EXE chdir apps\ProMgr fload ProjectManager.f bye" procexec - \ c" PROJECT.EXE" filecheck - ; - - : buildscintilla - cr - cr ." *** SciEdit has been moved to the IDE *** " - cr - \ ." -- SciEdit" cr - \ c" WIN32FOR.EXE chdir apps\SciEdit fload Main.f bye" procexec - \ c" SciEditMdi.EXE" filecheck - ; - : buildide ." -- Win32Forth IDE" cr --- 272,275 ---- *************** *** 354,358 **** : copywindowdll ( -- ) \ copy the win32forth dll's to the windows system folder - c" w32fConsole.dll" copydll c" w32fScintilla.dll" copydll c" wincon.dll" copydll --- 328,331 ---- *************** *** 369,375 **** if buildindex \ build the index files for WinEd then - buildforthform \ build ForthForm - buildproject \ build ProjectManager - buildscintilla \ build SciEdit buildsamples \ build sample applications buildhelp \ build help program (no database building there) --- 342,345 ---- *************** *** 437,443 **** buildwined buildindex - buildforthform - buildproject - buildscintilla \ build SciEdit buildsamples \ build sample applications buildide \ build Win32Forth IDE --- 407,410 ---- *************** *** 505,544 **** ; - \ ForthForm - \ new September 16th, 2003 dbu - : forthform - cls cr - ." ForthForm requested" cr - dashline - ." Rebuilding ForthForm" cr - checkcont - buildforthform - endedok - ; - - \ ProjectManager - \ Sonntag, May 30 2004 - 9:50 dbu - : project - cls cr - ." ProjectManager requested" cr - dashline - ." Rebuilding ProjectManager" cr - checkcont - buildproject - endedok - ; - - \ Scintilla Editor - \ new June 26th, 2004 - 6:50 aws - : scintilla - cls cr - ." Scintilla Editor requested" cr - dashline - ." Rebuilding Scintilla Editor" cr - checkcont - buildscintilla \ build SciEdit - endedok - ; - \ Win32ForthIDE Editor \ Mittwoch, Juni 07 2006 - 18:01 dbu --- 472,475 ---- *************** *** 631,636 **** 'W' of wined endof 'H' of index endof - 'F' of forthform endof - 'P' of project endof 'G' of ide endof 'A' of samples endof --- 562,565 ---- *************** *** 645,649 **** \ 'Hidden' command's - 'S' of scintilla endof 'L' of create-links endof 'C' of true install-silent endof --- 574,577 ---- |