如何使用Qt Installer Framework正确创建在线安装程序

时间:2019-04-10 06:51:03

标签: qt qt-installer

我想知道,为什么缺少有关QtIFM的信息? 因此,基本上我已经成功创建了脱机安装程序,但现在在线上存在一些问题。 这是我制作回购的脚本:

D:\Qt\QtIFW-3.0.6\bin\repogen.exe -p client\packages client\clientRepository

这是为了制作安装程序:

D:\Qt\QtIFW-3.0.6\bin\binarycreator.exe --online-only -c client\config\config_online.xml -p client\packages client\OnlineInstaller.exe

config_online.xml:

<?xml version="1.0" encoding="UTF-8"?>
<Installer>
    <Name>4x4Basic name</Name>
    <Version>1.0.0</Version>
    <Title>4x4Basic title</Title>
    <Publisher>The AlexLPN Company</Publisher>
    <StartMenuDir>Board4x4</StartMenuDir>
    <TargetDir>@HomeDir@/Board4x4/Basic4x4</TargetDir>

    <RemoteRepositories>
         <Repository>
             <Url>http://github.com/alexlyapin/Basic4x4/clientRepository</Url>
             <Enabled>1</Enabled>
             <DisplayName>Example repository</DisplayName>
         </Repository>
    </RemoteRepositories>
</Installer>

updates.xml:

<?xml version="1.0" encoding="utf-8" ?> 
<Updates>
 <ApplicationName>{Basic4x4}</ApplicationName>
 <ApplicationVersion>1.0.0</ApplicationVersion>
 <Checksum>true</Checksum>
 <PackageUpdate>
  <Name>Basic4x4</Name>
  <DisplayName>Basic4x4 component</DisplayName>
  <Description>This component is uncheckable.</Description>
  <Version>1.0.0</Version>
  <ReleaseDate>2015-12-01</ReleaseDate>
  <SortingPriority>40</SortingPriority>
  <Checkable>false</Checkable>
  <UpdateFile UncompressedSize="56605917" CompressedSize="15509593" OS="Any"/>
  <DownloadableArchives>iconengines.7z,imageformats.7z,platforms.7z,styles.7z,translations.7z,content.7z</DownloadableArchives>
  <Licenses>
   <License name="License agreement" file="license.txt"/>
  </Licenses>
  <SHA1>3ef56b443d43c3d49ee983d7d1f5e6cd6280e30b</SHA1>
 </PackageUpdate>
</Updates>

该软件包作为“ https://github.com/alexlyapin/Basic4x4/tree/master/clientRepository”上传到GitHub存储库 右边有Basic4x4文件夹,Updates.xml和license.txt

当我进行安装程序并尝试测试存储库时,出现错误: Updates.xml:解析元素时发生错误

因此,位置错误或某些xml行。有人可以检查一下或给我建议吗? 谢谢!

2 个答案:

答案 0 :(得分:0)

我找到了解决方案。关键是,GitHub没有像某些托管服务那样为您提供真正的存储库,因此无法建立文件索引。

我已经创建了免费托管并在那里上传了存储库。之后,一切正常。

答案 1 :(得分:0)