summaryrefslogtreecommitdiffstats
path: root/Tools/msi/bundle
Commit message (Collapse)AuthorAgeFilesLines
* bpo-41526: Fixed layout of final page of the installer (GH-21871)Steve Dower2020-08-132-5/+3
|
* bpo-41412 and bpo-40948: Windows installer updates (GH-21656)Steve Dower2020-07-284-69/+22
| | | | | Prevent installation on Windows 8 and earlier. Download UCRT on demand when required (non-updated Windows 8.1 only) Add reference to py launcher to post-install message
* bpo-41070: Simplify pyshellext.dll build (GH-21037)Nikita Nemkin2020-06-231-0/+5
| | | | | Replace MIDL-generated file with manual GUID definition. Use the same .def file for release and debug builds. Update setup build to support latest toolset
* bpo-38534: Replace wrong KB number references (GH-16955)benedwards142019-10-281-4/+4
|
* bpo-37283: Ensure command-line and unattend.xml setting override previously ↵Steve Dower2019-09-092-8/+25
| | | | detected states in Windows installer (GH-15759)
* bpo-36085: Add installer check for KB2533625 (GH-12636)Steve Dower2019-03-311-4/+26
|
* bpo-34217: Use lowercase for windows headers (GH-8472)Erik Janssens2018-08-161-1/+1
|
* bpo-32507: Change Windows install to include app-local UCRT (#5119)Steve Dower2018-01-093-70/+13
|
* bpo-31944: Fixes build and Modify button (#4278)Steve Dower2017-11-042-3/+4
|
* Issue #28846: Various installer fixesSteve Dower2016-12-031-2/+4
|\
| * Issue #28846: Various installer fixesSteve Dower2016-12-031-2/+4
| |
* | Issue #28110: launcher.msi has different product codes between 32-bit and 64-bitSteve Dower2016-09-172-12/+2
|\ \ | |/
| * Issue #28110: launcher.msi has different product codes between 32-bit and 64-bitSteve Dower2016-09-172-12/+2
| |
* | Issue #25144: Ensures TargetDir is set before continuing with custom install.Steve Dower2016-09-091-0/+3
|\ \ | |/
| * Issue #25144: Ensures TargetDir is set before continuing with custom install.Steve Dower2016-09-091-0/+3
| |
* | Issue #26619: Improves error message when installing on out-of-date Windows ↵Steve Dower2016-09-092-18/+50
|\ \ | |/ | | | | Server
| * Issue #26619: Improves error message when installing on out-of-date Windows ↵Steve Dower2016-09-092-18/+50
| | | | | | | | Server
* | Adds MAX_PATH button to the installer.Steve Dower2016-09-083-89/+76
| |
* | Issue #27756: Adds new icons for Python files and processes on Windows. ↵Steve Dower2016-09-052-1/+1
|/ | | | Designs by Cherry Wang.
* Fixes use of Py_IntDir and Py_OutDir to control build directories.Steve Dower2016-07-161-1/+1
|
* Issue #25715: Python 3.5.1 installer shows wrong upgrade path and incorrect ↵Steve Dower2015-12-025-103/+132
| | | | logic for launcher detection.
* Fixes upload directories for Windows installer.Steve Dower2015-11-231-1/+1
|
* Fixes installer not allowing launcher to be selected.Steve Dower2015-11-091-3/+3
|
* Improves handling of test markers for building Python without intefering ↵Steve Dower2015-10-313-10/+27
| | | | with actual installs.
* Issue #25164: Changes default all-users install directory to match per-user ↵Steve Dower2015-10-143-19/+21
| | | | directory.
* Keeps all-users launcher checkbox visible when the option cannot be changed.Steve Dower2015-10-121-2/+2
|
* Only detects features from previous version when a bundle is found.Steve Dower2015-10-123-3/+16
| | | | | Otherwise, stray registry entries would cause issues. Also fixes an accelerator collision and improves UAC icons when upgrading.
* Issue #25143: Improves installer error messages for unsupported platforms.Steve Dower2015-10-114-1/+44
|
* Issue #25163: Display correct directory in installer when using non-default ↵Steve Dower2015-10-113-24/+38
| | | | settings.
* Issue #25089: Adds logging to installer for case where launcher is not ↵Steve Dower2015-10-081-0/+7
| | | | selected on upgrade.
* Improves support for building unofficial versions of the Windows installer.Steve Dower2015-10-016-22/+61
|
* Issue #25102: Windows installer does not precompile for -O or -OO.Steve Dower2015-09-222-5/+48
|
* Issue #25081: Makes Back button in installer go back to upgrade page when ↵Steve Dower2015-09-221-0/+5
| | | | upgrading.
* Issue #25126: Clarifies that the non-web installer will download some ↵Steve Dower2015-09-221-2/+2
| | | | components.
* Issue #25091: Increases font size of the installer.Steve Dower2015-09-222-80/+80
|
* Merge from 3.5.0Steve Dower2015-09-111-0/+30
|\
| * Issue #25071: Windows installer should not require TargetDir parameter when ↵Steve Dower2015-09-111-0/+30
| | | | | | | | installing quietly
* | Enables building compressed Windows test builds with --pack option.Steve Dower2015-08-151-1/+6
|/
* Issue #24642: Improves help text displayed in the Windows installer.Steve Dower2015-07-181-10/+9
|
* Adds support for an unattend.xml file to control the Windows installer options.Steve Dower2015-07-181-1/+92
|
* Adds option to only install the launcher.Steve Dower2015-07-1812-47/+49
|
* Adds option to install launcher for all users even when installing Python ↵Steve Dower2015-07-166-40/+96
| | | | | | | just-for-me. This helps mitigate issues when the incompatible Python 3.4 launcher is installed. Enables installer builds with the the text marker. Allows simple installs to include a custom description.
* Fixes installer rebuild, snapshot versioning, and the README.txt file.Steve Dower2015-07-092-1/+12
|
* Issue #24585: Enables build-to-build upgrades that preserve settings.Steve Dower2015-07-0914-106/+362
| | | | | | Rather than using Burn "Persisted" variables we now add registry keys for each added feature. These can be detected by the installer regardless of which version installed them, and we use this for Modify and Upgrade. In particular, Upgrades can't access the Persisted variables, but can find well-known registry keys. There are also some changes to the bootstrap app to properly handle upgrades. Finally, a few minor improvements to the Windows build to keep things tidier.
* Closes 24584: Windows installer incorrectly detects CRT version on Windows 10Steve Dower2015-07-081-3/+3
|
* Ignore user environment/site-packages for ensurepip and compile_allSteve Dower2015-07-041-1/+1
| | | | | Remove build condition to prevent old strings hanging around Add -h option to build.bat
* Issue 24476: Statically links vcruntime140.dll and removes it from the installerSteve Dower2015-06-193-22/+0
|
* Issue #24317: Makes Customize page default to installing per-user, and ↵Steve Dower2015-05-312-2/+8
| | | | switching to All Users enable CompileAll.
* Issue #24293: Adds mapping from explicit colours to system colours to ↵Steve Dower2015-05-312-12/+59
| | | | correctly handle user themes.
* Fixes text in installer.Steve Dower2015-05-281-1/+1
|