Inno setup Inno Setup 6 Beta未显示RTF许可证

Inno setup Inno Setup 6 Beta未显示RTF许可证,inno-setup,inno-setup-v6,Inno Setup,Inno Setup V6,我解决了大多数编译警告,并决定尝试现代安装。在安装结束时,我看到了以下页面: 所有语言都有一个指向RTF文件的链接。例如: 名称:“英语”;MessagesFile:“编译器:Default.isl”;许可证文件:“..\..\Inno\l.eng\LicenseEnglish.rtf”;InfoAfterFile:“..\..\Inno\l.eng\InfoAfterEnglish.rtf” 名称:“德语”;MessagesFile:“编译器:语言\德语.isl”;LicenseFile:“

我解决了大多数编译警告,并决定尝试现代安装。在安装结束时,我看到了以下页面:

所有语言都有一个指向RTF文件的链接。例如:

名称:“英语”;MessagesFile:“编译器:Default.isl”;许可证文件:“..\..\Inno\l.eng\LicenseEnglish.rtf”;InfoAfterFile:“..\..\Inno\l.eng\InfoAfterEnglish.rtf”
名称:“德语”;MessagesFile:“编译器:语言\德语.isl”;LicenseFile:“..\..\Inno\l.deu\LicenseGerman.rtf”;InfoAfterFile:“..\..\Inno\l.deu\InfoAfterGerman.rtf”
名称:“意大利语”;messages文件:“编译器:Languages\意大利语.isl”;LicenseFile:“..\..\Inno\l.ita\LicenseItalian.rtf”;InfoAfterFile:“..\..\Inno\l.ita\infoafter意大利语.rtf”
名称:“西班牙语”;MessagesFile:“编译器:语言\西班牙语.isl”;LicenseFile:“..\..\Inno\l.esp\LicenseSpanish.rtf”;InfoAfterFile:“..\..\Inno\l.esp\InfoAfterPanish.rtf”
名称:“波兰”;messages文件:“编译器:Languages\Polish.isl”;LicenseFile:“..\..\Inno\l.plk\LicensePolish.rtf”;InfoAfterFile:“..\..\Inno\l.plk\InfoAfterPolish.rtf”
为什么它不起作用

我对剥皮软件进行了注释,结果没有什么不同。使用经典向导也没有。如果我使用版本5并编译和执行:

所以第六版似乎在这里被打破了,因为
InfoAfterFile

示例脚本
您需要使用写字板并创建一个临时RTF文件。或者使用我在评论中输入的ZIP。

我在InnoSetup的官方频道上提出了这个错误


关于这个问题的后续讨论将在那里进行。

这看起来像一个bug,我可以确认这个行为(在IS 5中工作)。请在Github上报告:@Slappy我看不出如何使用我的iPhone使用Github提出问题。@MartinPrikryl我不知道最好的分享方式。这里有一个链接:我还看到了新向导页面剪切文本的其他问题。为什么我不能在GitHub上提出问题?看起来这确实是一个bug。Inno安装团队不接受GitHub上的错误报告。在他们的新闻组上发布:@MartinPrikryl我在新闻组中提交了一条说明。看起来Inno安装程序不接受通过Github发布的问题(没有问题选项卡,也没有创建新问题的按钮)。我不知道在Github上可以做到这一点。很抱歉给您带来不便。正如马丁所说,使用官方新闻组。
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "My Program"
#define MyAppVersion "1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppURL "http://www.example.com/"
#define MyAppExeName "MyProg.exe"

[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{3E02F6B8-8680-4878-9AAE-BBC7B94B56C4}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
CreateAppDir=no
InfoAfterFile=D:\TestDocument.rtf
; Uncomment the following line to run in non administrative install mode (install for current user only.)
;PrivilegesRequired=lowest
PrivilegesRequiredOverridesAllowed=dialog
OutputDir=D:\
OutputBaseFilename=mysetup
Compression=lzma
SolidCompression=yes
WizardStyle=modern

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"