XTool (2020)

XTool (2020) 0.8.9

Нет прав для скачивания
if you don't use preflate when compressing, then why
Resource4=preflate_dll.dll?

I just didn't know which library to use. In the version of xtool I have, there's no gdeflate.dll file or anything like that.
48826499dp.png


Maybe someone can help me out and provide a link to version 0.8.9, as I can't download it from there. ?
 
@Crachlow Thanks mate! After testing everything works.
48828521hb.png


I also added a function that informs users that the installer is supported by operating systems 10 +
Код:
[CustomMessages]
english.WindowsVersionNotSupported=This installer may NOT work correctly on Windows 7/8 or older. Do you want to continue anyway?

function IsWindows10OrNewer(): Boolean;
var
  Version: TWindowsVersion;
begin
  GetWindowsVersionEx(Version);
  Result := (Version.Major > 6) or ((Version.Major = 6) and (Version.Minor >= 2));
end;

function InitializeSetup(): Boolean;
begin
  if not IsWindows10OrNewer then
  begin
     if MsgBox(ExpandConstant('{cm:WindowsVersionNotSupported}'), mbConfirmation, MB_YESNO) = IDNO then
     begin
      Abort();
     end;
  end;
  //  additional code
  Result := True;
end;


Thank you for your help, and best regards!
 
Последнее редактирование:
@Mickey1s, скажите как использовать эту функцию --skip, -s при упаковки и что нужно чтобы распаковывалось? Оно то упаковалось, а распаковываться вообще не хочет на 0 стоит. Использую через arc.
 
ёмаё, среп в икстуле, как много я пропустил
че, от него прям профит есть? кстати, орно, разорка пофиксил косяки
нахрена он лзма2 засунул, тип чтоб сжимать ? версия стабильная? или как всегда че не версия то баг на баге
 
Последнее редактирование:
Назад
Сверху