-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dev to Main: Refactor script for dynamic settings, registry and oscdi…
…mg.exe fix (#12) Refactor script for dynamic settings and registry fix - Created wimutil-settings.json to store config for the project. - Added dynamic loading of settings from wimutil-settings.json. - Integrated branch-based configuration with fallback to default branch. - Removed oscdimg.exe signing date function and only check hash value. - Fixed GUI loading issue by setting the Internet Explorer "DisableFirstRunCustomize" registry entry at script start. - Added configurl for main and dev branches and comment out the one not being used. (needs more work) - Detect branch from configurl rather than scripturl - Update README with new latest version - Removed " " white space in launch command.
- Loading branch information
1 parent
301cb29
commit 96e6006
Showing
3 changed files
with
110 additions
and
98 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"main": { | ||
"xamlUrl": "https://github.com/memstechtips/WIMUtil/raw/main/xaml/WIMUtilGUI.xaml", | ||
"oscdimgURL": "https://github.com/memstechtips/WIMUtil/raw/main/assets/executables/oscdimg.exe", | ||
"expectedHash": "CACD23ABCD1E1B791F6280D7D86270FF8D4144728FF611033BAF5599D883731B" | ||
}, | ||
"dev": { | ||
"xamlUrl": "https://github.com/memstechtips/WIMUtil/raw/dev/xaml/WIMUtilGUI.xaml", | ||
"oscdimgURL": "https://github.com/memstechtips/WIMUtil/raw/dev/assets/executables/oscdimg.exe", | ||
"expectedHash": "CACD23ABCD1E1B791F6280D7D86270FF8D4144728FF611033BAF5599D883731B" | ||
}, | ||
"defaultBranch": "main" | ||
} |
This file contains 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