-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE REQUEST] Reenable appinstaller for web #256
Comments
I think configuration.dart dynamic installerYaml = yaml['app_installer'] ?? YamlMap();
publishFolderPath =
_args['publish-folder-path'] ?? installerYaml['publish_folder_path'];
hoursBetweenUpdateChecks = int.parse(_args['hours-between-update-checks'] ??
installerYaml['hours_between_update_checks']?.toString() ??
'0');
if (hoursBetweenUpdateChecks < 0) hoursBetweenUpdateChecks = 0;
automaticBackgroundTask = _args.wasParsed('automatic-background-task') ||
installerYaml['automatic_background_task']?.toString().toLowerCase() ==
'true';
updateBlocksActivation = _args.wasParsed('update-blocks-activation') ||
installerYaml['update_blocks_activation']?.toString().toLowerCase() ==
'true';
showPrompt = _args.wasParsed('show-prompt') ||
installerYaml['show_prompt']?.toString().toLowerCase() == 'true';
forceUpdateFromAnyVersion =
_args.wasParsed('force-update-from-any-version') ||
installerYaml['force_update_from_any_version']
?.toString()
.toLowerCase() ==
'true'; app_installer.dart
@YehudaKremer is my understanding correct? I need this use case myself and would draft a PR to support arbitrary URI overrides if you think this is a reasonable approach. Thanks in advance - this package has been a lifesaver already |
Hi, Any updates to this topic ? Is appinstaller supported with remote urls ? |
💬 Description
I use successfull appinstaller on Windows 11 and Server 2022 (with a modified proceed from here)
I also installed another apps via appinstaller. Example MSIX Hero
On this blog their is also the following update
Would be nice if the build process generates the
appinstaller
file. With theapp_installer
configuration i get no file. The result should be like:❓ Platform
Window
The text was updated successfully, but these errors were encountered: