Implement configuration import UI and remove deployment profile feature - #343
Open
Schanze97 wants to merge 1 commit into
Open
Implement configuration import UI and remove deployment profile feature#343Schanze97 wants to merge 1 commit into
Schanze97 wants to merge 1 commit into
Conversation
… import, removed deployment profile feature
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant improvements to the configuration profile import system, focusing on enhanced progress reporting, user interface feedback, and simplification of deployment-related code. The changes add granular progress tracking for configuration imports, provide new UI models for step-wise import feedback, and remove legacy deployment defaults and environment-variable-based profile application logic. Additionally, a new setting allows users to restrict package sources to only custom repositories.
Enhancements to configuration profile import and user feedback:
ConfigurationImportProgress,ConfigurationImportStep, andConfigurationImportStatustypes to enable step-wise progress reporting during configuration profile imports.IConfigurationProfileServicewith a newImportAsyncoverload that accepts anIProgress<ConfigurationImportProgress>parameter, allowing UI components to receive real-time updates for each import step.ConfigurationImportStepModelto represent and display the state of each import step in the UI, supporting improved user feedback during profile imports.PackageManagerModuleand related services to use the new progress-reporting import flow and to show a dialog with step-wise progress when importing configuration profiles, both from file and URL sources.Simplification and removal of legacy deployment logic:
OneWareStudio.defaults.jsonand the environment-variable-based profile application mechanism, cleaning up related documentation and code. [1] [2] [3] [4] [5]Package source configuration:
PackageManager_OnlyCustomSources, allowing users to ignore built-in package sources and load packages exclusively from custom sources. [1] [2]Support for profile source kinds:
ConfigurationProfileSourceKindto distinguish between file and URL sources for configuration profiles, improving clarity and extensibility of profile import logic.These changes collectively modernize the configuration import experience, streamline deployment support, and give users more control over package sources.