summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-20 17:17:17 (GMT)
committerGitHub <noreply@github.com>2020-10-20 17:17:17 (GMT)
commit333782a3f40baf8bb916da4b5fc04b3d2a749e0c (patch)
tree8cc8133b5fdfdc7ca5ec567f48c5ffd48172dcc3 /PC
parenta797fd74fe11ef5968b8593b0d39b6aa6ba5aef1 (diff)
downloadcpython-333782a3f40baf8bb916da4b5fc04b3d2a749e0c.zip
cpython-333782a3f40baf8bb916da4b5fc04b3d2a749e0c.tar.gz
cpython-333782a3f40baf8bb916da4b5fc04b3d2a749e0c.tar.bz2
bpo-38439: Update the Windows Store package's icons for IDLE. Artwork by Andrew Clover (GH-22817)
(cherry picked from commit 6d883fbe14751b58d9ed2fd708322613d8931035) Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'PC')
-rw-r--r--PC/icons/idlex150.pngbin0 -> 20537 bytes
-rw-r--r--PC/icons/idlex44.pngbin0 -> 3473 bytes
-rw-r--r--PC/layout/support/appxmanifest.py9
3 files changed, 7 insertions, 2 deletions
diff --git a/PC/icons/idlex150.png b/PC/icons/idlex150.png
new file mode 100644
index 0000000..806cb0c
--- /dev/null
+++ b/PC/icons/idlex150.png
Binary files differ
diff --git a/PC/icons/idlex44.png b/PC/icons/idlex44.png
new file mode 100644
index 0000000..3ef66e6
--- /dev/null
+++ b/PC/icons/idlex44.png
Binary files differ
diff --git a/PC/layout/support/appxmanifest.py b/PC/layout/support/appxmanifest.py
index 9a7439d..747c97a 100644
--- a/PC/layout/support/appxmanifest.py
+++ b/PC/layout/support/appxmanifest.py
@@ -67,8 +67,8 @@ PIP_VE_DATA = dict(
IDLE_VE_DATA = dict(
DisplayName="IDLE (Python {})".format(VER_DOT),
Description="IDLE editor for Python {}".format(VER_DOT),
- Square150x150Logo="_resources/pythonwx150.png",
- Square44x44Logo="_resources/pythonwx44.png",
+ Square150x150Logo="_resources/idlex150.png",
+ Square44x44Logo="_resources/idlex44.png",
BackgroundColor="transparent",
)
@@ -498,6 +498,11 @@ def get_appx_layout(ns):
src = icons / "pythonwx{}.png".format(px)
yield f"_resources/pythonwx{px}.png", src
yield f"_resources/pythonwx{px}$targetsize-{px}_altform-unplated.png", src
+ if ns.include_idle and ns.include_launchers:
+ for px in [44, 150]:
+ src = icons / "idlex{}.png".format(px)
+ yield f"_resources/idlex{px}.png", src
+ yield f"_resources/idlex{px}$targetsize-{px}_altform-unplated.png", src
yield f"_resources/py.png", icons / "py.png"
sccd = ns.source / SCCD_FILENAME
if sccd.is_file():