Compare commits

...
4 Commits
2 changed files with 15 additions and 3 deletions
+12
View File
@@ -5,6 +5,18 @@ OCRmyPDF uses `semantic versioning <http://semver.org/>`_ for its command line i
The OCRmyPDF package itself does not contain a public API, although it is fairly stable and breaking changes are usually timed with a major release. A future release will clearly define the stable public API.
v5.6.3
------
- Suppress two debug messages that were too verbose
v5.6.2
------
- Development branch accidentally tagged as release. Do not use.
v5.6.1
------
+3 -3
View File
@@ -178,7 +178,7 @@ def merge(input_files, output_file, min_version=None, log=None, max_files=None):
n = min(step_size, len(workqueue))
job = workqueue[0:n]
del workqueue[0:n]
print('merging ' + repr(job))
log.debug('merging ' + repr(job))
# Merge them into 1 file, which will contain n^depth pages
merge_file = os.path.join(
@@ -188,7 +188,7 @@ def merge(input_files, output_file, min_version=None, log=None, max_files=None):
# On the next
next_workqueue.append(merge_file)
print('next_workqueue ' + repr(next_workqueue))
log.debug('next_workqueue ' + repr(next_workqueue))
# If we're out of things to do in this queue, move on to the next
# queue. On the counter-th pass of the workqueue we can chew through
@@ -198,6 +198,6 @@ def merge(input_files, output_file, min_version=None, log=None, max_files=None):
workqueue = next_workqueue
next_workqueue = []
re_symlink(workqueue.pop(), output_file)
re_symlink(workqueue.pop(), output_file, log)