Issue #4389: Add icon to the uninstall entry in
"add-and-remove-programs".
This commit is contained in:
parent
4f21f985eb
commit
cb6c359a6d
|
@ -89,6 +89,8 @@ Library
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #4389: Add icon to the uninstall entry in "add-and-remove-programs".
|
||||||
|
|
||||||
- Issue #4289: Remove Cancel button from AdvancedDlg.
|
- Issue #4289: Remove Cancel button from AdvancedDlg.
|
||||||
|
|
||||||
- Issue #1656675: Register a drop handler for .py* files on Windows.
|
- Issue #1656675: Register a drop handler for .py* files on Windows.
|
||||||
|
|
|
@ -1248,7 +1248,10 @@ def add_registry(db):
|
||||||
"[TARGETDIR]Doc\\"+docfile , "REGISTRY.doc"),
|
"[TARGETDIR]Doc\\"+docfile , "REGISTRY.doc"),
|
||||||
("Modules", -1, prefix+r"\Modules", "+", None, "REGISTRY"),
|
("Modules", -1, prefix+r"\Modules", "+", None, "REGISTRY"),
|
||||||
("AppPaths", -1, r"Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe",
|
("AppPaths", -1, r"Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe",
|
||||||
"", r"[TARGETDIR]Python.exe", "REGISTRY.def")
|
"", r"[TARGETDIR]Python.exe", "REGISTRY.def"),
|
||||||
|
("DisplayIcon", -1,
|
||||||
|
r"Software\Microsoft\Windows\CurrentVersion\Uninstall\%s" % product_code,
|
||||||
|
"DisplayIcon", "[TARGETDIR]python.exe", "REGISTRY.def")
|
||||||
])
|
])
|
||||||
# Shortcuts, see "Shortcut Table"
|
# Shortcuts, see "Shortcut Table"
|
||||||
add_data(db, "Directory",
|
add_data(db, "Directory",
|
||||||
|
|
Loading…
Reference in New Issue