summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-29Add rules to configure and build openssl if it is present in thirdparty.Tor Andersson
Also sets the -DHAVE_OPENSSL flag.
2013-05-29Clean up thirdparty / system library makefile variables.Tor Andersson
2013-05-29Fix fontdump .incbin ifdef for clang.Tor Andersson
2013-05-29Killed pdf_cmap_token enum.Tor Andersson
2013-05-29Silence warnings.Tor Andersson
2013-05-29Trivial (and probably needless) simplification of git hook.Tor Andersson
2013-05-29Remove unneccessary variables in android makefiles.Tor Andersson
2013-05-29Add "thirdparty.txt"Chris Liddell
a list of third party libraries, their function, license and version shipped with mupdf
2013-05-28Android: disable whole "extras" menu when in reflow modePaul Gardiner
2013-05-28Document the android app classesPaul Gardiner
2013-05-27Android: Add label when deleting annotation.Robin Watts
Simple layout tweak to add 'Delete' into the header when deleting annotations.
2013-05-27Fix a crash when saving a file in the android app.Robin Watts
When saving, we'd close the document before we save it. As part of the leak fixing work, I'd freed the path as part of the closing process. Rework slightly to avoid this.
2013-05-27Solve fuzzing SEGV due to negative object number in xref.Robin Watts
2013-05-27Bring 2 versions of scaler code into line.Robin Watts
The check for width and height being stupidly large solves a SEGV that shows up while fuzzing.
2013-05-27Pull in latest fixes to jbig2dec.Robin Watts
Also fix android building with latest openjpeg2.
2013-05-27Treat multiple whitespace in search strings as single.Robin Watts
Skip over successive whitespace in search string. Make android use text_search.c
2013-05-27Fix indentation to be consistent with regard to tabs/spaces.Tor Andersson
2013-05-27Strip trailing whitespace.Tor Andersson
2013-05-27Add whitespace settings to .gitattributes and add commit hook script.Tor Andersson
Run "bash scripts/gitsetup.sh" to set up the hooks after cloning.
2013-05-27Fix of winRT solution for the changes with openjpeg plus fix for change in ↵Michael Vrhel
fz_device_bgr definition
2013-05-24Android: Update makefiles for new single lib V8 builds.Robin Watts
We have a new method of making V8 libs for android that results in a single lib rather than 2, and works on armeabi and x86 as well as armeabi-v7a.
2013-05-24Bug 694092: Android: Redraw performance (overdraw) fixesRobin Watts
Thanks to Goncalo Ferreira(*) (aka monxalo) for this patch. Firstly, we move our textured background off the layout and into a style applied to MuPDFActivity. By using "windowBackground", we avoid the default background being redrawn only to be overlaid with ours. This cuts out one level of overdrawing. Secondly, when drawing each PageView, the old code would render the background for the page, then would draw the bitmap over the top of that. While it's important to draw the background of the page before we have a bitmap for the page, we can avoid that stage once a page bitmap arrives. (* apologies for not being able to put the cedilla on the 'c' in your name, but git gives problems with top bit set chars.)
2013-05-24Avoid assert, and pull in changes.zeniko
Fix from zeniko.
2013-05-24Fix from zeniko for memory leak in fz_load_jpxRobin Watts
2013-05-24Take on zenikos OpenJPEG2 fixes.Robin Watts
2013-05-24Update build to use the latest openJPEG2Shailesh Mistry
2013-05-22Bug 693540: Update OpenJPEG2 with fix for expected number of parts.Robin Watts
2013-05-22Bug 693503: Fix infinite loop within JPEG2K stream reading.Robin Watts
The openjpeg stream reading code is supposed to return -1 to mean 'EOF'. Update our implementation in line with this. This stops samples_mupdf_001/402.pdf.SIGSEGV.2e4.2672 going into an infinite loop.
2013-05-22Update openjpeg with latest commits.Robin Watts
2013-05-22Update OpenJPEG to v2.0.0.Robin Watts
2013-05-22Fix end-of-line handling in text search.Tor Andersson
2013-05-22Rewrite pdfapp search to use common search functions.Tor Andersson
2013-05-22Fix typo in comment.Tor Andersson
2013-05-21Android: Fix crash when selecting text.Robin Watts
We were failing to setup and maintain the span number correctly.
2013-05-21Fix app breakages.Robin Watts
Android app was still thinking that we had only one fz_device_rgb rather than one per context. Android app had a typo in resulting in searching ending in an infinite loop. Text search failed to search outside the first block of each page.
2013-05-21Addition of support for password input.Michael Vrhel
Also rework of startup based upon password entry. Fix for bug that caused a crash when slider was used, thumbs were still rendering and a new document was opened.
2013-05-21Add monochrome PWG output routines.Robin Watts
2013-05-21Remove useless -lpng from doc/example.c and doc/multi-threaded.cTor Andersson
2013-05-21Mudraw: Add -c colorspace flag.Robin Watts
2013-05-21Split PWG code into a separate file.Robin Watts
2013-05-21Add PWG options structure for writing PWGs.Robin Watts
This should (pretty much) give us enough to write a mupdftoraster equivalent of gstoraster.
2013-05-17Add colorspace context dummy functions to cmapdump.cTor Andersson
2013-05-16Add colorspace context.Tor Andersson
To prepare for color management, we have to make the device colorspaces per-context and able to be overridden by users.
2013-05-16Reorder #ifdef's in base_time.cTor Andersson
2013-05-16Only link with X11 for X11 viewer.Tor Andersson
2013-05-16winrt: Strip trailing whitespace.Tor Andersson
2013-05-16Merge branch 'winRT2'Robin Watts
2013-05-16Addition of progress bar code with cancel during text search.Michael Vrhel
Also place holders for password support and initial work towards keyboard based zooming.
2013-05-16Mutex fixRobin Watts
2013-05-16Miscellaneous tidying.Robin Watts
Remove stray win32 changes. Update indentation style.