Skip to content

Commit de1c89d

Browse files
author
Diego Serrano
committed
Fix encoding issue
1 parent c8e99cb commit de1c89d

File tree

12 files changed

+297
-331
lines changed

12 files changed

+297
-331
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 3
22
jobs:
33
build-and-test:
44
macos:
5-
xcode: "13.2.1"
5+
xcode: "15.2.0"
66
environment:
77
FL_OUTPUT_DIR: output
88

@@ -12,7 +12,7 @@ jobs:
1212
name: Build and run tests
1313
command: fastlane scan
1414
environment:
15-
SCAN_DEVICE: iPhone 8
15+
SCAN_DEVICE: iPhone 12
1616
SCAN_SCHEME: WootricSDK
1717

1818
- store_test_results:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.26.3 (2024-01-22)
2+
3+
### Changes:
4+
5+
- Fix encoding issue on iOS 17
6+
17
## 0.26.2 (2023-08-08)
28

39
### Changes:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The easiest way to get Wootric into your iOS project is to use [CocoaPods](http:
2828

2929
2. Create a file in your Xcode project called Podfile and add the following line:
3030
```ruby
31-
pod "WootricSDK", "~> 0.26.2"
31+
pod "WootricSDK", "~> 0.26.3"
3232
```
3333

3434
3. In your Xcode project directory run the following command:

WootricSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'WootricSDK'
3-
s.version = '0.26.2'
3+
s.version = '0.26.3'
44
s.license = 'MIT'
55
s.summary = 'Wootric SDK for displaying survey for end user.'
66
s.homepage = 'https://github.com/Wootric/WootricSDK-iOS'

WootricSDK/WootricSDK.xcodeproj/project.pbxproj

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@
5858
B2102A3B1BB59AE60025DABC /* WTRSurvey.h in Headers */ = {isa = PBXBuildFile; fileRef = B2102A371BB59AE60025DABC /* WTRSurvey.h */; };
5959
B2102A3C1BB59AE60025DABC /* WTRSurvey.m in Sources */ = {isa = PBXBuildFile; fileRef = B2102A381BB59AE60025DABC /* WTRSurvey.m */; };
6060
B21372961BED0DB1009F5974 /* WTRSurveyTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B21372951BED0DB1009F5974 /* WTRSurveyTests.m */; };
61-
B229766D1BB0036100FC2772 /* WTRPropertiesParser.h in Headers */ = {isa = PBXBuildFile; fileRef = B229766B1BB0036100FC2772 /* WTRPropertiesParser.h */; };
62-
B229766E1BB0036100FC2772 /* WTRPropertiesParser.m in Sources */ = {isa = PBXBuildFile; fileRef = B229766C1BB0036100FC2772 /* WTRPropertiesParser.m */; };
6361
B22976751BB1404D00FC2772 /* WTRCustomThankYou.h in Headers */ = {isa = PBXBuildFile; fileRef = B22976731BB1404D00FC2772 /* WTRCustomThankYou.h */; };
6462
B22976761BB1404D00FC2772 /* WTRCustomThankYou.m in Sources */ = {isa = PBXBuildFile; fileRef = B22976741BB1404D00FC2772 /* WTRCustomThankYou.m */; };
6563
B229767D1BB1901500FC2772 /* WTRThankYouButton.h in Headers */ = {isa = PBXBuildFile; fileRef = B229767B1BB1901500FC2772 /* WTRThankYouButton.h */; };
@@ -197,8 +195,6 @@
197195
B2102A371BB59AE60025DABC /* WTRSurvey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WTRSurvey.h; sourceTree = "<group>"; };
198196
B2102A381BB59AE60025DABC /* WTRSurvey.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WTRSurvey.m; sourceTree = "<group>"; };
199197
B21372951BED0DB1009F5974 /* WTRSurveyTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WTRSurveyTests.m; sourceTree = "<group>"; };
200-
B229766B1BB0036100FC2772 /* WTRPropertiesParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WTRPropertiesParser.h; sourceTree = "<group>"; };
201-
B229766C1BB0036100FC2772 /* WTRPropertiesParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WTRPropertiesParser.m; sourceTree = "<group>"; };
202198
B22976731BB1404D00FC2772 /* WTRCustomThankYou.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WTRCustomThankYou.h; sourceTree = "<group>"; };
203199
B22976741BB1404D00FC2772 /* WTRCustomThankYou.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WTRCustomThankYou.m; sourceTree = "<group>"; };
204200
B229767B1BB1901500FC2772 /* WTRThankYouButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WTRThankYouButton.h; sourceTree = "<group>"; };
@@ -468,8 +464,6 @@
468464
B24550901B8E0188001AC1FB /* WTRColor.m */,
469465
B2C940621BA30AFB00482494 /* UIImage+ImageFromColor.h */,
470466
B2C940631BA30AFB00482494 /* UIImage+ImageFromColor.m */,
471-
B229766B1BB0036100FC2772 /* WTRPropertiesParser.h */,
472-
B229766C1BB0036100FC2772 /* WTRPropertiesParser.m */,
473467
178571962088FCA700CCBE02 /* WTRLogger.h */,
474468
178571972088FCA700CCBE02 /* WTRLogger.m */,
475469
0FE0F3F720DC041B00499248 /* WTRNotificationCenter.h */,
@@ -625,7 +619,6 @@
625619
0FE0F3F920DC041B00499248 /* WTRNotificationCenter.h in Headers */,
626620
B22976751BB1404D00FC2772 /* WTRCustomThankYou.h in Headers */,
627621
B24550911B8E0188001AC1FB /* WTRColor.h in Headers */,
628-
B229766D1BB0036100FC2772 /* WTRPropertiesParser.h in Headers */,
629622
B2102A2D1BB59ABC0025DABC /* WTRDefaults.h in Headers */,
630623
B2DC6F371B82143B00F599B3 /* WTRSettings.h in Headers */,
631624
B25CE75F1BAADC920063E6E5 /* WTRQuestionView.h in Headers */,
@@ -760,7 +753,6 @@
760753
0FE0F3FE20DC059700499248 /* WTRDefaultNotificationCenter.m in Sources */,
761754
B2102A341BB59ACE0025DABC /* WTRCustomMessages.m in Sources */,
762755
B22976761BB1404D00FC2772 /* WTRCustomThankYou.m in Sources */,
763-
B229766E1BB0036100FC2772 /* WTRPropertiesParser.m in Sources */,
764756
7E0D324024207C960034CEBD /* WTROperation.m in Sources */,
765757
B260ECDE1BD7E5B200E29CD5 /* UIView+Constraints.m in Sources */,
766758
B268666F1BD5339800A4288D /* WTRiPADSurveyViewController.m in Sources */,
@@ -972,7 +964,7 @@
972964
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
973965
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
974966
MACH_O_TYPE = mh_dylib;
975-
MARKETING_VERSION = 0.26.2;
967+
MARKETING_VERSION = 0.26.3;
976968
MODULEMAP_FILE = "";
977969
PRODUCT_BUNDLE_IDENTIFIER = "com.wootric.$(PRODUCT_NAME:rfc1034identifier)";
978970
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -999,7 +991,7 @@
999991
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1000992
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1001993
MACH_O_TYPE = mh_dylib;
1002-
MARKETING_VERSION = 0.26.2;
994+
MARKETING_VERSION = 0.26.3;
1003995
MODULEMAP_FILE = "";
1004996
PRODUCT_BUNDLE_IDENTIFIER = "com.wootric.$(PRODUCT_NAME:rfc1034identifier)";
1005997
PRODUCT_NAME = "$(TARGET_NAME)";

0 commit comments

Comments
 (0)