Browse Source

【综合】更新SDK

zenghong 2 months ago
parent
commit
4a5784fe1b
13 changed files with 177 additions and 35 deletions
  1. BIN
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/ComPDFKit
  2. 10 1
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFBackground.h
  3. 5 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFBates.h
  4. 10 1
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFHeaderFooter.h
  5. 2 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFKitPlatform.h
  6. 7 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFPage.h
  7. 35 1
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFSignatureAnnotation.h
  8. 34 1
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFSignatureWidgetAnnotation.h
  9. 34 1
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFStampAnnotation.h
  10. 10 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFView+Editing.h
  11. 6 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFWatermark.h
  12. 20 20
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/_CodeSignature/CodeResources
  13. 4 10
      PDF Office/PDF Reader Pro.xcodeproj/project.pbxproj

BIN
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/ComPDFKit


+ 10 - 1
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFBackground.h

@@ -86,6 +86,11 @@ typedef NS_ENUM(NSInteger, CPDFBackgroundType) {
  */
  */
 @property (nonatomic,assign) BOOL isAllowsPrint;
 @property (nonatomic,assign) BOOL isAllowsPrint;
 
 
+/**
+ * Method to check whether the document has a background.
+ */
+@property (nonatomic,assign) BOOL hasBackground;
+
 /**
 /**
  * Sets the image of the background.
  * Sets the image of the background.
  */
  */
@@ -95,9 +100,13 @@ typedef NS_ENUM(NSInteger, CPDFBackgroundType) {
  * Updates the background.
  * Updates the background.
  */
  */
 - (void)update;
 - (void)update;
+/**
+ * Reload the background.
+ */
+- (void)reload;
 /**
 /**
  * Removes the background.
  * Removes the background.
  */
  */
-- (void)clear;
+- (BOOL)clear;
 
 
 @end
 @end

+ 5 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFBates.h

@@ -17,4 +17,9 @@
  */
  */
 @interface CPDFBates : CPDFHeaderFooter
 @interface CPDFBates : CPDFHeaderFooter
 
 
+/**
+ * Method to check whether the document has a bates.
+ */
+@property (nonatomic,assign) BOOL hasBates;
+
 @end
 @end

+ 10 - 1
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFHeaderFooter.h

@@ -29,6 +29,11 @@
  */
  */
 @property (nonatomic,assign) CPDFKitPlatformEdgeInsets margin;
 @property (nonatomic,assign) CPDFKitPlatformEdgeInsets margin;
 
 
+/**
+ * Method to check whether the document has a header & footer..
+ */
+@property (nonatomic,assign) BOOL hasHeaderFooter;
+
 /**
 /**
  * Gets the text of the header & footer at the specified index.
  * Gets the text of the header & footer at the specified index.
  */
  */
@@ -69,9 +74,13 @@
  * Updates the header & footer.
  * Updates the header & footer.
  */
  */
 - (void)update;
 - (void)update;
+/**
+ * Reload the header & footer.
+ */
+- (void)reload;
 /**
 /**
  * Removes the header & footer.
  * Removes the header & footer.
  */
  */
-- (void)clear;
+- (BOOL)clear;
 
 
 @end
 @end

+ 2 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFKitPlatform.h

@@ -23,6 +23,7 @@
 #define CPDFKitPlatformView         UIView
 #define CPDFKitPlatformView         UIView
 #define CPDFKitPlatformColor        UIColor
 #define CPDFKitPlatformColor        UIColor
 #define CPDFKitPlatformImage        UIImage
 #define CPDFKitPlatformImage        UIImage
+#define CPDFKitPlatformPoint        CGPoint
 #define CPDFKitPlatformFont         UIFont
 #define CPDFKitPlatformFont         UIFont
 #define CPDFKitPlatformEdgeInsets   UIEdgeInsets
 #define CPDFKitPlatformEdgeInsets   UIEdgeInsets
 
 
@@ -33,6 +34,7 @@
 #define CPDFKitPlatformView         NSView
 #define CPDFKitPlatformView         NSView
 #define CPDFKitPlatformColor        NSColor
 #define CPDFKitPlatformColor        NSColor
 #define CPDFKitPlatformImage        NSImage
 #define CPDFKitPlatformImage        NSImage
+#define CPDFKitPlatformPoint        NSPoint
 #define CPDFKitPlatformFont         NSFont
 #define CPDFKitPlatformFont         NSFont
 #define CPDFKitPlatformEdgeInsets   NSEdgeInsets
 #define CPDFKitPlatformEdgeInsets   NSEdgeInsets
 
 

+ 7 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFPage.h

@@ -73,6 +73,13 @@ extern NSNotificationName const CPDFPageDidFindSearchChangeNotification;
  */
  */
 @property (nonatomic,readonly) NSString *label;
 @property (nonatomic,readonly) NSString *label;
 
 
+/**
+ * Returns the index for the page.
+ *
+ * @discussion Typically, the label is “0” for the first page, “1” for the second page,defualt 0.
+ */
+@property (nonatomic,readonly) NSUInteger pageIndexInteger;
+
 /**
 /**
  * Returns the bounds for the specified PDF display box.
  * Returns the bounds for the specified PDF display box.
  *
  *

+ 35 - 1
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFSignatureAnnotation.h

@@ -12,6 +12,19 @@
 
 
 #import <ComPDFKit/CPDFAnnotation.h>
 #import <ComPDFKit/CPDFAnnotation.h>
 
 
+
+typedef NS_ENUM(NSInteger, CPDFSignatureDraggedType) {
+    CPDFSignatureDraggedTypeNone = -1,
+    CPDFSignatureDraggedTypeMinXMinY = 0,
+    CPDFSignatureDraggedTypeMidXMinY = 1,
+    CPDFSignatureDraggedTypeMaxXMinY = 2,
+    CPDFSignatureDraggedTypeMaxXMidY = 3,
+    CPDFSignatureDraggedTypeMaxXMaxY = 4,
+    CPDFSignatureDraggedTypeMidXMaxY = 5,
+    CPDFSignatureDraggedTypeMinXMaxY = 6,
+    CPDFSignatureDraggedTypeMinXMidY = 7,
+};
+
 @interface CPDFSignatureAnnotation : CPDFAnnotation
 @interface CPDFSignatureAnnotation : CPDFAnnotation
 
 
 - (void)setImage:(CPDFKitPlatformImage *)image;
 - (void)setImage:(CPDFKitPlatformImage *)image;
@@ -27,7 +40,7 @@
 - (NSArray<NSValue *> *)saveRectRotationPoints;
 - (NSArray<NSValue *> *)saveRectRotationPoints;
 
 
 /**
 /**
- * Method to get / set the  rect befer rotation.
+ * Method to get / set the  rect befer rotation.based on the rect when the rotation angle is 0 degrees.
  *
  *
  * @discussion rect of the current page.
  * @discussion rect of the current page.
  */
  */
@@ -41,4 +54,25 @@
  */
  */
 @property (nonatomic,assign) NSInteger annotationRotation;
 @property (nonatomic,assign) NSInteger annotationRotation;
 
 
+/**
+ * Method to Quickly set the annotation rotation angle, and simultaneously update the saveRectRotationPoints and annotationRotation property.
+ *
+ * @discussion Rotation on a annotation. The annotationRotation based on when the rotation angle is 0 degrees. Must be -180 ~ 180.
+ */
+- (void)updateAnnotationRotation:(NSInteger)annotationRotation;
+
+/**
+ * Method to move stampAnnotation
+ *
+ * @discussion offset
+ */
+- (void)moveSignatureAnnotationWithActivePage:(CPDFPage *)newActivePage offset:(CPDFKitPlatformPoint)offset;
+
+/**
+ * Method to drag stampAnnotation
+ *
+ * @discussion draggedIndex
+ */
+- (void)dragSignatureAnnotationWithCurrentPagePoint:(CGPoint)currentPagePoint draggedIndex:(CPDFSignatureDraggedType)draggedIndex;
+
 @end
 @end

+ 34 - 1
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFSignatureWidgetAnnotation.h

@@ -12,6 +12,18 @@
 
 
 #import <ComPDFKit/CPDFWidgetAnnotation.h>
 #import <ComPDFKit/CPDFWidgetAnnotation.h>
 
 
+typedef NS_ENUM(NSInteger, CPDFSignatureWidgetDraggedType) {
+    CPDFSignatureWidgetDraggedTypeNone = -1,
+    CPDFSignatureWidgetDraggedTypeMinXMinY = 0,
+    CPDFSignatureWidgetDraggedTypeMidXMinY = 1,
+    CPDFSignatureWidgetDraggedTypeMaxXMinY = 2,
+    CPDFSignatureWidgetDraggedTypeMaxXMidY = 3,
+    CPDFSignatureWidgetDraggedTypeMaxXMaxY = 4,
+    CPDFSignatureWidgetDraggedTypeMidXMaxY = 5,
+    CPDFSignatureWidgetDraggedTypeMinXMaxY = 6,
+    CPDFSignatureWidgetDraggedTypeMinXMidY = 7,
+};
+
 @class CPDFSignature;
 @class CPDFSignature;
 
 
 #pragma mark - CPDFSignatureConfigItem
 #pragma mark - CPDFSignatureConfigItem
@@ -78,7 +90,7 @@
 - (NSArray<NSValue *> *)saveRectRotationPoints;
 - (NSArray<NSValue *> *)saveRectRotationPoints;
 
 
 /**
 /**
- * Method to get / set the  rect befer rotation.
+ * Method to get / set the  rect befer rotation.based on the rect when the rotation angle is 0 degrees.
  *
  *
  * @discussion rect of the current page.
  * @discussion rect of the current page.
  */
  */
@@ -92,6 +104,27 @@
  */
  */
 @property (nonatomic,assign) NSInteger annotationRotation;
 @property (nonatomic,assign) NSInteger annotationRotation;
 
 
+/**
+ * Method to Quickly set the annotation rotation angle, and simultaneously update the saveRectRotationPoints and annotationRotation property.
+ *
+ * @discussion Rotation on a annotation. The annotationRotation based on when the rotation angle is 0 degrees. Must be -180 ~ 180.
+ */
+- (void)updateAnnotationRotation:(NSInteger)annotationRotation;
+
+/**
+ * Method to move stampAnnotation
+ *
+ * @discussion offset
+ */
+- (void)moveSignatureWidgetAnnotationWithActivePage:(CPDFPage *)newActivePage offset:(CPDFKitPlatformPoint)offset;
+
+/**
+ * Method to drag stampAnnotation
+ *
+ * @discussion draggedIndex
+ */
+- (void)dragSignatureWidgetAnnotationWithCurrentPagePoint:(CGPoint)currentPagePoint draggedIndex:(CPDFSignatureWidgetDraggedType)draggedIndex;
+
 @end
 @end
 
 
 @interface CPDFSignatureWidgetAnnotation (Deprecated)
 @interface CPDFSignatureWidgetAnnotation (Deprecated)

+ 34 - 1
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFStampAnnotation.h

@@ -33,6 +33,18 @@ typedef NS_ENUM(NSInteger, CPDFStampShape) {
     CPDFStampShapeNone = 3,
     CPDFStampShapeNone = 3,
 };
 };
 
 
+typedef NS_ENUM(NSInteger, CPDFStampDraggedType) {
+    CPDFStampDraggedTypeNone = -1,
+    CPDFStampDraggedTypeMinXMinY = 0,
+    CPDFStampDraggedTypeMidXMinY = 1,
+    CPDFStampDraggedTypeMaxXMinY = 2,
+    CPDFStampDraggedTypeMaxXMidY = 3,
+    CPDFStampDraggedTypeMaxXMaxY = 4,
+    CPDFStampDraggedTypeMidXMaxY = 5,
+    CPDFStampDraggedTypeMinXMaxY = 6,
+    CPDFStampDraggedTypeMinXMidY = 7,
+};
+
 /**
 /**
  * A CPDFStampAnnotation object allows you to display a word or phrase in a PDF page.
  * A CPDFStampAnnotation object allows you to display a word or phrase in a PDF page.
  *
  *
@@ -84,7 +96,7 @@ typedef NS_ENUM(NSInteger, CPDFStampShape) {
 - (NSArray<NSValue *> *)saveRectRotationPoints;
 - (NSArray<NSValue *> *)saveRectRotationPoints;
 
 
 /**
 /**
- * Method to get / set the  rect befer rotation.
+ * Method to get / set the  rect befer rotation.based on the rect when the rotation angle is 0 degrees.
  *
  *
  * @discussion rect of the current page.
  * @discussion rect of the current page.
  */
  */
@@ -98,4 +110,25 @@ typedef NS_ENUM(NSInteger, CPDFStampShape) {
  */
  */
 @property (nonatomic,assign) NSInteger annotationRotation;
 @property (nonatomic,assign) NSInteger annotationRotation;
 
 
+/**
+ * Method to Quickly set the annotation rotation angle, and simultaneously update the saveRectRotationPoints and annotationRotation property.
+ *
+ * @discussion Rotation on a annotation. The annotationRotation based on when the rotation angle is 0 degrees. Must be -180 ~ 180.
+ */
+- (void)updateAnnotationRotation:(NSInteger)annotationRotation;
+
+/**
+ * Method to move stampAnnotation
+ *
+ * @discussion offset
+ */
+- (void)moveStampAnnotationWithActivePage:(CPDFPage *)newActivePage offset:(CPDFKitPlatformPoint)offset;
+
+/**
+ * Method to drag stampAnnotation
+ *
+ * @discussion draggedIndex
+ */
+- (void)dragStampAnnotationWithCurrentPagePoint:(CGPoint)currentPagePoint draggedIndex:(CPDFStampDraggedType)draggedIndex;
+
 @end
 @end

+ 10 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFView+Editing.h

@@ -584,12 +584,22 @@ typedef NS_OPTIONS(NSInteger, CEditingAreaSelectBorderZoomPointType) {
  */
  */
 - (BOOL)setCurrentSelectionIsItalic:(BOOL)isItalic withTextArea:(CPDFEditTextArea *)editArea;
 - (BOOL)setCurrentSelectionIsItalic:(BOOL)isItalic withTextArea:(CPDFEditTextArea *)editArea;
 
 
+/**
+ * Determine whether a certain range of text is underline.
+ */
+- (BOOL)isUnderlineCurrentSelectionByRangeEditArea:(CPDFEditTextArea *)editArea;
+
 /** Sets the currently selected text show underline.
 /** Sets the currently selected text show underline.
  * @param showUnderline Whether to display underline, YES indicates setting display, NO indicates deleting
  * @param showUnderline Whether to display underline, YES indicates setting display, NO indicates deleting
  * @param textArea The area of the text selected
  * @param textArea The area of the text selected
  */
  */
 - (BOOL)setCurrentSelectionShowUnderline:(BOOL)showUnderline withTextArea:(CPDFEditTextArea *)textArea;
 - (BOOL)setCurrentSelectionShowUnderline:(BOOL)showUnderline withTextArea:(CPDFEditTextArea *)textArea;
 
 
+/**
+ * Determine whether a certain range of text is strikeout.
+ */
+- (BOOL)isStrikeoutCurrentSelectionByRangeEditArea:(CPDFEditTextArea *)editArea;
+
 /** Sets the currently selected text show strikeout.
 /** Sets the currently selected text show strikeout.
  * @param showStrikeout Whether to display strikeout, YES indicates setting display, NO indicates deleting
  * @param showStrikeout Whether to display strikeout, YES indicates setting display, NO indicates deleting
  * @param textArea The area of the text selected
  * @param textArea The area of the text selected

+ 6 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFWatermark.h

@@ -93,6 +93,12 @@ typedef NS_ENUM(NSInteger, CPDFWatermarkHorizontalPosition) {
  */
  */
 @property (nonatomic,strong) CPDFKitPlatformImage *image;
 @property (nonatomic,strong) CPDFKitPlatformImage *image;
 
 
+
+/**
+ * Sets the percentage of the watermark.
+ */
+- (void)setImageSizeWithPercentage:(CGFloat)percentage;
+
 /**
 /**
  * Method to get / set the scale factor for the watermark.
  * Method to get / set the scale factor for the watermark.
  *
  *

+ 20 - 20
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/_CodeSignature/CodeResources

@@ -273,22 +273,22 @@
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			qaATtmiFMwnrDGP9uTIBwl2bjOc=
+			qncOomNcDv0MPWaTXKkkyrF6Ams=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			f+bvcrYRem0FSf9BoqJCcL6rqYz3jblkGbeBcQJ2iKw=
+			F6oagNHpgp359LCfhA+RSbvJ8sl1gM3lg6RVYFT4nc0=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFBates.h</key>
 		<key>Headers/CPDFBates.h</key>
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			bLY4fpR6pN1yOI0qencsqX6uvyw=
+			8NWM6PXbuIDtSS4Zaxy/OA7kypE=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			9kIBiSVxW4HwwmKuwPbqesqexfh4R7QUPXzKdwt/zvk=
+			46FNH8Xgkt3v2hkzbhoxcvy+owEjnLayk8EPONQEjcE=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFBookmark.h</key>
 		<key>Headers/CPDFBookmark.h</key>
@@ -515,11 +515,11 @@
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			Mkyl84LiBQSDwsyMz3UWlPV/2M0=
+			3KfU3pZtxMwjRFcOIJtoJJIvNSA=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			jvIintW8o65rxfCLzUTiSAAeO+Xseze5cImr5OnrX6w=
+			7ivma1Al6+xteTGGl1U35wrpw8UMTCsFeBGWSs6Pr70=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFInkAnnotation+Protected.h</key>
 		<key>Headers/CPDFInkAnnotation+Protected.h</key>
@@ -592,11 +592,11 @@
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			ZVvoTjB3b+azO03wLbqAUIybEJY=
+			3tuOAvGtCQyilzPFS6Mv61w7hUs=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			6lIfOy/Fz29aGH/VbQCK+C3T8ER5aU0SjQYR9OohhZc=
+			hDkPxuNcbjYLPyi8vekfpX9BIdv9HKpCBfGyPMnQrtI=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFLineAnnotation.h</key>
 		<key>Headers/CPDFLineAnnotation.h</key>
@@ -746,11 +746,11 @@
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			3S7+LDUVrge/5W4Fz/xf6QpwX8I=
+			eJRFtJCSbqfLYN9bi1fkEwMeCXk=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			8/VDFt/lwjuWPC9Khu6a9kpPEFjg/8V0OG1dVMGnZzE=
+			Qyn7j8aeHUugjUzkybampkyBK/5xSnVFNQfmgYcpQ2Q=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFPageMetalView.h</key>
 		<key>Headers/CPDFPageMetalView.h</key>
@@ -889,22 +889,22 @@
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			8g2xcW2WjGqxyVgWW8E7ZXDwA7g=
+			DQ29qJAActmfAjFAiJdD9k/ylTA=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			br6WjWg6lvFvvpQGhDKaaQVqrHs7qlrqieCzXsGkLR4=
+			8ftt5wGS5KCuHGOLAHHX/4gZfPTjzpV82fTgm2eFaIs=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFSignatureWidgetAnnotation.h</key>
 		<key>Headers/CPDFSignatureWidgetAnnotation.h</key>
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			9bnzXk6G28ThSPWaGk5/UMl19lg=
+			dNZO42mzu0ITlaQKrrK6Ggv1GM8=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			ZEZbz9Bk6YrY+GYojYlNY7FC/08QpF25shj8dhU5lvQ=
+			LOeVeFRYKs0MD4ndjpF+ovR9Ro6DJOZQ8KQzDU1GJMI=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFSoundAnnotation.h</key>
 		<key>Headers/CPDFSoundAnnotation.h</key>
@@ -933,11 +933,11 @@
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			5mO/Vz88+K01FnOva9gDQ8aPIhM=
+			mMuwRsxJKinXqVZSr97J7OHvPQM=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			QJpWlZRllFlynyu6ZxpvTYbvJOw8u0TTJNYuR/YoNP8=
+			cua7pC+dN3uCr8AN9wl+rmoXtL0gYOESa83iJ2TRtPM=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFSubmitAction.h</key>
 		<key>Headers/CPDFSubmitAction.h</key>
@@ -1032,11 +1032,11 @@
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			La4UoAiZp7JPt8By81ZEq6nzdQs=
+			ysjrRq0AqS6qipDFmtS2/bgRgIQ=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			J75Z8f2wxIT4KH2g4DSR/MJ/gjWX9oqAQujpKcr+Pns=
+			rhQDcf6XgA7yXrGAGNth8cpwolcPtlgtUMApNP3B7O0=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFView+Utilities.h</key>
 		<key>Headers/CPDFView+Utilities.h</key>
@@ -1076,11 +1076,11 @@
 		<dict>
 		<dict>
 			<key>hash</key>
 			<key>hash</key>
 			<data>
 			<data>
-			wEya4/lvBwog2/pjGLP3pY+PVSQ=
+			fFZSzlg5T2UBO9xhzJInpY4fP5I=
 			</data>
 			</data>
 			<key>hash2</key>
 			<key>hash2</key>
 			<data>
 			<data>
-			fIqxeg9vstVifMhgpZwD7YWJaz6q008TBjOLKigR3Ec=
+			xaN5ieysmg2SRRYAuaZEFdMAy25onXPMnyTZSeEa24g=
 			</data>
 			</data>
 		</dict>
 		</dict>
 		<key>Headers/CPDFWidgetAnnotation+Protected.h</key>
 		<key>Headers/CPDFWidgetAnnotation+Protected.h</key>

+ 4 - 10
PDF Office/PDF Reader Pro.xcodeproj/project.pbxproj

@@ -17844,13 +17844,11 @@
 				CLANG_ENABLE_MODULES = YES;
 				CLANG_ENABLE_MODULES = YES;
 				CODE_SIGN_ENTITLEMENTS = "PDF Reader Pro DMG.entitlements";
 				CODE_SIGN_ENTITLEMENTS = "PDF Reader Pro DMG.entitlements";
 				CODE_SIGN_IDENTITY = "Apple Development";
 				CODE_SIGN_IDENTITY = "Apple Development";
-				"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Mac Developer";
-				CODE_SIGN_STYLE = Manual;
+				CODE_SIGN_STYLE = Automatic;
 				COMBINE_HIDPI_IMAGES = YES;
 				COMBINE_HIDPI_IMAGES = YES;
 				CURRENT_PROJECT_VERSION = 202410250;
 				CURRENT_PROJECT_VERSION = 202410250;
 				DEFINES_MODULE = YES;
 				DEFINES_MODULE = YES;
-				DEVELOPMENT_TEAM = "";
-				"DEVELOPMENT_TEAM[sdk=macosx*]" = 4GGQPGRTSV;
+				DEVELOPMENT_TEAM = 4GGQPGRTSV;
 				ENABLE_HARDENED_RUNTIME = YES;
 				ENABLE_HARDENED_RUNTIME = YES;
 				EXCLUDED_ARCHS = "";
 				EXCLUDED_ARCHS = "";
 				FRAMEWORK_SEARCH_PATHS = (
 				FRAMEWORK_SEARCH_PATHS = (
@@ -18023,7 +18021,6 @@
 				PRODUCT_BUNDLE_IDENTIFIER = com.brother.pdfreaderprofree.mac;
 				PRODUCT_BUNDLE_IDENTIFIER = com.brother.pdfreaderprofree.mac;
 				PRODUCT_NAME = "PDF Reader Pro";
 				PRODUCT_NAME = "PDF Reader Pro";
 				PROVISIONING_PROFILE_SPECIFIER = "";
 				PROVISIONING_PROFILE_SPECIFIER = "";
-				"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = pdfreaderpro_development_provisioning;
 				SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG VERSION_FREE VERSION_DMG";
 				SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG VERSION_FREE VERSION_DMG";
 				SWIFT_EMIT_LOC_STRINGS = YES;
 				SWIFT_EMIT_LOC_STRINGS = YES;
 				SWIFT_OBJC_BRIDGING_HEADER = "PDF Master/PDF_Reader_Pro DMG-Bridging-Header.h";
 				SWIFT_OBJC_BRIDGING_HEADER = "PDF Master/PDF_Reader_Pro DMG-Bridging-Header.h";
@@ -18041,13 +18038,11 @@
 				CLANG_ENABLE_MODULES = YES;
 				CLANG_ENABLE_MODULES = YES;
 				CODE_SIGN_ENTITLEMENTS = "PDF Reader Pro DMG.entitlements";
 				CODE_SIGN_ENTITLEMENTS = "PDF Reader Pro DMG.entitlements";
 				CODE_SIGN_IDENTITY = "Apple Development";
 				CODE_SIGN_IDENTITY = "Apple Development";
-				"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Mac Developer";
-				CODE_SIGN_STYLE = Manual;
+				CODE_SIGN_STYLE = Automatic;
 				COMBINE_HIDPI_IMAGES = YES;
 				COMBINE_HIDPI_IMAGES = YES;
 				CURRENT_PROJECT_VERSION = 202410250;
 				CURRENT_PROJECT_VERSION = 202410250;
 				DEFINES_MODULE = YES;
 				DEFINES_MODULE = YES;
-				DEVELOPMENT_TEAM = "";
-				"DEVELOPMENT_TEAM[sdk=macosx*]" = 4GGQPGRTSV;
+				DEVELOPMENT_TEAM = 4GGQPGRTSV;
 				ENABLE_HARDENED_RUNTIME = YES;
 				ENABLE_HARDENED_RUNTIME = YES;
 				EXCLUDED_ARCHS = "";
 				EXCLUDED_ARCHS = "";
 				FRAMEWORK_SEARCH_PATHS = (
 				FRAMEWORK_SEARCH_PATHS = (
@@ -18218,7 +18213,6 @@
 				PRODUCT_BUNDLE_IDENTIFIER = com.brother.pdfreaderprofree.mac;
 				PRODUCT_BUNDLE_IDENTIFIER = com.brother.pdfreaderprofree.mac;
 				PRODUCT_NAME = "PDF Reader Pro";
 				PRODUCT_NAME = "PDF Reader Pro";
 				PROVISIONING_PROFILE_SPECIFIER = "";
 				PROVISIONING_PROFILE_SPECIFIER = "";
-				"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = pdfreaderpro_development_provisioning;
 				SWIFT_ACTIVE_COMPILATION_CONDITIONS = "VERSION_FREE VERSION_DMG";
 				SWIFT_ACTIVE_COMPILATION_CONDITIONS = "VERSION_FREE VERSION_DMG";
 				SWIFT_EMIT_LOC_STRINGS = YES;
 				SWIFT_EMIT_LOC_STRINGS = YES;
 				SWIFT_OBJC_BRIDGING_HEADER = "PDF Master/PDF_Reader_Pro DMG-Bridging-Header.h";
 				SWIFT_OBJC_BRIDGING_HEADER = "PDF Master/PDF_Reader_Pro DMG-Bridging-Header.h";