Skip to content

Commit f69f394

Browse files
committed
2.8.7
1 parent 85a22d2 commit f69f394

24 files changed

+107
-27
lines changed

Classes/ReaderAppDelegate.m

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
//
22
// ReaderAppDelegate.m
3-
// Reader v2.8.6
3+
// Reader v2.8.7
44
//
55
// Created by Julius Oklamcak on 2011-07-01.
6-
// Copyright © 2011-2015 Julius Oklamcak. All rights reserved.
6+
// Copyright © 2011-2016 Julius Oklamcak. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal
@@ -44,9 +44,11 @@ - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
4444

4545
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
4646
{
47-
mainWindow = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; // Main application window
47+
//NSLog(@"%s %@ : @%gx", __FUNCTION__, NSStringFromCGSize([[UIScreen mainScreen] bounds].size), [[UIScreen mainScreen] scale]);
4848

49-
readerDemoController = [[ReaderDemoController alloc] initWithNibName:nil bundle:nil]; // Demo controller
49+
mainWindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; // Main application window
50+
51+
readerDemoController = [[ReaderDemoController alloc] initWithNibName:nil bundle:nil]; // Demo view controller
5052

5153
navigationController = [[UINavigationController alloc] initWithRootViewController:readerDemoController];
5254

Graphics/AppIcon-167.png

45 KB
Loading

Graphics/[email protected]

1.69 KB
Loading

Graphics/[email protected]

1.72 KB
Loading

Graphics/Reader-Email.png

18 Bytes
Loading

Graphics/[email protected]

204 Bytes
Loading

Graphics/[email protected]

1.19 KB
Loading

Graphics/[email protected]

903 Bytes
Loading

Graphics/[email protected]

367 Bytes
Loading

Graphics/[email protected]

368 Bytes
Loading

Graphics/Reader-Print.png

6 Bytes
Loading

Graphics/[email protected]

-3 Bytes
Loading

Graphics/[email protected]

639 Bytes
Loading

Graphics/[email protected]

380 Bytes
Loading

HISTORY.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11

22
## History
33

4+
2016-01-20: Version 2.8.7
5+
6+
- Added iOS 9 and iPad Pro support.
7+
- iPhone 6 Plus and iPhone 6S Plus @3x graphics.
8+
- Sticky paging on iPod/iPhone workaround fix.
9+
410
2015-03-24: Version 2.8.6
511

612
- Added French and Spanish Localizable.strings

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
Copyright © 2011-2015 Julius Oklamcak. All rights reserved.
2+
Copyright © 2011-2016 Julius Oklamcak. All rights reserved.
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Supports:
5555

5656
Version 2.x of the PDF reader code was originally developed
5757
and tested under Xcode 3.2.6, LLVM 1.7 and iOS 4 with current
58-
development and testing under Xcode 6.2, LLVM 6.0 and iOS 8.2.
58+
development and testing under Xcode 7.2, LLVM 7.0 and iOS 9.2.
5959
Please note that as of v2.6, the code was refactored to use ARC.
6060

6161
The overall PDF reader functionality is encapsulated in the
@@ -101,14 +101,14 @@ reader into one of your projects:
101101
ThumbsMainToolbar.h, ThumbsMainToolbar.m
102102
UIXToolbarView.h, UIXToolbarView.m
103103

104-
Reader-Button-H.png, [email protected]
105-
Reader-Button-N.png, [email protected]
106-
Reader-Email.png, [email protected]
107-
Reader-Export.png, [email protected]
108-
Reader-Mark-N.png, [email protected]
109-
Reader-Mark-Y.png, [email protected]
110-
Reader-Print.png, [email protected]
111-
Reader-Thumbs.png, [email protected]
104+
Reader-Button-H.png, [email protected], [email protected]
105+
Reader-Button-N.png, [email protected], [email protected]
106+
107+
108+
109+
110+
111+
112112

113113
Localizable.strings (UTF-16 encoding)
114114

Reader-Info.plist

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<key>CFBundleIconFiles</key>
1010
<array>
1111
<string>AppIcon-180.png</string>
12+
<string>AppIcon-167.png</string>
1213
<string>AppIcon-152.png</string>
1314
<string>AppIcon-144.png</string>
1415
<string>AppIcon-120.png</string>
@@ -30,20 +31,24 @@
3031
<key>CFBundleSignature</key>
3132
<string>????</string>
3233
<key>CFBundleVersion</key>
33-
<string>2.8.6</string>
34+
<string>2.8.7</string>
3435
<key>CFBundleShortVersionString</key>
35-
<string>2.8.6</string>
36+
<string>2.8.7</string>
3637
<key>LSRequiresIPhoneOS</key>
3738
<true/>
3839
<key>UIPrerenderedIcon</key>
3940
<true/>
41+
<key>UIRequiresFullScreen</key>
42+
<true/>
4043
<key>UISupportedInterfaceOrientations</key>
4144
<array>
4245
<string>UIInterfaceOrientationPortrait</string>
4346
<string>UIInterfaceOrientationPortraitUpsideDown</string>
4447
<string>UIInterfaceOrientationLandscapeRight</string>
4548
<string>UIInterfaceOrientationLandscapeLeft</string>
4649
</array>
50+
<key>UILaunchStoryboardName</key>
51+
<string>Reader-App</string>
4752
<key>UILaunchImages</key>
4853
<array>
4954
<dict>

Reader.xcodeproj/project.pbxproj

+41-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
4513ACFB19C4A1FB004916D1 /* AppIcon-180.png in Resources */ = {isa = PBXBuildFile; fileRef = 4513ACFA19C4A1FB004916D1 /* AppIcon-180.png */; };
1616
4521AB3F19C5EE6000B16688 /* Reader-Export.png in Resources */ = {isa = PBXBuildFile; fileRef = 4521AB3D19C5EE6000B16688 /* Reader-Export.png */; };
1717
4521AB4019C5EE6000B16688 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 4521AB3E19C5EE6000B16688 /* [email protected] */; };
18+
4524A6EE1C500F2F00D7DF7F /* AppIcon-167.png in Resources */ = {isa = PBXBuildFile; fileRef = 4524A6ED1C500F2F00D7DF7F /* AppIcon-167.png */; };
19+
4524A6F01C5011D700D7DF7F /* Reader-App.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4524A6EF1C5011D700D7DF7F /* Reader-App.storyboard */; };
1820
4541A9D8122EA716001A5E60 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 4541A9D7122EA716001A5E60 /* Localizable.strings */; };
1921
4544394817FDD5E700781873 /* AppIcon-076.png in Resources */ = {isa = PBXBuildFile; fileRef = 4544394517FDD5E700781873 /* AppIcon-076.png */; };
2022
4544394917FDD5E700781873 /* AppIcon-120.png in Resources */ = {isa = PBXBuildFile; fileRef = 4544394617FDD5E700781873 /* AppIcon-120.png */; };
@@ -66,6 +68,14 @@
6668
45AB7325141FC0B1003524C3 /* ThumbsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45AB7312141FC0B1003524C3 /* ThumbsViewController.m */; };
6769
45BD5AFE13AE721A00D6FE97 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45BD5AFD13AE721A00D6FE97 /* MessageUI.framework */; };
6870
45D5ADA31610EADD00706B9A /* ReaderDocumentOutline.m in Sources */ = {isa = PBXBuildFile; fileRef = 45D5ADA21610EADC00706B9A /* ReaderDocumentOutline.m */; };
71+
45D984371C501B0300ADFD5E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45D9842F1C501B0300ADFD5E /* [email protected] */; };
72+
45D984381C501B0300ADFD5E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45D984301C501B0300ADFD5E /* [email protected] */; };
73+
45D984391C501B0300ADFD5E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45D984311C501B0300ADFD5E /* [email protected] */; };
74+
45D9843A1C501B0300ADFD5E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45D984321C501B0300ADFD5E /* [email protected] */; };
75+
45D9843B1C501B0300ADFD5E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45D984331C501B0300ADFD5E /* [email protected] */; };
76+
45D9843C1C501B0300ADFD5E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45D984341C501B0300ADFD5E /* [email protected] */; };
77+
45D9843D1C501B0300ADFD5E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45D984351C501B0300ADFD5E /* [email protected] */; };
78+
45D9843E1C501B0300ADFD5E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45D984361C501B0300ADFD5E /* [email protected] */; };
6979
/* End PBXBuildFile section */
7080

7181
/* Begin PBXFileReference section */
@@ -80,6 +90,8 @@
8090
4513ACFC19C4A636004916D1 /* Todo.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Todo.txt; sourceTree = "<group>"; };
8191
4521AB3D19C5EE6000B16688 /* Reader-Export.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Reader-Export.png"; path = "Graphics/Reader-Export.png"; sourceTree = "<group>"; };
8292
4521AB3E19C5EE6000B16688 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
93+
4524A6ED1C500F2F00D7DF7F /* AppIcon-167.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "AppIcon-167.png"; path = "Graphics/AppIcon-167.png"; sourceTree = "<group>"; };
94+
4524A6EF1C5011D700D7DF7F /* Reader-App.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = "Reader-App.storyboard"; path = "Resources/Reader-App.storyboard"; sourceTree = "<group>"; };
8395
4541A9D5122EA686001A5E60 /* en */ = {isa = PBXFileReference; fileEncoding = 10; indentWidth = 4; lastKnownFileType = text.plist.strings; name = en; path = Resources/en.lproj/Localizable.strings; sourceTree = "<group>"; tabWidth = 4; };
8496
4544394517FDD5E700781873 /* AppIcon-076.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "AppIcon-076.png"; path = "Graphics/AppIcon-076.png"; sourceTree = "<group>"; };
8597
4544394617FDD5E700781873 /* AppIcon-120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "AppIcon-120.png"; path = "Graphics/AppIcon-120.png"; sourceTree = "<group>"; };
@@ -160,6 +172,14 @@
160172
45D5AD9E1610E66B00706B9A /* HISTORY.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HISTORY.md; sourceTree = "<group>"; };
161173
45D5ADA11610EADC00706B9A /* ReaderDocumentOutline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ReaderDocumentOutline.h; path = Sources/ReaderDocumentOutline.h; sourceTree = "<group>"; };
162174
45D5ADA21610EADC00706B9A /* ReaderDocumentOutline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ReaderDocumentOutline.m; path = Sources/ReaderDocumentOutline.m; sourceTree = "<group>"; };
175+
45D9842F1C501B0300ADFD5E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
176+
45D984301C501B0300ADFD5E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
177+
45D984311C501B0300ADFD5E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
178+
45D984321C501B0300ADFD5E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
179+
45D984331C501B0300ADFD5E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
180+
45D984341C501B0300ADFD5E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
181+
45D984351C501B0300ADFD5E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
182+
45D984361C501B0300ADFD5E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "Graphics/[email protected]"; sourceTree = "<group>"; };
163183
8D1107310486CEB800E47090 /* Reader-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Reader-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = "<group>"; };
164184
/* End PBXFileReference section */
165185

@@ -230,6 +250,7 @@
230250
isa = PBXGroup;
231251
children = (
232252
4541A9D7122EA716001A5E60 /* Localizable.strings */,
253+
4524A6EF1C5011D700D7DF7F /* Reader-App.storyboard */,
233254
45AB72DF141FC04B003524C3 /* README.md */,
234255
45D5AD9E1610E66B00706B9A /* HISTORY.md */,
235256
45AB72DD141FC043003524C3 /* LICENSE.md */,
@@ -279,6 +300,7 @@
279300
4544394617FDD5E700781873 /* AppIcon-120.png */,
280301
4583767E1533B0AC003CD230 /* AppIcon-144.png */,
281302
4544394717FDD5E700781873 /* AppIcon-152.png */,
303+
4524A6ED1C500F2F00D7DF7F /* AppIcon-167.png */,
282304
4513ACFA19C4A1FB004916D1 /* AppIcon-180.png */,
283305
4544D87B1610A3C2003DB132 /* [email protected] */,
284306
45699AAF1A321F6100808606 /* [email protected] */,
@@ -292,20 +314,28 @@
292314
children = (
293315
455C789914268F6A0053D73B /* Reader-Button-H.png */,
294316
455C789A14268F6A0053D73B /* [email protected] */,
317+
45D9842F1C501B0300ADFD5E /* [email protected] */,
295318
455C789B14268F6A0053D73B /* Reader-Button-N.png */,
296319
455C789C14268F6A0053D73B /* [email protected] */,
320+
45D984301C501B0300ADFD5E /* [email protected] */,
297321
45AB72BC141FBFCA003524C3 /* Reader-Email.png */,
298322
45AB72BD141FBFCA003524C3 /* [email protected] */,
323+
45D984311C501B0300ADFD5E /* [email protected] */,
299324
4521AB3D19C5EE6000B16688 /* Reader-Export.png */,
300325
4521AB3E19C5EE6000B16688 /* [email protected] */,
326+
45D984321C501B0300ADFD5E /* [email protected] */,
301327
45AB72BE141FBFCA003524C3 /* Reader-Mark-N.png */,
302328
45AB72BF141FBFCA003524C3 /* [email protected] */,
329+
45D984331C501B0300ADFD5E /* [email protected] */,
303330
45AB72C0141FBFCA003524C3 /* Reader-Mark-Y.png */,
304331
45AB72C1141FBFCA003524C3 /* [email protected] */,
332+
45D984341C501B0300ADFD5E /* [email protected] */,
305333
45AB72C2141FBFCA003524C3 /* Reader-Print.png */,
306334
45AB72C3141FBFCA003524C3 /* [email protected] */,
335+
45D984351C501B0300ADFD5E /* [email protected] */,
307336
45AB72C4141FBFCA003524C3 /* Reader-Thumbs.png */,
308337
45AB72C5141FBFCA003524C3 /* [email protected] */,
338+
45D984361C501B0300ADFD5E /* [email protected] */,
309339
);
310340
name = Reader;
311341
sourceTree = "<group>";
@@ -390,7 +420,7 @@
390420
29B97313FDCFA39411CA2CEA /* Project object */ = {
391421
isa = PBXProject;
392422
attributes = {
393-
LastUpgradeCheck = 0630;
423+
LastUpgradeCheck = 0720;
394424
};
395425
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Reader" */;
396426
compatibilityVersion = "Xcode 3.2";
@@ -419,26 +449,36 @@
419449
4541A9D8122EA716001A5E60 /* Localizable.strings in Resources */,
420450
45699AB31A321F6100808606 /* [email protected] in Resources */,
421451
45AB72C6141FBFCA003524C3 /* AppIcon-057.png in Resources */,
452+
45D984391C501B0300ADFD5E /* [email protected] in Resources */,
422453
45AB72C7141FBFCA003524C3 /* AppIcon-072.png in Resources */,
423454
45AB72C8141FBFCA003524C3 /* AppIcon-114.png in Resources */,
455+
45D984371C501B0300ADFD5E /* [email protected] in Resources */,
456+
4524A6EE1C500F2F00D7DF7F /* AppIcon-167.png in Resources */,
424457
45AB72C9141FBFCA003524C3 /* Reader-Email.png in Resources */,
425458
45AB72CA141FBFCA003524C3 /* [email protected] in Resources */,
426459
45AB72CB141FBFCA003524C3 /* Reader-Mark-N.png in Resources */,
427460
45AB72CC141FBFCA003524C3 /* [email protected] in Resources */,
461+
45D9843E1C501B0300ADFD5E /* [email protected] in Resources */,
428462
45AB72CD141FBFCA003524C3 /* Reader-Mark-Y.png in Resources */,
429463
45AB72CE141FBFCA003524C3 /* [email protected] in Resources */,
430464
45AB72CF141FBFCA003524C3 /* Reader-Print.png in Resources */,
431465
45AB72D0141FBFCA003524C3 /* [email protected] in Resources */,
432466
45699AB41A321F6100808606 /* [email protected] in Resources */,
433467
45AB72D1141FBFCA003524C3 /* Reader-Thumbs.png in Resources */,
434468
45AB72D2141FBFCA003524C3 /* [email protected] in Resources */,
469+
45D984381C501B0300ADFD5E /* [email protected] in Resources */,
435470
4521AB4019C5EE6000B16688 /* [email protected] in Resources */,
436471
4513ACFB19C4A1FB004916D1 /* AppIcon-180.png in Resources */,
437472
45AB72DC141FC039003524C3 /* Reader.pdf in Resources */,
473+
45D9843A1C501B0300ADFD5E /* [email protected] in Resources */,
474+
45D9843B1C501B0300ADFD5E /* [email protected] in Resources */,
438475
455C789D14268F6A0053D73B /* Reader-Button-H.png in Resources */,
439476
455C789E14268F6A0053D73B /* [email protected] in Resources */,
440477
455C789F14268F6A0053D73B /* Reader-Button-N.png in Resources */,
478+
4524A6F01C5011D700D7DF7F /* Reader-App.storyboard in Resources */,
441479
455C78A014268F6A0053D73B /* [email protected] in Resources */,
480+
45D9843D1C501B0300ADFD5E /* [email protected] in Resources */,
481+
45D9843C1C501B0300ADFD5E /* [email protected] in Resources */,
442482
4583767F1533B0AC003CD230 /* AppIcon-144.png in Resources */,
443483
4544394917FDD5E700781873 /* AppIcon-120.png in Resources */,
444484
4544D87C1610A3C2003DB132 /* [email protected] in Resources */,

Resources/Reader-App.storyboard

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="9531" systemVersion="15D21" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" initialViewController="01J-lp-oVM">
3+
<dependencies>
4+
<deployment identifier="iOS"/>
5+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9529"/>
6+
</dependencies>
7+
<scenes>
8+
<!--View Controller-->
9+
<scene sceneID="EHf-IW-A2E">
10+
<objects>
11+
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
12+
<layoutGuides>
13+
<viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/>
14+
<viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/>
15+
</layoutGuides>
16+
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
17+
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
18+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
19+
<color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
20+
</view>
21+
</viewController>
22+
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
23+
</objects>
24+
<point key="canvasLocation" x="53" y="375"/>
25+
</scene>
26+
</scenes>
27+
</document>

Resources/Reader.pdf

3.05 KB
Binary file not shown.

Sources/ReaderConstants.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
//
22
// ReaderConstants.m
3-
// Reader v2.8.6
3+
// Reader v2.8.7
44
//
55
// Created by Julius Oklamcak on 2011-07-01.
6-
// Copyright © 2011-2015 Julius Oklamcak. All rights reserved.
6+
// Copyright © 2011-2016 Julius Oklamcak. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal
@@ -25,4 +25,4 @@
2525

2626
#import "ReaderConstants.h"
2727

28-
static NSString *const kReaderCopyrightNotice = @"Reader v2.x.y • Copyright © 2011-2015 Julius Oklamcak. All rights reserved.";
28+
static NSString *const kReaderCopyrightNotice = @"Reader v2.x.y • Copyright © 2011-2016 Julius Oklamcak. All rights reserved.";

Sources/ReaderContentView.m

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
//
22
// ReaderContentView.m
3-
// Reader v2.8.6
3+
// Reader v2.8.7
44
//
55
// Created by Julius Oklamcak on 2011-07-01.
6-
// Copyright © 2011-2015 Julius Oklamcak. All rights reserved.
6+
// Copyright © 2011-2016 Julius Oklamcak. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal
@@ -55,8 +55,8 @@ @implementation ReaderContentView
5555
#define ZOOM_FACTOR 2.0f
5656
#define ZOOM_MAXIMUM 16.0f
5757

58-
#define PAGE_THUMB_LARGE 240
5958
#define PAGE_THUMB_SMALL 144
59+
#define PAGE_THUMB_LARGE 240
6060

6161
static void *ReaderContentViewContext = &ReaderContentViewContext;
6262

@@ -89,10 +89,10 @@ + (void)initialize
8989

9090
if ([@"8.0" compare:iosVersion options:NSNumericSearch] != NSOrderedDescending) // 8.0 and up
9191
{
92-
if ([@"8.2" compare:iosVersion options:NSNumericSearch] == NSOrderedDescending) // Below 8.2
93-
{
92+
// if ([@"8.2" compare:iosVersion options:NSNumericSearch] == NSOrderedDescending) // Below 8.2
93+
// {
9494
g_BugFixWidthInset = 2.0f * [[UIScreen mainScreen] scale]; // Reduce width of content view
95-
}
95+
// }
9696
}
9797
}
9898
}

0 commit comments

Comments
 (0)