no more need for get.gif

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4395 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-11-12 12:31:33 +00:00
parent cd88fd8427
commit 9ffbc3cb03

View file

@ -139,14 +139,6 @@ run(
print 'creating images...'
## create get.gif for website
im = Image.new('L', (140, 50), '#ffffff')
draw = ImageDraw.Draw(im)
font = ImageFont.truetype('verdanab.ttf', 22)
draw.text((9, 10), 'NSIS %s' % VERSION, font = font, fill = '#bebebe')
im.save(r'get.gif')
## create new header.gif for menu
im = Image.new('RGB', (598, 45), '#000000')
@ -297,16 +289,6 @@ upload(ftp, 'nsis-%s-strlen_8192.zip' % VERSION)
ftp.quit()
# upload get.gif
print ' uploading get.gif...'
run(
'%s get.gif %s@nsis.sf.net:/home/groups/n/ns/nsis/htdocs/uploads/pics/get.gif' % (SCP, USER),
'upload',
'uploading get.gif failed'
)
### update some websites...
print 'automatic phase done\n'