summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiro Hrončok <miro@hroncok.cz>2020-10-20 14:21:08 +0200
committerGitHub <noreply@github.com>2020-10-20 13:21:08 +0100
commitfaddc7449d07e883b8ad8bb95dd68ce6dbdc06e8 (patch)
tree82bf0227574d9cae371403c7118f3cc466f4ff81
parentff1ae3dd334faa2006394c2318db385cdc42030a (diff)
downloadcpython-git-faddc7449d07e883b8ad8bb95dd68ce6dbdc06e8.tar.gz
bpo-38439: Add 256px IDLE icon to the .ico, drop gifs from it (GH-19648)
-rw-r--r--Lib/idlelib/Icons/README.txt4
-rw-r--r--Lib/idlelib/Icons/idle.icobin19790 -> 57746 bytes
-rw-r--r--Misc/NEWS.d/next/IDLE/2020-04-22-09-37-40.bpo-38439.ieXL-c.rst2
3 files changed, 6 insertions, 0 deletions
diff --git a/Lib/idlelib/Icons/README.txt b/Lib/idlelib/Icons/README.txt
index 8b471629ec..d91c4d5d8d 100644
--- a/Lib/idlelib/Icons/README.txt
+++ b/Lib/idlelib/Icons/README.txt
@@ -7,3 +7,7 @@ https://www.doxdesk.com/software/py/pyicons.html
Various different formats and sizes are available at this GitHub Pull Request:
https://github.com/python/cpython/pull/17473
+
+The idle.ico file was created with ImageMagick:
+
+ $ convert idle_16.png idle_32.png idle_48.png idle_256.png idle.ico
diff --git a/Lib/idlelib/Icons/idle.ico b/Lib/idlelib/Icons/idle.ico
index 3357aef148..2aa9a8300d 100644
--- a/Lib/idlelib/Icons/idle.ico
+++ b/Lib/idlelib/Icons/idle.ico
Binary files differ
diff --git a/Misc/NEWS.d/next/IDLE/2020-04-22-09-37-40.bpo-38439.ieXL-c.rst b/Misc/NEWS.d/next/IDLE/2020-04-22-09-37-40.bpo-38439.ieXL-c.rst
new file mode 100644
index 0000000000..d8d59015f2
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2020-04-22-09-37-40.bpo-38439.ieXL-c.rst
@@ -0,0 +1,2 @@
+Add a 256×256 pixel IDLE icon to the Windows .ico file. Created by Andrew
+Clover. Remove the low-color gif variations from the .ico file.