Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Integrate new build scripts with signing support | Rob Mensching | 2021-04-29 | 16 | -57/+307 |
| | |||||
* | Migrate Burn API headers to balutil repository | Rob Mensching | 2021-04-29 | 14 | -2214/+42 |
| | |||||
* | Let BA override the package's cache type during Plan. | Sean Hall | 2021-04-29 | 16 | -102/+117 |
| | | | | | | | | Rename cache types to REMOVE, KEEP, FORCE. Change implementation of FORCE to not be through CACHED request state. Create package condition enum so BA can tell when InstallCondition wasn't specified. Tell BA when package is cached. Tell BA when package is planned to be cached and uncached. | ||||
* | size_t-ify BootstrapperEngine.h and BundleExtensionEngine.h | Sean Hall | 2021-04-29 | 6 | -21/+21 |
| | |||||
* | Clean up 32-bit assumptions. | Sean Hall | 2021-04-29 | 17 | -164/+139 |
| | |||||
* | Set source of attached containers to WixBundleOriginalSource if set. | Sean Hall | 2021-04-25 | 2 | -5/+72 |
| | | | | | | Use file size when probing local files. #5586 | ||||
* | Add support for downloading embedded payloads. | Sean Hall | 2021-04-25 | 4 | -22/+21 |
| | | | | #5253 | ||||
* | Share code to map stream name to payload when extracting containers. | Sean Hall | 2021-04-25 | 4 | -52/+20 |
| | |||||
* | DOWNLOAD is not a valid packaging value. | Sean Hall | 2021-04-25 | 2 | -11/+3 |
| | |||||
* | UX payloads are never external, part 2. | Sean Hall | 2021-04-25 | 4 | -35/+5 |
| | |||||
* | For payloads in a container, prefer the container over local paths. | Sean Hall | 2021-04-25 | 3 | -11/+43 |
| | | | | | | Still consider the destination path to avoid extracting the container for every payload. #3640 | ||||
* | Allow setting source from OnCacheAcquireResolving. | Sean Hall | 2021-04-19 | 6 | -43/+92 |
| | |||||
* | Clean up caching log messages. | Sean Hall | 2021-04-19 | 2 | -18/+25 |
| | |||||
* | Send more progress during cache verification. | Sean Hall | 2021-04-19 | 11 | -148/+712 |
| | | | | | Add verifyStep to OnCacheVerifyProgress. Send OnContainerOrPayloadVerify events only if file existed in cache. | ||||
* | Make sure OnCache*Begin events always pair with their complete event. | Sean Hall | 2021-04-19 | 1 | -36/+85 |
| | |||||
* | Perform all layout operations in the BA process. | Sean Hall | 2021-04-19 | 3 | -217/+45 |
| | |||||
* | Add OnCachePayloadExtract*. | Sean Hall | 2021-04-19 | 6 | -4/+207 |
| | |||||
* | When extracting a container use the uncompressed file size for progress | Sean Hall | 2021-04-19 | 4 | -10/+33 |
| | | | | | Remove the container's cache progress when reextracting Skip extracting payloads that are already cached | ||||
* | Remove the package's cache progress when retrying the whole package. | Sean Hall | 2021-04-19 | 3 | -30/+47 |
| | |||||
* | Add BURN_PAYLOAD_GROUP_ITEM to be able to move payloads during caching. | Sean Hall | 2021-04-19 | 12 | -50/+98 |
| | |||||
* | Elevate for CacheVerifyContainer/Payload. | Sean Hall | 2021-04-19 | 5 | -31/+209 |
| | |||||
* | Add OnCacheContainerOrPayloadVerify* for a file already in the cache. | Sean Hall | 2021-04-19 | 4 | -9/+227 |
| | |||||
* | UX payloads are never external. | Sean Hall | 2021-04-19 | 7 | -32/+11 |
| | |||||
* | Add OnCacheVerifyProgress, though currently it only reports at the end. | Sean Hall | 2021-04-19 | 4 | -33/+118 |
| | |||||
* | Make sure payload unverified path is not read-only during acquisition. | Sean Hall | 2021-04-19 | 1 | -24/+37 |
| | |||||
* | Track progress of bundle being laid out. | Sean Hall | 2021-04-19 | 1 | -6/+25 |
| | |||||
* | Always send OnCacheAcquireProgress at least once per payload. | Sean Hall | 2021-04-19 | 3 | -161/+185 |
| | | | | | Always send OnCacheAcquireProgress between OnCacheAcquireBegin and OnCacheAcquireComplete. Track the successful cache acquisition progress during the final progress call. | ||||
* | Only set the last used folder if the target passed verification. | Sean Hall | 2021-04-19 | 1 | -6/+31 |
| | |||||
* | Replace OnResolveSource with OnCacheAcquireResolving | Sean Hall | 2021-04-19 | 8 | -331/+413 |
| | | | | | | | Inactivate the engine during OnCacheAcquireBegin and Complete to allow setting the source from there. Fixes #3640 Contributes to #5253 | ||||
* | Verify file in the cache before trying to acquire it. | Sean Hall | 2021-04-19 | 5 | -9/+116 |
| | |||||
* | Don't plan payloads. | Sean Hall | 2021-04-19 | 24 | -1580/+718 |
| | | | | Contributes to #3640 and #5253 | ||||
* | Detect whether the bundle is cached. | Sean Hall | 2021-04-19 | 9 | -11/+17 |
| | |||||
* | Detect a package as cached if any of its payloads exist. | Sean Hall | 2021-04-19 | 23 | -171/+111 |
| | | | | | | Detect is supposed to be fast, so it can't fully verify every payload for every package. The engine was wasting its time by trying to verify file sizes without the hash. Even worse, it was making decisions during planning based on that insufficient verification. Contributes to #3640 | ||||
* | Allow BA to update feed source | Rob Mensching | 2021-04-14 | 6 | -2/+77 |
| | | | | Fixes wixtoolset/issues#5568 | ||||
* | Add MEND request state to repair any missing files in MSI packages | Rob Mensching | 2021-04-14 | 4 | -6/+23 |
| | |||||
* | Layout using the source engine handle | Rob Mensching | 2021-04-14 | 7 | -17/+49 |
| | |||||
* | Detect system MSI packages before user managed packages | Rob Mensching | 2021-04-14 | 1 | -6/+6 |
| | |||||
* | Avoid activating the engine's windows | Rob Mensching | 2021-04-14 | 2 | -2/+4 |
| | |||||
* | Enhanced reboot pending detection | Rob Mensching | 2021-04-14 | 2 | -1/+69 |
| | |||||
* | Port support for ISO/IEC 19770-2:2105 (aka SWID Tags-2) | Rob Mensching | 2021-04-14 | 12 | -51/+61 |
| | | | | Fixes wixtoolset/issues#8380 | ||||
* | Skip bundle dependent checking when ignoring dependencies includes ALL. | Sean Hall | 2021-03-30 | 4 | -49/+62 |
| | | | | Fixes #6391. | ||||
* | Rename cache types in the manifest to remove, keep, force. | Sean Hall | 2021-03-30 | 10 | -15/+15 |
| | | | | Contributes to #5125 | ||||
* | Include bundle reboot-pending in RebootPending variable. | Bob Arnson | 2021-03-28 | 4 | -54/+163 |
| | | | | Fixes https://github.com/wixtoolset/issues/issues/5332 | ||||
* | Use wiutil to start/end msi transactions | Nir Bar | 2021-03-17 | 10 | -81/+163 |
| | | | | | | Release MSI transaction handles immediately contributes to #5386 | ||||
* | Handle when related bundles have an uninstall key but aren't cached. | Sean Hall | 2021-03-11 | 14 | -34/+188 |
| | | | | #4991 | ||||
* | Determine whether to ignore forward compatible bundles during Plan. | Sean Hall | 2021-03-11 | 12 | -110/+200 |
| | |||||
* | Ensure bundle is registered and cached when modifying machine state. | Sean Hall | 2021-03-09 | 1 | -20/+13 |
| | | | | #5702 | ||||
* | Consider the bundle as eligible for cleanup if running from the cache. | Sean Hall | 2021-03-09 | 1 | -1/+1 |
| | |||||
* | Correctly handle missing/null values with ~<> operator. | Bob Arnson | 2021-03-07 | 2 | -1/+4 |
| | | | | | | (That's case-insensitive non-equal.) Fixes https://github.com/wixtoolset/issues/issues/5372 | ||||
* | Use SHA512 instead of SHA1. | Sean Hall | 2021-03-02 | 9 | -15/+17 |
| | | | | #3992 |