|
|
|
#1
|
||||
|
||||
|
Mini Compressor AIO v20.6 - Updated
Changelog was moved: here Fixed: Quote:
Quote:
![]() EDIT: Quote:
Last edited by Carldric Clement; 30-06-2019 at 06:19. |
| The Following 4 Users Say Thank You to Carldric Clement For This Useful Post: | ||
| Sponsored Links |
|
#2
|
|||
|
|||
|
Fanext does not work with your installer - requires you to insert a disk. Maybe I'm doing something wrong.
![]() Quote:
It would be nice to add a selection of components to the installer and implement a registry entry. |
| The Following 2 Users Say Thank You to Zanoza79 For This Useful Post: | ||
Carldric Clement (24-09-2019), Celestosapien (28-11-2019) | ||
|
#3
|
||||
|
||||
|
Quote:
![]() I'll give you some example. Last edited by Carldric Clement; 24-09-2019 at 08:59. |
|
#4
|
|||
|
|||
|
Quote:
Code:
function DelSp(s: string): string;
begin
while Pos(' ',s)>0 do StringChange(s,' ',' ');
Result:=Trim(s);
end;
procedure GroupChange(Sender: TObject);
begin
GroupEditLabel.Caption := MinimizePathName(WizardForm.GroupEdit.Text, GroupEditLabel.Font, GroupEditLabel.Width);
end;
function NumToStr(Float: Extended): string;
begin
Result:=Format('%.2n', [Float]);
StringChange(Result, ',', '.');
while ((Result[Length(Result)]='0') or (Result[Length(Result)]='.')) and (Pos('.',Result)>0) do SetLength(Result,Length(Result)-1);
end;
function MbOrGb(Float: extended): ansistring;
begin
if Float >= (1024*1024*1024) then
result:=format('%.2n',[Float/(1024*1024*1024)])+' Gb'
else
result:= format('%.2n',[Float/(1024*1024)])+' Mb';
end;
function GetElementIndex(a:TALabel; lbl:TLabel):integer;
var
i:integer;
f:boolean;
begin
Result:=-1;
f:=False;
for i:=0 to GetArrayLength(a)-1 do
if a[i]=lbl then begin
f:=True;
Break;
end;
if f then Result:=i;
end;
function NoIcons: Boolean;
begin
Result:= BtnGetEnabled(hGroupBrowseBtn);
end;
function Desktop: Boolean;
begin
Result:= BtnGetChecked(DesktopCheck);
end;
function QuickLaunch: Boolean;
begin
Result:= BtnGetChecked(QuickLaunchCheck);
end;
procedure HideControls;
begin
LabelPct1.Hide;
end;
|
|
#5
|
||||
|
||||
|
Quote:
Code:
function MbOrGB(Float: extended): ansistring; begin if Float<1024 then Result:=NumToStr(Float)+' MB' else if (Float/1024)<1024 then Result:=NumToStr(Float/1024)+' GB' else if (Float/(1024*1024))<1024 then Result:=NumToStr(Float/(1024*1024))+' TB' end; |
| The Following 2 Users Say Thank You to Carldric Clement For This Useful Post: | ||
Celestosapien (05-10-2019), MaXun (24-09-2019) | ||
|
#6
|
|||
|
|||
|
Quote:
And how can I add a display of the progress of the extracted files?
|
| The Following User Says Thank You to MaXun For This Useful Post: | ||
Celestosapien (15-10-2019) | ||
![]() |
| Tags |
| compression, games, mini, repack |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problems with Mini image | Soleyu | PC Games | 9 | 22-02-2008 06:05 |
| Starforce 3.6 Mini image - Is it possible? | neptun | PC Games | 20 | 17-04-2007 14:00 |
| Diablo II Playdisk Mini Image | NeEkO | PC Games | 3 | 09-11-2005 08:05 |
| Help Creating Mini Image Files | Evil Homer | PC Games | 0 | 09-10-2005 01:19 |
| Possible Main Thread about Mini Images | ochentay4 | PC Games | 0 | 27-10-2004 12:40 |