summaryrefslogtreecommitdiff
path: root/platform/ios/MuPDF.xcodeproj
AgeCommit message (Collapse)Author
2014-10-05iOS: Run at native res on iphone6/6+Joseph Heenan
All that is necessary is to add a launch xib.
2014-10-04iOS: convert app icons & launch image into image cataloguesJoseph Heenan
2014-10-04iOS: Enable various warnings to match current best practiceJoseph Heenan
2014-07-14Add the ability to hook a post-archive script into the build process.Matt Holgate
Used by the Testflight build. The post-archive step requires nastiness to pass the result of the script back to the caller via a temporary file. The reason for this is that a bug in Xcode means that failures from post-archive steps do not get propagated back to the user who called xcodebuild archive. Also, update the postbuild script to explicitly invoke bash (so we can avoid assuming /bin/sh is bash, and to avoid problems where executable permissions aren't set properly).
2014-07-10Convert Xcode schemes to shared schemes, so that they are tracked in git.Matt Holgate
It is recommended that you delete any personal schemes that have the same name as the shared ones, for example by cleaning your git tree with: cd platform/ios/MuPDF.xcodeproj && git clean -X -f -d (this will wipe out any .gitignore'd files in your tree - so be careful. Make sure you use an uppercase -X option; the lowercase version will wipe non-ignored files!).
2014-07-10Crashlytics support for official builds.Matt Holgate
Add hooks to allow us to pass in the Crashlytics SDK location and the API key from the command line. The SDK and API key will be held in a separate private repository. Should have no effect on regular builds.
2014-07-10Enable modules in iOS build.Matt Holgate
Speeds up compilation, and means we can avoid having to list all the system frameworks (so I've deleted them).
2014-07-07Fix disabled state of bar buttons on iPhone/iPod Touch.Matt Holgate
Previously on iOS 7, bar buttons didn't change visually when disabled. Also improves the look and feel - the buttons are now tinted in the highlighted state rather than showing a grey background. On iOS 7, the iPhone/iPad buttons style match. Tested on iOS 6 iPad/iPod and iOS 7 iPad/iPod.
2014-07-07Use tabs rather than spaces for the MuPDF project.Matt Holgate
2014-06-30Switch to Artifex Team.Matt Holgate
2014-05-07iOS: add extra icon sizes for iOS 7Paul Gardiner
2014-04-24iOS: add support for sharing documents with other appsPaul Gardiner
2014-04-18iOS: use bitmap based printingPaul Gardiner
allows printing of file types other than PDF
2014-04-18iOS: add AirPrint supportPaul Gardiner
2014-03-26iOS: fix build and update to use mujsPaul Gardiner
2014-01-10iOS: correctly handle document changes that may affect several pagesPaul Gardiner
Interaction with forms may change several pages, so all pages currently represented by view need updating.
2014-01-10iOS: on iPhone use custom buttons to accommodate shortage of spacePaul Gardiner
Otherwise, in portrait mode, there isn’t enough room for all five buttons and some are not displayed.
2014-01-07iOS: update the form filling dialogs to avoid the keyboard hiding the buttonsPaul Gardiner
Also bring up the keyboard automatically
2013-12-16iOS: add javascript supportPaul Gardiner
2013-11-27iOS: some fixes for iOS 7Paul Gardiner
2013-11-22iOS: support annotation deletionPaul Gardiner
2013-11-20iOS: support creation of Ink annotationsPaul Gardiner
2013-11-19iOS: add support for creating markup annotationsPaul Gardiner
2013-10-16iOS: add support for selecting form choice fieldsPaul Gardiner
2013-10-16iOS: support filling in of text form fieldsPaul Gardiner
2013-10-09iOS: implement internal-link followingPaul Gardiner
Also: add hooks for the other link types remove unnecessary protocol from MuPageViewReflow turn off optimizations for the debug build
2013-09-24iOS: add reflow modePaul Gardiner
2013-09-24iOS: use ObjC-level ref counting to control lifetime of fz_documentPaul Gardiner
With the latest version if iOS, timing changes were causing crashes during close down of a MuDocumentController. This change isolates us from those changes.
2013-09-17iOS: split the classes into separate filesPaul Gardiner
2013-09-16iOS: avoid XCode's passed environment breaking the "generated" buildPaul Gardiner
2013-09-08ios: Clean up project file.Tor Andersson
Strip stupid project build settings. Add proper "make generate" target that uses the 'macosx' sdkroot. Rewrite cross compile build script to be more future proof.
2013-06-25Update ios project for reshuffle.Tor Andersson
2013-06-20Rearrange source files.Tor Andersson