On Friday 23 January 2009 12:44, Zero3 at freenetproject.org wrote: > Author: Zero3 > Date: 2009-01-23 12:44:23 +0000 (Fri, 23 Jan 2009) > New Revision: 25233 > > Modified: > trunk/apps/wininstaller/src_freenetinstaller/FreenetInstaller.ahk > Log: > Fix default datastore size
It starts off as 100 but it will not be set to less than 256. > > Modified: trunk/apps/wininstaller/src_freenetinstaller/FreenetInstaller.ahk > =================================================================== > --- trunk/apps/wininstaller/src_freenetinstaller/FreenetInstaller.ahk 2009-01-23 00:01:49 UTC (rev 25232) > +++ trunk/apps/wininstaller/src_freenetinstaller/FreenetInstaller.ahk 2009-01-23 12:44:23 UTC (rev 25233) > @@ -24,7 +24,7 @@ > _ButtonWidth := 100 ; Width of our > buttons > > _RequiredJRE := 1.5 ; Java version > required by Freenet. If not found, user will be asked to upgrade/install via the bundled online installer > -_UsedFreeSpace := _Inc_InstallSize+256 ; What > we actually need. Installation size + default datastore size > +_UsedFreeSpace := _Inc_InstallSize+100 ; What > we actually need. Installation size + default datastore size > _RequiredFreeSpace := _UsedFreeSpace+512 ; In MB, how > much free space do we require to install? What we actually use + enough free space for Windows to continue operating (in case install dir is on system drive... and to not block the drive in general) > _InternalPathLength := 75 ; Length of > longest path within the Freenet installation. Installation will refuse to continue if install path + this number exceeds 255 (FAT32 and NTFS limit) > > > _______________________________________________ > cvs mailing list > cvs at freenetproject.org > http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 827 bytes Desc: not available URL: <https://emu.freenetproject.org/pipermail/devl/attachments/20090131/07535d27/attachment.pgp>
