Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-20 | Rearrange source files. | Tor Andersson | |
2013-06-12 | Support begin/end page calls in text extraction device. | Tor Andersson | |
2013-05-22 | Rewrite pdfapp search to use common search functions. | Tor Andersson | |
2013-02-13 | Update iOS app for rect/matrix pass by reference. | Tor Andersson | |
2013-01-30 | Eliminate fz_bbox in favor of fz_rect everywhere. | Tor Andersson | |
2012-12-08 | ios: Add button to highlight links. | Tor Andersson | |
2012-12-08 | ios: Use fz_document interface directly. | Tor Andersson | |
2012-12-08 | ios: Use setRootViewController instead of addSubview. | Tor Andersson | |
Fixes warning at launch and autorotation not working on iOS 6. | |||
2012-08-16 | ios: Use fz_max and fz_min inline functions instead of MAX/MIN macros. | Tor Andersson | |
2012-08-08 | ios: use viewWillLayoutSubviews instead of layout out only after rotation. | Tor Andersson | |
Handle the case where if the device is rotated while showing the outline view, popping back to the document view would show the pages using the old rotation layout. | |||
2012-08-08 | Add delete button to iOS library view. | Tor Andersson | |
2012-04-27 | Register iOS app as handler for PDF, XPS and CBZ files. | Tor Andersson | |
2012-03-21 | Update iOS app. | Tor Andersson | |
2012-03-13 | Rename some functions and accessors to be more consistent. | Tor Andersson | |
Debug printing functions: debug -> print. Accessors: get noun attribute -> noun attribute. Find -> lookup when the returned value is not reference counted. pixmap_with_rect -> pixmap_with_bbox. We are reserving the word "find" to mean lookups that give ownership of objects to the caller. Lookup is used in other places where the ownership is not transferred, or simple values are returned. The rename is done by the sed script in scripts/rename3.sed | |||
2012-02-09 | Update iOS code to latest changes. | Tor Andersson | |
2012-02-09 | Update ios and Android projects with locking changes. | Robin Watts | |
I forgot to update Android and iOS projects with the extra arg to fz_new_context. Fixed here. | |||
2012-02-07 | Rename a few functions. | Tor Andersson | |
2012-02-01 | Fix missing argument in iOS app. | Tor Andersson | |
2012-01-30 | Add CBZ (comic book zip-file) parser. | Tor Andersson | |
2012-01-11 | Hide glyph cache in context. | Tor Andersson | |
2012-01-11 | Set default values for alloc context and max store size if none are given. | Sebastian Rasmussen | |
2012-01-05 | Update iOS app to context branch. | Tor Andersson | |
2011-11-24 | Resize searchBar manually instead of relying on automatic resizing. | Tor Andersson | |
2011-11-22 | Add password dialog to iOS app. | Tor Andersson | |
2011-11-22 | Fix memory leaks in iOS app. | Tor Andersson | |
The use of a set for visible pages was causing reference counting cycles. viewDidUnload is only called in low memory warning situations, not as part of the normal tear down. | |||
2011-11-22 | Tweak search UI and use iOS 5 features for better toolbar buttons. | Tor Andersson | |
2011-11-22 | Update About document and fix some search UI bugs in iOS app. | Tor Andersson | |
2011-11-22 | Display search results and search in background thread. | Tor Andersson | |
2011-11-22 | Add search buttons and search bar to iOS app. | Tor Andersson | |
2011-11-10 | Add XPS outline parsing and move outline data struct to fz_outline. | Tor Andersson | |
2011-11-09 | Add simple document interface and XPS support to iOS app. | Tor Andersson | |
2011-11-08 | Support iPhone 4 retina display. | Tor Andersson | |
2011-11-08 | Small tweaks to iOS app. | Tor Andersson | |
2011-11-08 | Force MuPageView dealloc to always occur in main thread. | Tor Andersson | |
When a page view was removed (because it scrolled off too far) while the background thread had its page queued, when the block completed and released the page view in the cancel case (thus not passing a block back to the main queue), the dealloc would trigger in the worker thread. This is not safe to do with UIKit, causing crashes! | |||
2011-11-07 | Calculate bbox for page and tiles correctly when zooming. | Tor Andersson | |
2011-11-03 | Overlay a high resolution tile when viewing a zoomed in page. | Tor Andersson | |
2011-11-03 | Fix race conditions when rotating the view. | Tor Andersson | |
If you rotate the screen while pages are being rendered, they will arrive at the wrong size, and will have to be reloaded. We must take care not to mess up the currently displayed image view, since the new rendering may arrive in the middle of a rotation animation. | |||
2011-11-03 | Use nested UIScrollViews to support zooming as well as page flipping. | Tor Andersson | |
2011-11-02 | Fix double free bug when cleaning up the document controller. | Tor Andersson | |
2011-11-01 | Dynamically change navigation bar titles based on context. | Tor Andersson | |
2011-11-01 | Tweak scale factors, and fix one reference count error. | Tor Andersson | |
Consider rotated pages when calculating the fit page to screen scaling factors. Also adjust the scale factors to always map the mediabox to an integral number of pixels. | |||
2011-11-01 | Use timer to reload list of files when the library view is open. | Tor Andersson | |
We can't use applicationDidBecomeActive in iOS 5 to trigger a reload, since the file sync can happen in the background. | |||
2011-11-01 | Remember and restore view to last page visited for each document. | Tor Andersson | |
Also remember which document was open last time the application was closed. | |||
2011-11-01 | Rename About.pdf and add high-res icon. | Tor Andersson | |
2011-11-01 | Use a smaller font for the table of contents. | Tor Andersson | |
2011-11-01 | Remove flexible spaces that are not needed, and cause issues with iOS < 5. | Tor Andersson | |
2011-11-01 | Fix scrolling/page flipping glitches by using real animations. | Tor Andersson | |
The UIScrollView animated scrolling doesn't interact with the regular animation framework, nor does it work well with gesture recognizers. When tapping quickly to flip pages, the repeated taps overwrite the animations already started. Fix this by queuing real animations instead. | |||
2011-11-01 | Add howto sample document, page indicator and page scrubber. | Tor Andersson | |
2011-11-01 | Add UIFileSharingEnabled key to Info.plist | Tor Andersson | |
2011-11-01 | Show "loading" message while rendering in background. | Tor Andersson | |