Skip to content

Commit e011c84

Browse files
Merge pull request #19 from kaferi/master
Update to v19.11
2 parents 1edd0dc + e310bc4 commit e011c84

17 files changed

+984
-8
lines changed

AsposePdfCloud.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pod::Spec.new do |s|
55
s.ios.deployment_target = '10.0'
66
s.osx.deployment_target = '10.11'
77
s.tvos.deployment_target = '9.0'
8-
s.version = '19.10.0'
8+
s.version = '19.11.0'
99
s.swift_version = '4.1'
1010
s.source = { :git => 'https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-swift.git', :tag => s.version.to_s }
1111
s.authors = 'Aspose PDF Cloud'

AsposePdfCloud.xcodeproj/project.pbxproj

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
125EF5D9236C7F1F0013E682 /* RadioButtonField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 125EF5D3236C7F1F0013E682 /* RadioButtonField.swift */; };
2020
125EF5DA236C7F1F0013E682 /* RadioButtonFieldsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 125EF5D4236C7F1F0013E682 /* RadioButtonFieldsResponse.swift */; };
2121
125EF5DB236C7F1F0013E682 /* RadioButtonOptionField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 125EF5D5236C7F1F0013E682 /* RadioButtonOptionField.swift */; };
22+
128B4CEB238C25F500877D55 /* ComboBoxFieldsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 128B4CE7238C25F500877D55 /* ComboBoxFieldsResponse.swift */; };
23+
128B4CEC238C25F500877D55 /* ComboBoxFieldResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 128B4CE8238C25F500877D55 /* ComboBoxFieldResponse.swift */; };
24+
128B4CED238C25F500877D55 /* ComboBoxField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 128B4CE9238C25F500877D55 /* ComboBoxField.swift */; };
25+
128B4CEE238C25F500877D55 /* ComboBoxFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 128B4CEA238C25F500877D55 /* ComboBoxFields.swift */; };
2226
1E52FD8B2189F2AB00DEDC40 /* LineAnnotation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E52FD702189F2A700DEDC40 /* LineAnnotation.swift */; };
2327
1E52FD8C2189F2AB00DEDC40 /* PolygonAnnotation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E52FD712189F2A700DEDC40 /* PolygonAnnotation.swift */; };
2428
1E52FD8D2189F2AB00DEDC40 /* CircleAnnotationsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E52FD722189F2A700DEDC40 /* CircleAnnotationsResponse.swift */; };
@@ -409,6 +413,10 @@
409413
125EF5D3236C7F1F0013E682 /* RadioButtonField.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RadioButtonField.swift; sourceTree = "<group>"; };
410414
125EF5D4236C7F1F0013E682 /* RadioButtonFieldsResponse.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RadioButtonFieldsResponse.swift; sourceTree = "<group>"; };
411415
125EF5D5236C7F1F0013E682 /* RadioButtonOptionField.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RadioButtonOptionField.swift; sourceTree = "<group>"; };
416+
128B4CE7238C25F500877D55 /* ComboBoxFieldsResponse.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ComboBoxFieldsResponse.swift; sourceTree = "<group>"; };
417+
128B4CE8238C25F500877D55 /* ComboBoxFieldResponse.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ComboBoxFieldResponse.swift; sourceTree = "<group>"; };
418+
128B4CE9238C25F500877D55 /* ComboBoxField.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ComboBoxField.swift; sourceTree = "<group>"; };
419+
128B4CEA238C25F500877D55 /* ComboBoxFields.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ComboBoxFields.swift; sourceTree = "<group>"; };
412420
1E52FD702189F2A700DEDC40 /* LineAnnotation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LineAnnotation.swift; sourceTree = "<group>"; };
413421
1E52FD712189F2A700DEDC40 /* PolygonAnnotation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PolygonAnnotation.swift; sourceTree = "<group>"; };
414422
1E52FD722189F2A700DEDC40 /* CircleAnnotationsResponse.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CircleAnnotationsResponse.swift; sourceTree = "<group>"; };
@@ -834,6 +842,10 @@
834842
1E668AE72174AFC2004218A8 /* Models */ = {
835843
isa = PBXGroup;
836844
children = (
845+
128B4CE9238C25F500877D55 /* ComboBoxField.swift */,
846+
128B4CE8238C25F500877D55 /* ComboBoxFieldResponse.swift */,
847+
128B4CEA238C25F500877D55 /* ComboBoxFields.swift */,
848+
128B4CE7238C25F500877D55 /* ComboBoxFieldsResponse.swift */,
837849
1E668B072174AFF2004218A8 /* Annotation.swift */,
838850
1E668B1C2174AFF4004218A8 /* AnnotationFlags.swift */,
839851
1E668B0B2174AFF2004218A8 /* AnnotationInfo.swift */,
@@ -1521,6 +1533,7 @@
15211533
1E668B822174AFFC004218A8 /* TextAnnotation.swift in Sources */,
15221534
1EC024CA21E750BB00450DE6 /* DiscUsageResponse.swift in Sources */,
15231535
125EF5CC236C7E1D0013E682 /* CheckBoxFieldsResponse.swift in Sources */,
1536+
128B4CEE238C25F500877D55 /* ComboBoxFields.swift in Sources */,
15241537
1EC94E6A2282C1FF00624E38 /* ImageHeader.swift in Sources */,
15251538
1E668B7F2174AFFC004218A8 /* HtmlMarkupGenerationModes.swift in Sources */,
15261539
1E668BB92174AFFC004218A8 /* RasterImagesSavingModes.swift in Sources */,
@@ -1568,6 +1581,7 @@
15681581
1E668AE22174AFA4004218A8 /* Extensions.swift in Sources */,
15691582
1E9A4AD922280BBB00BE3FA5 /* ScreenAnnotation.swift in Sources */,
15701583
1E668B9B2174AFFC004218A8 /* LinkActionType.swift in Sources */,
1584+
128B4CEC238C25F500877D55 /* ComboBoxFieldResponse.swift in Sources */,
15711585
1E52FD942189F2AB00DEDC40 /* SquareAnnotation.swift in Sources */,
15721586
1E9A4AD322280BBB00BE3FA5 /* StampIcon.swift in Sources */,
15731587
1E52FD9A2189F2AB00DEDC40 /* SquareAnnotationResponse.swift in Sources */,
@@ -1608,6 +1622,7 @@
16081622
1E668B802174AFFC004218A8 /* HtmlDocumentType.swift in Sources */,
16091623
1E9D85BA21B55DF50026DB97 /* PopupAnnotations.swift in Sources */,
16101624
1E668B622174AFFC004218A8 /* MarkupAnnotation.swift in Sources */,
1625+
128B4CED238C25F500877D55 /* ComboBoxField.swift in Sources */,
16111626
1E668BA02174AFFC004218A8 /* AnnotationType.swift in Sources */,
16121627
1ECF708622562DCE0056698E /* TablesRecognizedResponse.swift in Sources */,
16131628
1E668B672174AFFC004218A8 /* Attachments.swift in Sources */,
@@ -1676,6 +1691,7 @@
16761691
1EF1EC1C220B3BF000200CEF /* FileIcon.swift in Sources */,
16771692
1EF1EC11220B3BF000200CEF /* MovieAnnotationsResponse.swift in Sources */,
16781693
1E52FD9F2189F2AB00DEDC40 /* SquareAnnotations.swift in Sources */,
1694+
128B4CEB238C25F500877D55 /* ComboBoxFieldsResponse.swift in Sources */,
16791695
125EF5D8236C7F1F0013E682 /* RadioButtonFieldResponse.swift in Sources */,
16801696
1E668B522174AFFC004218A8 /* StampType.swift in Sources */,
16811697
1E52FD972189F2AB00DEDC40 /* CircleAnnotationResponse.swift in Sources */,
@@ -1957,7 +1973,7 @@
19571973
"@executable_path/Frameworks",
19581974
"@loader_path/Frameworks",
19591975
);
1960-
MARKETING_VERSION = 19.10.0;
1976+
MARKETING_VERSION = 19.11.0;
19611977
PRODUCT_BUNDLE_IDENTIFIER = com.aspose.AsposePdfCloud;
19621978
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
19631979
SKIP_INSTALL = YES;
@@ -1986,7 +2002,7 @@
19862002
"@executable_path/Frameworks",
19872003
"@loader_path/Frameworks",
19882004
);
1989-
MARKETING_VERSION = 19.10.0;
2005+
MARKETING_VERSION = 19.11.0;
19902006
PRODUCT_BUNDLE_IDENTIFIER = com.aspose.AsposePdfCloud;
19912007
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
19922008
SKIP_INSTALL = YES;

AsposePdfCloud/APIs.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ open class RequestBuilder<T> {
4343

4444
required public init(method: String, URLString: String, parameters: [String:Any]?, isBody: Bool, headers: [String:String] = [:]) {
4545
self.method = method
46-
self.URLString = URLString
46+
self.URLString = URLString.replacingOccurrences(of: " ", with: "+")
4747
self.parameters = parameters
4848
self.isBody = isBody
4949
self.headers = headers

0 commit comments

Comments
 (0)