aboutsummaryrefslogtreecommitdiff
path: root/src/libs/dutil (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Support CreateFile with retriesRob Mensching2025-02-112-13/+69
|
* Rename "bundle id" concept to "bundle code"Rob Mensching2024-12-302-49/+50
| | | | | | | The "bundle id" always had more in common with the PackageCode from the Windows Installer. With the introduction of an actual Id attribute on the Bundle element, there is potential for confusion, so there is finally real motivation to rename "bundle id" to "bundle code".
* Fix egregiously bad comments that were frustratingBob Arnson2024-07-152-29/+29
|
* Prevent unnecessary refreshes that move focus.Bob Arnson2024-07-121-6/+9
| | | | | | | | | | | Spillover from having more interactive controls. In WiX v3, showing a page moved the focus as a typical person might expect. When WiX v4 added interactivity, the same code was used to update controls (e.g., when checking a checkbox set a property used in a `VisibleCondition` or `EnableCondition` for another control on the same page). This change prevents the focus-setting behavior if the same page is being shown. Fixes https://github.com/wixtoolset/issues/issues/8144
* Build native code with VC v143 toolset only.Bob Arnson2024-06-101-3/+3
| | | | | | v143 output is compatible back to VS2017 (at least). Fixes https://github.com/wixtoolset/issues/issues/8211.
* Move the BootstrapperApplication out of procRob Mensching2024-03-0611-137/+831
|
* Do not follow junctions when recursively deleting directoriesRob Mensching2024-03-061-4/+4
| | | | | | This will prevent elevated processes from accidentally following a junction from a user-writable directory to a per-machine directory and erroneously deleting the per-machine contents.
* Fix crash when CloseApplications_X64 closes Electron appAndrzej Wojtas2024-01-221-1/+1
|
* Add pipeutil to dutilRob Mensching2024-01-1112-7/+570
| | | | Plus a couple small clean-ups in a couple of dutil files.
* Enhance error message.Bob Arnson2023-12-161-1/+1
|
* Hide visible NetCoreCheck.exe window.Bob Arnson2023-04-041-0/+1
| | | | | | Fixes https://github.com/wixtoolset/issues/issues/7353. Also adds unit test and removes dead code.
* Fix double-free bugs in thmutil.Sean Hall2023-02-191-3/+3
| | | | Fixes 7231
* Some small SAL annotation fixupsRob Mensching2023-02-092-4/+4
|
* Stop Richedit control from scrolling during load.Bob Arnson2023-01-101-1/+1
| | | | Fixes https://github.com/wixtoolset/issues/issues/7113.
* Handle case where TMP isn't REG_EXPAND_SZ.Bob Arnson2022-12-251-0/+5
|
* Use ConsoleWriteW in netcoresearch.exe.Sean Hall2022-12-122-5/+9
|
* Use MSI transaction end result to detect whether reboot is neededNir Bar2022-12-122-4/+7
|
* Add support for UTF-8 console and use it for passing smartcab pathsRob Mensching2022-11-212-161/+283
| | | | Fixes 7024
* Minimize calls into GitInfo by caching results during build_initRob Mensching2022-11-131-1/+0
|
* WIXFEAT-3704 - Allow access to persisted variables from related bundlesJacob Hoover2022-11-102-1/+12
|
* Separate WixInternal content from official WixToolset namespaceRob Mensching2022-11-0818-22/+22
|
* Ensure all published .nupkgs have an iconRob Mensching2022-11-081-2/+4
|
* Update URLs to their redirected onesKaarlo Räihä2022-11-041-1/+1
| | | | To make things a bit more future-proof
* Use HTTPS instead of HTTPKaarlo Räihä2022-11-041-1/+1
| | | | Fix some of these
* Loc files were still using inner text, stop doing thatRob Mensching2022-10-317-6/+183
| | | | Fixes 6970
* Add queutil so Burn can manage its own queue of BA requested actions.Sean Hall2022-10-256-0/+206
| | | | Fixes 6349
* Add Netfx bundle extension and netfx:DotNetCoreSearch.Sean Hall2022-10-102-2/+4
| | | | | | Remove built-in .NET Core packages since they update too quickly. Fixes 6257
* Move WixVersion to new WixToolset.Versioning package in libs segmentRob Mensching2022-10-042-0/+10
| | | | | | | | | | | WixVersion is already used by the Core toolset but could also be useful for bootstrapper applications parsing bundle versions. The WixToolset.Data assembly contains a significant amount of data that bloats its size that bootstrapper applications would never need. Extracting WixVersion to its own assembly makes it much more useable. Fixes 6943
* Fix verutil string comparisonsRob Mensching2022-10-042-2/+2
| | | | | | Invariant string comparisons were finding strings like "abc" to be less than "-abc". Switching to ordinal comparison correctly reports the order.
* Disallow attributes in Billboard/Panel.Bob Arnson2022-09-151-0/+14
| | | | Fixes https://github.com/wixtoolset/issues/issues/6893.
* Add more burn E2E tests.Sean Hall2022-09-151-2/+0
| | | | | | | | Fix bug where first splash screen wasn't closed. Fix bug where billboard only started the first time. Fix bug where the restart status was lost when the exit code was an error. Fix bug where the hash byte array length was compared to the hash string length (string is twice as long). Fix bug where Burn didn't give update hash if the first byte was 0.
* Don't search for 64-bit bundles on 32-bit OS.Sean Hall2022-09-141-3/+12
| | | | Fixes 6849
* Add WixCanRestart and make wixstdba elevate for restart when required.Sean Hall2022-09-033-21/+129
| | | | Fixes 5499
* Delay closing the bundle log so that restart failures will be logged.Sean Hall2022-09-032-5/+53
|
* Move logutil docs into header and standardize inline wrapper methods.Sean Hall2022-09-032-186/+181
|
* Restrict panels to static controls.Bob Arnson2022-08-291-52/+57
| | | | Fixes https://github.com/wixtoolset/issues/issues/6635.
* Process and return the failed version of reboot exit codes in Burn.Sean Hall2022-08-261-0/+8
| | | | | | (ERROR_FAIL_REBOOT_REQUIRED and ERROR_FAIL_REBOOT_INITIATED) Fixes 6762
* Use a dedicated pipe for redirecting logging from the elevated process.Sean Hall2022-08-191-0/+4
| | | | Fixes 6869
* Allow wixstdba special controls to have declarative text.Sean Hall2022-08-102-83/+109
| | | | Fixes 6855
* Use IFileOpenDialog instead of SHBrowseForFolder and GetOpenFileName.Sean Hall2022-08-103-37/+214
| | | | It is the recommended option since Vista and has better long path support.
* Skip logging errors in some places when they are due to missing files or ↵Sean Hall2022-08-0913-233/+286
| | | | | | registry keys or values. Related to 6696
* Implement cabinet spanningRob Mensching2022-08-051-1/+1
| | | | Completes 6368
* Add AppWaitForSingleObject/MultipleObjects, ThreadWaitForCompletion.Sean Hall2022-06-2916-43/+269
|
* Add longPathAware to Burn manifest to support long paths.Sean Hall2022-06-2715-308/+1083
| | | | Fixes 3455
* Add LoadSystemApiSet.Sean Hall2022-06-272-13/+87
|
* Move LoadSystemLibrary and LoadSystemLibraryWithPath into apputil.Sean Hall2022-06-277-105/+137
|
* Require \r\n in ConsoleReadWSean Hall2022-06-271-1/+1
|
* Update some skipped tests to be dynamically skipped.Sean Hall2022-06-151-7/+35
|
* Build and run x64 dutil tests.Sean Hall2022-06-155-74/+76
|
* Make sure base paths are fully qualified in Burn.Sean Hall2022-06-072-0/+29
|