From: jacob Date: Tue, 6 Feb 2007 22:39:15 +0000 (+0000) Subject: `installer.ico' doesn't fit into 8.3, so gets truncated to INSTALLE.ICO in X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/65fdaa9f7ebac5b4316d86516534b1c07e125213 `installer.ico' doesn't fit into 8.3, so gets truncated to INSTALLE.ICO in the Windows source Zips. Rename to `puttyins.ico'. git-svn-id: svn://svn.tartarus.org/sgt/putty@7241 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/icons/Makefile b/icons/Makefile index 373816f3..1074303e 100644 --- a/icons/Makefile +++ b/icons/Makefile @@ -1,6 +1,6 @@ # Makefile for the PuTTY icon suite. -ICONS = putty puttycfg puttygen pscp pageant pterm ptermcfg installer +ICONS = putty puttycfg puttygen pscp pageant pterm ptermcfg puttyins SIZES = 16 32 48 MODE = # override to -it on command line for opaque testing @@ -10,7 +10,7 @@ MONOPNGS = $(foreach I,$(ICONS),$(foreach S,$(SIZES),$(I)-$(S)-mono.png)) TRUEPNGS = $(foreach I,$(ICONS),$(foreach S,$(SIZES),$(I)-$(S)-true.png)) ICOS = putty.ico puttygen.ico pscp.ico pageant.ico pageants.ico puttycfg.ico \ - installer.ico + puttyins.ico CICONS = xpmputty.c xpmpucfg.c xpmpterm.c xpmptcfg.c base: icos cicons @@ -63,11 +63,11 @@ pscp.ico: pscp-16.png pscp-32.png pscp-48.png \ # Because the installer icon makes heavy use of brown when drawing # the cardboard box, it's worth having 8-bit versions of it in # addition to the 4- and 1-bit ones. -installer.ico: installer-16.png installer-32.png installer-48.png \ - installer-16-mono.png installer-32-mono.png \ - installer-48-mono.png \ - installer-16-true.png installer-32-true.png \ - installer-48-true.png +puttyins.ico: puttyins-16.png puttyins-32.png puttyins-48.png \ + puttyins-16-mono.png puttyins-32-mono.png \ + puttyins-48-mono.png \ + puttyins-16-true.png puttyins-32-true.png \ + puttyins-48-true.png ./icon.pl -8 $(filter %-true.png, $^) \ -4 $(filter-out %-true.png, $(filter-out %-mono.png, $^)) \ -1 $(filter %-mono.png, $^) > $@ diff --git a/icons/mkicon.py b/icons/mkicon.py index cf076305..d40a9815 100755 --- a/icons/mkicon.py +++ b/icons/mkicon.py @@ -795,7 +795,7 @@ def puttygen_icon(size): def pscp_icon(size): return xybolt(document(size), computer(size), size) -def installer_icon(size): +def puttyins_icon(size): aret = {} # The box back goes behind the lightning bolt. canvas = xybolt(boxback(size), computer(size), size, boltoffx=-2, boltoffy=+1, aux=aret) diff --git a/windows/putty.iss b/windows/putty.iss index 8c404509..0724b201 100644 --- a/windows/putty.iss +++ b/windows/putty.iss @@ -23,7 +23,7 @@ AppPublisherURL=http://www.chiark.greenend.org.uk/~sgtatham/putty/ AppReadmeFile={app}\README.txt DefaultDirName={pf}\PuTTY DefaultGroupName=PuTTY -SetupIconFile=installer.ico +SetupIconFile=puttyins.ico UninstallDisplayIcon={app}\putty.exe ChangesAssociations=yes ;ChangesEnvironment=yes -- when PATH munging is sorted (probably) diff --git a/windows/installer.ico b/windows/puttyins.ico similarity index 100% rename from windows/installer.ico rename to windows/puttyins.ico