]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38439: Add 256px IDLE icon to the .ico, drop gifs from it (GH-19648)
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 20 Oct 2020 17:17:31 +0000 (10:17 -0700)
committerGitHub <noreply@github.com>
Tue, 20 Oct 2020 17:17:31 +0000 (10:17 -0700)
(cherry picked from commit faddc7449d07e883b8ad8bb95dd68ce6dbdc06e8)

Co-authored-by: Miro Hrončok <miro@hroncok.cz>
Lib/idlelib/Icons/README.txt
Lib/idlelib/Icons/idle.ico
Misc/NEWS.d/next/IDLE/2020-04-22-09-37-40.bpo-38439.ieXL-c.rst [new file with mode: 0644]

index 8b471629ecb3ea1f96e233ec2d44330da9499ca6..d91c4d5d8d8cfa20b4994de21605b48f47ba430f 100644 (file)
@@ -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
index 3357aef14888c501bcd7bfe02393760306a18d06..2aa9a8300d9e29670ecbe585f5ab21579dece9c2 100644 (file)
Binary files a/Lib/idlelib/Icons/idle.ico and b/Lib/idlelib/Icons/idle.ico 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 (file)
index 0000000..d8d5901
--- /dev/null
@@ -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.