Skip to content

Commit

Permalink
Version bump: 0.9m06
Browse files Browse the repository at this point in the history
  • Loading branch information
trufanov-nok committed Oct 8, 2021
1 parent 86847f6 commit 03ac4ac
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 4 deletions.
13 changes: 13 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
---
0.9m06
---
Use DjVuLibre's connected components detection algorithm as old contour walking
approach sometimes failed to detect characters in table rects.
Enforce lossless classification for the not-a-letter elements. Now pieces of the
graphics, like table lines, may be losslessly compressed in shared dictionary.
Empty Sjbz chunk is not saved for empty pages anymore.
bugfix: now images with same basename (but different paths) may be used in
one bundled document. Their chunk ids (constructed from basename by default)
are ensured to be unique. Settings file may be used to control page chunk id
of the corresponding image.

---
0.9m05
---
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.67])
AC_INIT([minidjvu-mod],[0.9m05],[[email protected]],,[https://github.com/trufanov-nok/minidjvu_mod/])
AC_INIT([minidjvu-mod],[0.9m06],[[email protected]],,[https://github.com/trufanov-nok/minidjvu_mod/])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_HEADER(config.h:config/config.h.in)
AC_CONFIG_MACRO_DIR([m4])
Expand Down
16 changes: 16 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
minidjvu-mod (0.9m06) bionic; urgency=medium

* Replace counter walking components detection with
a more accurate DjVuLibre's connected-components
approach.
* Not a letter elements are now may be losslessly
encoded is a shared dictionary.
* Ensure all input files produce the pages with unique
chunk ids. Old version may generate malformed
bundled document if same file is encoded twice or
images with same basename (but different paths) are
encoded. Page chunk id now may be controlled in the
settings file.

-- Alexander Trufanov <[email protected]> Fri, 8 Oct 2021 18:40:00 +0300

minidjvu-mod (0.9m05) bionic; urgency=medium

* Replace classifier with a more accurate version
Expand Down
2 changes: 1 addition & 1 deletion include/minidjvu-mod/base/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This is the version of the headers.
*/
#define MDJVU_VERSION "0.9m05"
#define MDJVU_VERSION "0.9m06"

/*
* This function returns the compile-time version stamp.
Expand Down
4 changes: 2 additions & 2 deletions src/windows/minidjvu.nsi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
!include "MUI.nsh"

;Name and file
Name "Minidjvu 0.9m05"
OutFile "minidjvu-mod-0.9m05.exe"
Name "Minidjvu 0.9m06"
OutFile "minidjvu-mod-0.9m06.exe"

;Default installation folder
InstallDir "$PROGRAMFILES\minidjvu-mod"
Expand Down

0 comments on commit 03ac4ac

Please sign in to comment.