CHANGES 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. List of changes in MuPDF 1.11
  2. * This is primarily a bug fix release.
  3. * Split Android and iOS viewers into separate projects:
  4. * mupdf-viewer-ios.git has the iOS viewer.
  5. * mupdf-viewer-android-old.git has the Android viewer.
  6. * mupdf-viewer-android-nui.git has a new advanced Android viewer.
  7. * mupdf-viewer-android-mini.git has a new minimalist Android viewer.
  8. * PDF portfolio support with command line tool "mutool portfolio".
  9. * Add callbacks to load fallback fonts from the system.
  10. * Use system fonts in Android to reduce install size.
  11. * Flag to disable publisher styles in EPUB layout.
  12. * Improved SVG output.
  13. List of changes in MuPDF 1.10
  14. * Headline changes:
  15. * FictionBook (FB2) e-book support.
  16. * Simple SVG parser (a small subset of SVG only).
  17. * mutool convert: a new document conversion tool and interface.
  18. * Multi-threaded rendering in mudraw.
  19. * Luratech decoders for JBIG2 and JPEG2000 (commercial releases only).
  20. * Optional JPEG-XR support (not included by default for security reasons).
  21. * Updated base 14 fonts from URW.
  22. * New CJK font with language specific variants.
  23. * Hyperlink support in EPUB.
  24. * Reduced memory use:
  25. * New tool muraster: example printer driver with limited RAM usage and automatic banding.
  26. * Alpha channel is now optional in pixmaps.
  27. * More aggressive purging of cached objects.
  28. * Partial image decoding for lower memory use when banding.
  29. * Reduced code size when building with a subset of features:
  30. * Reduced default set of built-in CMap tables to the minimum required.
  31. * FZ_ENABLE_PDF, _XPS, _JS, to disable features at compile time.
  32. * Function level linking.
  33. * Interface changes and cleanups:
  34. * Dropped pdf object generation numbers from public interfaces.
  35. * Simplified PDF page, xobject, and annotation internals.
  36. * Closing and freeing devices and writers are now separate steps.
  37. * Improved PDF annotation editing interface (still a work in progress).
  38. * Document writer interface.
  39. * Banded image writer interface.
  40. * Mobile viewers:
  41. * New JNI interfaces to match capabilities of 'mutool run' javascript.
  42. * New android and desktop java examples using new JNI interface.
  43. List of changes in MuPDF 1.9
  44. * Headline changes:
  45. * New command line tools: create and run.
  46. * New low-level Java interface for desktop and android.
  47. * Bidirectional layout for Arabic and Hebrew scripts.
  48. * Shaping complex scripts for EPUB text layout.
  49. * Noto fallback fonts for EPUB layout.
  50. * mutool create
  51. Create new PDF files from scratch.
  52. Read an annotated content stream in a text file and write a PDF file,
  53. automatically embedding font and image resources.
  54. * mutool run
  55. Run javascript scripts with MuPDF bindings.
  56. The interface is similar to the new Java interface.
  57. * mutool draw
  58. Optional multi-threaded operation (Windows and pthreads).
  59. Optional low memory mode (primarily for testing).
  60. List of changes in MuPDF 1.8
  61. * Headline changes:
  62. * New OpenGL-based barebones desktop viewer.
  63. * New URW fonts with greek and cyrillic.
  64. * 64-bit file support.
  65. * Ghostscript proofing mode (source only; not in shipped binaries).
  66. * EPUB improvements:
  67. * User style sheets.
  68. * GIF images (also for CBZ).
  69. * Table of contents.
  70. * CJK text.
  71. * Page margins.
  72. * Many bug fixes.
  73. * Bug fixes:
  74. * Updated FreeType to version 2.6.1.
  75. * Various font substitution bug fixes.
  76. * Fix setjmp/longjmp behaviour which could cause optimizing compilers to misbehave.
  77. List of changes in MuPDF 1.7a
  78. * Bugfixes
  79. * Fixed bug that allocated too much memory when packing paths.
  80. * Fixed EPUB font scaling bug.
  81. * Fixed EPUB file type handling in viewers.
  82. * Improved tolerance for broken and unsupported CSS.
  83. * Features
  84. * Added mudraw -z option to compress output streams.
  85. List of changes in MuPDF 1.7
  86. * Headline changes:
  87. * New 'Indie dev' licensing options - contact sales@artifex.com for more details.
  88. * New HTML layout engine, and (DRM-free) EPUB viewer.
  89. * Reduced memory usage - displaylists and internal PDF representation take much less memory, reducing total memory use on some files by over 60%.
  90. * Important API changes:
  91. * Bound contexts have been removed; we now pass fz_contexts explicitly.
  92. * Reference counting of paths and text structures.
  93. * Features:
  94. * Add mutool pages option.
  95. * Tweaked rendering to prevent feature dropout in common cases.
  96. * Viewer tweaks
  97. * Better mouse wheel handling
  98. * Shift-space support
  99. * Mouse button control of presentation mode
  100. * Internal changes:
  101. * Removal of bound contexts; fz_contexts now passed explicitly everywhere.
  102. * PDF filter revamp - simpler interface.
  103. * Devices use derived structures rather than user pointer.
  104. * Sparse PDF xrefs held in more compact form.
  105. * New gsview viewer split out to its own repository.
  106. * Bug fixes
  107. * Improved handling of broken files.
  108. * Fix BBoxes of Type 3 fonts.
  109. * Updated fonts (including greek and cyrillic).
  110. * Various memory leaks and crashes.
  111. * And many more.
  112. List of changes in MuPDF 1.6
  113. * Features:
  114. * Color detection device (mudraw -T).
  115. * Sepia mode full-page color tinting in X11 and win32 viewer (keybinding: shift-C).
  116. * Re-implement printf and strtod due to portability issue with locales and number formatting.
  117. * Add 'gsview' project: a Windows Modern UI viewer.
  118. * Improve XML parser interface.
  119. * Bug fixes:
  120. * CBZ page ordering
  121. * ZIP64 support
  122. * iOS and Android bug fixes
  123. * Miscellaneous minor fixes
  124. List of changes in MuPDF 1.5
  125. * Bug fixes.
  126. List of changes in MuPDF 1.4
  127. * Headline changes:
  128. * CMYK rendering (mudraw PWG and PAM formats)
  129. * TIFF viewer (with multi-page support).
  130. * Added MuJS Javascript interpreter.
  131. * MuJS is the default, V8 and JavaScriptCore are compile time options.
  132. * Javascript support has to be explicitly enabled with pdf_enable_js.
  133. * All viewers now have JavaScript enabled in the default builds.
  134. * Viewers:
  135. * X11: Horizontal scroll wheel support.
  136. * X11: Status bar display with warnings.
  137. * Android: Digital signatures.
  138. * iOS: Links, form filling, annotation editing, and javascript.
  139. * iOS: Reflow mode.
  140. * WinRT: Printing.
  141. * WinRT: Improved zooming behaviour.
  142. * Tools:
  143. * mudraw: Banded rendering with -B /band-height/.
  144. * mudraw: Select output format with -F /format/.
  145. * mudraw: Write to stdout if you use '-' as the output file name.
  146. * mudraw: Add TGA output format.
  147. * mudraw: Improved SVG output.
  148. * mutool show: Write output to file instead of stdout with -o /filename/.
  149. * mutool clean: Clean content streams with -s option.
  150. * Annotations:
  151. * Improved font handling.
  152. * Form fields.
  153. * Free text.
  154. * Sticky notes.
  155. * Optimizations:
  156. * glyph cache: Partial eviction.
  157. * glyph cache: Run-length compressed glyphs.
  158. * Smarter handling of subpixel metrics in text rendering.
  159. * Optimized blitting functions.
  160. * Optimized gradient mesh drawing.
  161. * API changes and additions:
  162. * fz_stream API reworked: replace "read" function with "next".
  163. * "Rebind" functions to associate context bound objects with another context:
  164. fz_output, fz_stream, fz_device and fz_document.
  165. * Introduce "document handlers" to detect and open different file types.
  166. * Must now call fz_register_document_handlers() to register the defaults.
  167. * May register your own handlers as well to work with fz_open_document.
  168. * Hook to load system fonts: fz_install_load_system_font_funcs.
  169. * PDF xref cache flushing functions (mark/clear/clear-to-mark).
  170. * Add our own "printf" set of functions to format strings and write to fz_output:
  171. * Format %f as short as possible while preserving precision.
  172. * Has %C for formatting a unicode character as UTF-8.
  173. * Has %M to format fz_matrix.
  174. * Has %R to format fz_rect.
  175. * Has %q and %( to format strings with escaped characters.
  176. * PDF process interface: allow PDF interpreter to do more than just draw!
  177. * Content stream state cleaning filter.
  178. * Content stream rewriting filter.
  179. * PDF digital signatures.
  180. * Stroke states may now be stored on the stack.
  181. * Improved fz_path internals.
  182. * Gradient mesh drawing interface has been improved.
  183. * Save files with incremental updates.
  184. List of changes in MuPDF 1.3
  185. * Windows RT viewer app for MuPDF.
  186. * Library changes to support progressive loading (display PDF files as
  187. they download). Windows/Linux/MacOS viewer supports this using curl.
  188. * Incremental updates to PDF files are now (optionally) preserved on
  189. loading/saving.
  190. * Prototype support for checking PDF Digital Signatures.
  191. * Initial annotation support (strike-out, underline, highlight and ink)
  192. (library and android builds only).
  193. * Fix operation on Android API level 8.
  194. * Android redraw optimisations.
  195. * Android app now supports Google Cloud Print.
  196. * Android app translated into many languages.
  197. * Android support for more architectures.
  198. * Improvements to store (avoid collisions causing unnecessary evictions).
  199. * Windows apps use Unicode filenames now.
  200. * PDF function handling improved; functions can now be passed to devices
  201. without 'sampling'.
  202. * PDF image handling improved; images can now be passed to devices
  203. without decompression.
  204. * Indexed images are no longer uncompressed at load time, saving memory.
  205. * Caching of rendered tiles for speed.
  206. * Improved text analysis mode, capable of spotting columns/indents,
  207. right-to-left text etc.
  208. * HTML output mode now includes image output.
  209. * PDF password encoding handling improved.
  210. * MuPDF now opens Jpeg, Tiff and PNG files directly.
  211. * Bug preventing OpenXPS files from being opened fixed.
  212. * Initial (feature incomplete) SVG and PDF output devices.
  213. * PWG raster (mono/grey/RGB) and PCL (mono) output devices.
  214. * Various performance improvements (including tilings and mesh based
  215. shadings).
  216. * Revamped directory structure to reflect recent changes.
  217. * Various potential SEGV, SoftMask and rendering fixes.
  218. * Many potential crashes in Jpeg2000 and JBIG2 images fixed.
  219. List of changes in MuPDF 1.2
  220. * Important API changes:
  221. * fz_bbox is now fz_irect.
  222. * APIs (including fz_device) now pass fz_rect/fz_matrix by reference.
  223. * fz_device API is now more consistent with regards to use of
  224. fz_rect rather than fz_bbox.
  225. * Add support for Javascript and forms handling.
  226. * Fix many SEGVs with out of spec files. Many thanks to Mateusz "j00ru"
  227. Jurczyk and Gynvael Coldwind of the Google Security team, zeniko,
  228. Sebastian Rasmussen and all other contributors.
  229. * Add fz_open_document_with_stream to allow non-file based operation.
  230. * Move to using git submodules for third party libraries.
  231. * Much enhanced Android application. Now on Google Play!
  232. * Oversized and stroke text clipping implemented.
  233. * Change shadings to decompose at render times; massive memory savings.
  234. * Renamed 'mubusy' to 'mutool'.
  235. * PDF 1.7 Extension Level 8 encryption implemented.
  236. * Added consts to various parts of the API to help C++ interworking.
  237. * Prototype transition support.
  238. * Text searching API moved to fitz.
  239. * Highlight and copy text selections.
  240. * Performance enhancements for color conversion and fax decompression.
  241. * ARM optimisations for color conversion and bitmap scaling.
  242. * Bitmap subsampling stage introduced, with ARM optimisations.
  243. * Type 3 fonts; glyphs are now handled as display lists.
  244. * Scan converter performance improvements.
  245. * Various rendering fixes.
  246. List of changes in MuPDF 1.1
  247. * Rendering bugs fixed (text clipping, stroked text etc).
  248. * Better handling of 'large' (uncachable) glyphs.
  249. * Added a delete button to the library view on the iOS port.
  250. * Minor speed optimisations.
  251. * Shading bug fixes.
  252. * Move to using dynamically allocated parsing buffers (more resilient).
  253. * Support for UserUnits.
  254. * Fix bugs with image predictors (including with 16 bit images).
  255. * More resilient to out of spec files.
  256. * Extract pdf writing capability into the library from pdfclean, and
  257. expand on it to allow for linearisation. Bug fixes in the garbage
  258. collection of unused objects.
  259. * Improve pdf writing recognition of images.
  260. * Improved font matching.
  261. * Start to move away from macros to inline functions (helpful for
  262. applications requiring certification).
  263. * Many bugs fixed.