Sync to trunk.

This commit is contained in:
John Schember 2009-10-10 16:32:23 -04:00
commit 4bad3508fe
5 changed files with 330 additions and 320 deletions

View File

@ -90,7 +90,7 @@ class UploadInstallers(Command):
def run(self, opts):
self.info('Uploading installers...')
installers = list(map(installer_name, ('dmg', 'exe', 'tar.bz2')))
installers = list(map(installer_name, ('dmg', 'msi', 'tar.bz2')))
installers.append(installer_name('tar.bz2', is64bit=True))
map(self.upload_installer, installers)

View File

@ -2,7 +2,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = 'calibre'
__version__ = '0.6.16'
__version__ = '0.6.17'
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
import re

View File

@ -36,8 +36,8 @@ class JETBOOK(USBMS):
WINDOWS_MAIN_MEM = 'EBOOK'
WINDOWS_CARD_A_MEM = 'EBOOK'
OSX_MAIN_MEM = None
OSX_CARD_A_MEM = None
OSX_MAIN_MEM = 'Linux ebook Media'
OSX_CARD_A_MEM = 'Linux ebook Media'
MAIN_MEMORY_VOLUME_LABEL = 'Jetbook Main Memory'
STORAGE_CARD_VOLUME_LABEL = 'Jetbook Storage Card'

View File

@ -141,7 +141,7 @@ else:
def windows(self, req):
version = self.version_from_filename()
file = '%s-%s.exe'%(__appname__, version,)
file = '%s-%s.msi'%(__appname__, version,)
data = dict(version = version, name='windows',
installer_name='Windows installer',
title='Download %s for windows'%(__appname__),

File diff suppressed because it is too large Load Diff