# HG changeset patch # User Claus Gittinger # Date 930571109 -7200 # Node ID 4e43271cc26614b5dc4c48580e1329e564cd2ac3 # Parent a3879a40eb37091c6b9a4070cd244f03b52231bb *** empty log message *** diff -r a3879a40eb37 -r 4e43271cc266 STXInstaller.st --- a/STXInstaller.st Mon Jun 28 13:46:55 1999 +0200 +++ b/STXInstaller.st Mon Jun 28 13:58:29 1999 +0200 @@ -891,8 +891,8 @@ and:[(here asLowercase endsWith:'projects\smalltalk') not ]]) ifTrue:[ "/ double - check if some of my expected files exists here ... - ('../libbasic' asFilename exists - and:['../libbasic' asFilename isDirectory]) ifTrue:[ + ('../../libbasic' asFilename exists + and:['../../libbasic' asFilename isDirectory]) ifTrue:[ self warn:(resources string:'Oops - current directories name seems to not end with ''/projects/smalltalk''\\Assume its OK.' withCRs). ] ifFalse:[ self warn:(resources string:'must be in the ''projects/smalltalk'' directory'). @@ -995,6 +995,7 @@ addAbortButton; addOkButtonLabelled:(resources string:'install'). d extent:500@400. + d resize. "/ compute best size d allViewBackground:dark. @@ -1200,6 +1201,7 @@ addAbortButton; addOkButtonLabelled:(resources string:'install'). d extent:500@400. + d resize. "/ compute best size d allViewBackground:dark. @@ -1277,7 +1279,7 @@ It consists of a directory hierachy, including makefiles for a customizeable rebuild of the whole smalltalk system. (Actually, it simply copies the whole CD contents onto your disk). -This requires roughly 120-200Mb of hard disk space.'). +This requires roughly 120-250Mb of hard disk space (dep. upon architecture).'). l adjust:#left; backgroundColor:dark; foregroundColor:Color white. d addVerticalSpace. @@ -1289,9 +1291,11 @@ smalltalk executable, shared libraries and support files onto your hard disk. This setup allows normal smalltalk development and is also useful as a runtime environment for smalltalk applications. -However, it does not support recreation of a new smalltal executable and/or +However, it does not support recreation of a new smalltalk executable and/or shared binary classLibraries. -This requires roughly 70-90Mb of hard disk space. +This setup also saves a lot of disk space, if multiple users are going to +use smalltalk, since most of the code is shared (both on disk and in memory). +This requires roughly 70-120Mb of hard disk space (dep. upon architecture). '). @@ -1307,7 +1311,8 @@ addAbortButton; addOkButton:(Button label:(resources string:'full') action:[installWhat := #full]); addOkButtonLabelled:(resources string:'partial'). - d extent:500@400. + d extent:500@500. + d resize. "/ compute best size ... d allViewBackground:dark.