changelog

This commit is contained in:
Lu Wang 2013-01-26 14:23:28 +08:00
parent be5186592d
commit 8c09bb056c
3 changed files with 8 additions and 4 deletions

View File

@ -1,8 +1,13 @@
Latest v0.6
Latest v0.7
v0.6
2013.01.26
* new option --no-drm [John Hewson]
* Travis CI integration [John Hewson]
* Add a class for 'left'
* Fixed a bug of hashing/finding GfxRGB
* new option -v, --version [Thanks to John Hewson]
* new option -v, --version [John Hewson]
* Render Type 3 fonts as image
* New parameter: --use-cropbox
* Progress indicator

1
TODO
View File

@ -1,5 +1,4 @@
word space/offset before the first letter (calendar pdf)
add class for "left"
== Future: ==

View File

@ -13,7 +13,7 @@ with open('out.html','w') as outf:
if not f.lower().endswith('.pdf'):
continue
print f
if os.system('pdf2htmlEX --dest-dir html --auto-hint=1 --external-hint-tool="ttfautohint" "%s/%s"' % (DIR,f)) != 0:
if os.system('pdf2htmlEX -l 7 --dest-dir html --auto-hint=1 --external-hint-tool="ttfautohint" "%s/%s"' % (DIR,f)) != 0:
print "error on ", f
sys.exit(-1)