Skip to content

Commit 8f0e91c

Browse files
authored
Merge pull request #375 from Countly/arifBurakDemiray-patch-1
fix: recursive set
2 parents da6882a + 586086d commit 8f0e91c

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 25.1.1
2+
* Mitigated an issue while setting zone timer interval for content.
3+
14
## 25.1.0
25
* Added dynamic resizing functionality for the content zone
36
* Added a config option to content (setZoneTimerInterval) to set content zone timer. (Experimental!)

Countly-PL.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 = 'Countly-PL'
3-
s.version = '25.1.0'
3+
s.version = '25.1.1'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
66
s.homepage = 'https://github.com/Countly/countly-sdk-ios'

Countly.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 = 'Countly'
3-
s.version = '25.1.0'
3+
s.version = '25.1.1'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
66
s.homepage = 'https://github.com/Countly/countly-sdk-ios'

Countly.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@
738738
"@loader_path/Frameworks",
739739
);
740740
MACOSX_DEPLOYMENT_TARGET = 10.14;
741-
MARKETING_VERSION = 25.1.0;
741+
MARKETING_VERSION = 25.1.1;
742742
PRODUCT_BUNDLE_IDENTIFIER = ly.count.CountlyiOSSDK;
743743
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
744744
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -770,7 +770,7 @@
770770
"@loader_path/Frameworks",
771771
);
772772
MACOSX_DEPLOYMENT_TARGET = 10.14;
773-
MARKETING_VERSION = 25.1.0;
773+
MARKETING_VERSION = 25.1.1;
774774
PRODUCT_BUNDLE_IDENTIFIER = ly.count.CountlyiOSSDK;
775775
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
776776
PROVISIONING_PROFILE_SPECIFIER = "";

CountlyCommon.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ @interface CountlyCommon ()
2929
#endif
3030
@end
3131

32-
NSString* const kCountlySDKVersion = @"25.1.0";
32+
NSString* const kCountlySDKVersion = @"25.1.1";
3333
NSString* const kCountlySDKName = @"objc-native-ios";
3434

3535
NSString* const kCountlyErrorDomain = @"ly.count.ErrorDomain";

CountlyContentConfig.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,25 +27,25 @@ - (instancetype)init
2727
#if (TARGET_OS_IOS)
2828
-(void)setGlobalContentCallback:(ContentCallback) callback
2929
{
30-
self.contentCallback = callback;
30+
_contentCallback = callback;
3131
}
3232

3333
- (ContentCallback) getGlobalContentCallback
3434
{
35-
return self.contentCallback;
35+
return _contentCallback;
3636
}
3737

3838

3939
-(void)setZoneTimerInterval:(NSUInteger)zoneTimerIntervalSeconds
4040
{
4141
if (zoneTimerIntervalSeconds > 15) {
42-
self.zoneTimerInterval = zoneTimerIntervalSeconds;
42+
_zoneTimerInterval = zoneTimerIntervalSeconds;
4343
}
4444
}
4545

4646
- (NSUInteger) getZoneTimerInterval
4747
{
48-
return self.zoneTimerInterval;
48+
return _zoneTimerInterval;
4949
}
5050
#endif
5151

0 commit comments

Comments
 (0)