Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
`installer.ico' doesn't fit into 8.3, so gets truncated to INSTALLE.I…
…CO in

the Windows source Zips. Rename to `puttyins.ico'.

[originally from svn r7241]
  • Loading branch information
jtn20 committed Feb 6, 2007
1 parent 91694cb commit 762f341
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions 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
Expand All @@ -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
Expand Down Expand Up @@ -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, $^) > $@
Expand Down
2 changes: 1 addition & 1 deletion icons/mkicon.py
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion windows/putty.iss
Expand Up @@ -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)
Expand Down
File renamed without changes.

0 comments on commit 762f341

Please sign in to comment.