使用静默版本检查更新下载器 -> GUI 样式布局
Update Downloader with silent Version check -> GUI Style Layout
我们的应用程序当前为更新检查和安装配置了“后台更新下载器”。我们在用户社区中使用这种方法存在一些问题,我们正在努力使更新对用户透明。为此,我们正在尝试“使用静默版本检查更新下载器”。
然而,这里有与
中讨论的问题相同或相似的问题
Force update in install4j application
我们要删除 GUI 样式布局中的“取消”按钮。但是,我们可以更改“表单”的内容,但不能更改布局本身。
答案是使用“带进度对话框的无人值守模式”。我的问题是从 GUI 样式移动到“带进度对话框的无人值守模式”会导致不向用户显示对话框(附加),其中 he/she 可以 select 下载目录,显示旧的和新的可用的版本?
My question would be would moving from the GUI Style to "Unattended mode with progress dialog" result in not presenting the user the Dialog (attached) where he/she can select the download directory, show the old and new version that is available?
是的,“带进度对话框的无人值守模式”仅显示进度对话框和 none 个屏幕。
如果您想显示屏幕并隐藏“取消”按钮,可以通过将更新下载器所有屏幕的“Post-activation 脚本”属性 设置为
context.getWizardContext().setControlButtonVisible(ControlButtonType.CANCEL, false);
我们的应用程序当前为更新检查和安装配置了“后台更新下载器”。我们在用户社区中使用这种方法存在一些问题,我们正在努力使更新对用户透明。为此,我们正在尝试“使用静默版本检查更新下载器”。
然而,这里有与
中讨论的问题相同或相似的问题Force update in install4j application
我们要删除 GUI 样式布局中的“取消”按钮。但是,我们可以更改“表单”的内容,但不能更改布局本身。
答案是使用“带进度对话框的无人值守模式”。我的问题是从 GUI 样式移动到“带进度对话框的无人值守模式”会导致不向用户显示对话框(附加),其中 he/she 可以 select 下载目录,显示旧的和新的可用的版本?
My question would be would moving from the GUI Style to "Unattended mode with progress dialog" result in not presenting the user the Dialog (attached) where he/she can select the download directory, show the old and new version that is available?
是的,“带进度对话框的无人值守模式”仅显示进度对话框和 none 个屏幕。
如果您想显示屏幕并隐藏“取消”按钮,可以通过将更新下载器所有屏幕的“Post-activation 脚本”属性 设置为
context.getWizardContext().setControlButtonVisible(ControlButtonType.CANCEL, false);