Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c9fda9b9
Kaydet (Commit)
c9fda9b9
authored
Eki 01, 2015
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25165: Windows uninstallation should not remove launcher if other versions remain
üst
c4b7600b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
3 deletions
+16
-3
NEWS
Misc/NEWS
+4
-1
common.wxs
Tools/msi/common.wxs
+4
-2
launcher.wixproj
Tools/msi/launcher/launcher.wixproj
+1
-0
launcher.wxs
Tools/msi/launcher/launcher.wxs
+7
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
c9fda9b9
...
...
@@ -244,7 +244,10 @@ Build
Windows
-------
- Issues #25112: py.exe launcher is missing icons
- Issue #25165: Windows uninstallation should not remove launcher if other
versions remain
- Issue #25112: py.exe launcher is missing icons
- Issue #25102: Windows installer does not precompile for -O or -OO.
...
...
Tools/msi/common.wxs
Dosyayı görüntüle @
c9fda9b9
...
...
@@ -22,17 +22,19 @@
</Upgrade>
<?if $(var.UpgradeCode)!=$(var.CoreUpgradeCode) ?>
<?ifndef SkipMissingCore ?>
<Upgrade
Id=
"$(var.CoreUpgradeCode)"
>
<UpgradeVersion
Property=
"MISSING_CORE"
Minimum=
"$(var.Version)"
IncludeMinimum=
"yes"
Maximum=
"$(var.Version)"
IncludeMaximum=
"yes"
OnlyDetect=
"yes"
/>
</Upgrade>
<Condition
Message=
"!(loc.IncorrectCore)"
>
Installed OR NOT MISSING_CORE
</Condition>
<?endif ?>
<?endif ?>
<Condition
Message=
"!(loc.NoDowngrade)"
>
Installed OR NOT DOWNGRADE
</Condition>
<Condition
Message=
"!(loc.IncorrectCore)"
>
Installed OR NOT MISSING_CORE
</Condition>
<Condition
Message=
"!(loc.NoTargetDir)"
>
Installed OR TARGETDIR OR Suppress_TARGETDIR_Check
</Condition>
<InstallExecuteSequence>
<RemoveExistingProducts
After=
"InstallInitialize"
>
UPGRADE
</RemoveExistingProducts>
<RemoveExistingProducts
After=
"InstallInitialize"
Overridable=
"yes"
>
UPGRADE
</RemoveExistingProducts>
</InstallExecuteSequence>
</Fragment>
...
...
Tools/msi/launcher/launcher.wixproj
Dosyayı görüntüle @
c9fda9b9
...
...
@@ -5,6 +5,7 @@
<SchemaVersion>
2.0
</SchemaVersion>
<OutputName>
launcher
</OutputName>
<OutputType>
Package
</OutputType>
<DefineConstants>
SkipMissingCore=1;$(DefineConstants)
</DefineConstants>
</PropertyGroup>
<Import
Project=
"..\msi.props"
/>
<ItemGroup>
...
...
Tools/msi/launcher/launcher.wxs
Dosyayı görüntüle @
c9fda9b9
...
...
@@ -26,6 +26,13 @@
<InstallExecuteSequence>
<Custom
Before=
"SetLauncherInstallDirectoryLM"
Action=
"SetLauncherInstallDirectoryCU"
>
NOT Installed AND NOT ALLUSERS=1
</Custom>
<Custom
Before=
"CostFinalize"
Action=
"SetLauncherInstallDirectoryLM"
>
NOT Installed AND ALLUSERS=1
</Custom>
<RemoveExistingProducts
After=
"InstallInitialize"
>
UPGRADE or REMOVE_OLD_LAUNCHER
</RemoveExistingProducts>
</InstallExecuteSequence>
<!-- Python 3.5.0 shipped with an incorrect UpgradeCode -->
<Upgrade
Id=
"A71530B9-E89D-53DB-9C2D-C6D7551876D8"
>
<UpgradeVersion
Maximum=
"$(var.Version)"
Property=
"REMOVE_OLD_LAUNCHER"
/>
</Upgrade>
</Product>
</Wix>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment