diff --git a/Scripts/release.py b/Scripts/release.py index d260da1a..fc9e0864 100644 --- a/Scripts/release.py +++ b/Scripts/release.py @@ -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'