diff --git a/docsplit.gemspec b/docsplit.gemspec index 388b471..eb47e90 100755 --- a/docsplit.gemspec +++ b/docsplit.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'docsplit' - s.version = '0.5.2' # Keep version in sync with docsplit.rb - s.date = '2011-05-13' + s.version = '0.6.0' # Keep version in sync with docsplit.rb + s.date = '2011-09-13' s.homepage = "http://documentcloud.github.com/docsplit/" s.summary = "Break Apart Documents into Images, Text, Pages and PDFs" diff --git a/index.html b/index.html index c8fb2c3..734d6a8 100755 --- a/index.html +++ b/index.html @@ -98,7 +98,7 @@

Docsplit

(title, author, number of pages...)

-

Docsplit is currently at version 0.5.1.

+

Docsplit is currently at version 0.6.0.

Docsplit is an open-source component of DocumentCloud. @@ -277,6 +277,19 @@

Internals

Change Log

+

+ 0.6.0 – Sept. 13, 2011
+ Docsplit should now handle shelling out for documents with arbitrary + characters in their filenames correctly, thanks to a series of + epic patches from Vladimir Rybas. + A --density option was added for specifying the resolution of + rasterization when generating images from documents. + The image resolution for OCR has been doubled from 200 to 400 DPI — + this shouldn't make a noticeable difference for normal docs, but will make + a world of difference for the fine print. + Docsplit now uses GraphicsMagick's --despeckle before OCR. +

+

0.5.2 – May 13, 2011
For transparent conversion to PDF, made Docsplit prefer GraphicsMagick diff --git a/lib/docsplit.rb b/lib/docsplit.rb index ecd9b8d..17220d0 100755 --- a/lib/docsplit.rb +++ b/lib/docsplit.rb @@ -1,7 +1,7 @@ # The Docsplit module delegates to the Java PDF extractors. module Docsplit - VERSION = '0.5.2' # Keep in sync with gemspec. + VERSION = '0.6.0' # Keep in sync with gemspec. ROOT = File.expand_path(File.dirname(__FILE__) + '/..')