Installazione 2.1

Eliminato setup.pkg che e' un file compilato.
Aggiunto setup.lst che e' il sorgente del precedente (contiene la lista con l'elenco dei files
di tipo .z che compaiono nell'installazione).
Modificate le icone della installazione (files .dll).
Eliminato ba.z; il suo contenuto e' stato trasferito in sys.z (fase di preparazione al nuovo
modulo SY).


git-svn-id: svn://10.65.10.50/trunk@11938 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2004-04-06 13:00:45 +00:00
parent 3093c0afc6
commit 94c444b03a
6 changed files with 12 additions and 13 deletions

7
windows/install/SETUP.LST Executable file
View File

@ -0,0 +1,7 @@
1;
datidemo.z
datiditt.z
sys.z
winsys.z
sysnt.z
res.z

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -192,31 +192,23 @@ begin
_Errore( szText ); _Errore( szText );
endif; endif;
endif; endif;
FileSetEndDefine ( "WIN"); FileSetEndDefine ( "WIN");
FileSetBeginDefine ( "BA"); FileSetBeginDefine ( "SYS");
TARGETDIR = szAppPath; TARGETDIR = szAppPath;
if ( CreateDir( TARGETDIR ) < 0 ) then if ( CreateDir( TARGETDIR ) < 0 ) then
_Errore( STR_DIR_NOTCREATED ); _Errore( STR_DIR_NOTCREATED );
else else
if ( CompressGet( "SYS.Z", "*.*", INCLUDE_SUBDIR ) < 0) then if ( CompressGet( "SYS.Z", "*.*", INCLUDE_SUBDIR ) < 0) then
szText = STR_ERR_DECOMPRESS + " la libreria SYS."; szText = STR_ERR_DECOMPRESS + " l'archivio compresso contenente i files di sistema.";
_Errore( szText );
endif;
szText = "BA.Z";
if ( CompressGet( szText, "*.*", INCLUDE_SUBDIR ) < 0) then
szText = STR_ERR_DECOMPRESS + " il programma installatore";
_Errore( szText ); _Errore( szText );
endif; endif;
if ( CompressGet( "RES.Z", "*.*", INCLUDE_SUBDIR ) < 0) then if ( CompressGet( "RES.Z", "*.*", INCLUDE_SUBDIR ) < 0) then
szText = STR_ERR_DECOMPRESS + " il programma installatore"; szText = STR_ERR_DECOMPRESS + " l'archivio compresso contenente i files delle icone.";
_Errore( szText ); _Errore( szText );
endif; endif;
endif; endif;
FileSetEndDefine ( "BA"); FileSetEndDefine ( "SYS");
StrToUpper( szAppPath, szAppPath ); StrToUpper( szAppPath, szAppPath );
szStatusText = "Installazione su " + szAppPath; szStatusText = "Installazione su " + szAppPath;
@ -226,7 +218,7 @@ begin
StatusUpdate( ON, 100 ); StatusUpdate( ON, 100 );
SetStatusWindow( 50, "Installazione programmi di ambiente .." ); SetStatusWindow( 50, "Installazione programmi di ambiente .." );
_PerformSet ( "BA"); _PerformSet ( "SYS");
szTemp = szAppPath ^ "RecDesc"; szTemp = szAppPath ^ "RecDesc";
CreateDir(szTemp); CreateDir(szTemp);