diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-21 16:07:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 16:07:13 (GMT) |
commit | 871c6ccf4a883fbc05410284b21e6d668b832f2c (patch) | |
tree | 583b04f6c345441666bce9e288917f8c400387cb | |
parent | fcd776c6c201fa21e2596394bc9da296fb70f630 (diff) | |
download | cpython-871c6ccf4a883fbc05410284b21e6d668b832f2c.zip cpython-871c6ccf4a883fbc05410284b21e6d668b832f2c.tar.gz cpython-871c6ccf4a883fbc05410284b21e6d668b832f2c.tar.bz2 |
bpo-38439: Add 256px IDLE icon to the .ico, drop gifs from it (GH-19648)
(cherry picked from commit faddc7449d07e883b8ad8bb95dd68ce6dbdc06e8)
Co-authored-by: Miro Hrončok <miro@hroncok.cz>
-rw-r--r-- | Lib/idlelib/Icons/README.txt | 4 | ||||
-rw-r--r-- | Lib/idlelib/Icons/idle.ico | bin | 19790 -> 57746 bytes | |||
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2020-04-22-09-37-40.bpo-38439.ieXL-c.rst | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/Lib/idlelib/Icons/README.txt b/Lib/idlelib/Icons/README.txt index 8b47162..d91c4d5 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 Binary files differindex 3357aef..2aa9a83 100644 --- a/Lib/idlelib/Icons/idle.ico +++ b/Lib/idlelib/Icons/idle.ico 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 0000000..d8d5901 --- /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. |