CocoaPods could not find compatible versions for pod "PULPulsate"
If you are having problems with installing a specific version of PULPulsate please try using the following commands in the order specified below:
- pod repo update
- pod deintegrate
- pod install --repo-update
- pod update --repo-update
17.11.2022 | 4.0.5 | Improvements: - showLastInAppNotification() changed to showLastInAppNotification( _ forceShow: Bool = false) - when force is true the SDK will be forced to show the last received In App Notification even if isInAppNotificationEnabled() returns false. By default force is set to false. |
27.10.2022 | 4.0.4 | Bug Fixes: - PULTextBlock is now public. - PULTextStyle is now public. |
26.10.2022 | 4.0.3 | Bug Fixes: - BUILD_LIBRARY_FOR_DISTRIBUTION is now YES. This should fix build errors caused by Swift version mismatch. - PULPulsateUnauthorizedManagerDelegate and PULPulsateBadgeDelegate are now public. - Unread color fix - card buttons should now properly change when cards are read. |
16.09.2022 | 4.0.0 | iOS 15 Release - Built using Xcode 13.4.1 (13F100) Improvements: 1. SDK has written into Swift. 2. Improved rendering ui layout in in-apps. 3. Improved rendering ui layout in Feed. 4. Improved location checking. 5. Improved geofencing. 6. Improved push notification responses. |
05.12.2922 | 3.8.1 | Improvements: - Backported In App Improvements from 4.0.5. - showLastInAppNotification() changed to showLastInAppNotification( _ forceShow: Bool = false) - when force is true the SDK will be forced to show the last received In App Notification even if isInAppNotificationEnabled() returns false. By default force is set to false. |
14.10.2021 | 3.8.0 | iOS 15 Release - Built using Xcode 13.0 (13A233) Improvements: 1. Improved Accessibility - navigation, voice over support, element sizes, ui grouping. 2. Improved geofencing accuracy on iOS 15. 3. Small In Apps can now be dismissed by swiping them left or right. 4. Small In Apps will now try to always show below the toolbar and above bottom navigation elements. 5. Simplified and reduced the amount of background tasks running. 6. Code cleanup - removed many warnings, divided large chunks of code into smaller methods, removed whitespaces in many places, fixed code formatting in many places. Bug Fixes: 1. Push notifications will now properly open talks when the app is force closed. 2. Push notifications with expired cards will no longer take the user to a feed that loads forever. 3. Fixed edge cases that could cause "destination feed" from sometimes not taking the user to the feed. 4. New Thread Button will now animate properly (hide / show) when the user scrolls the Feed. |
18.06.2021 | 3.7.0 | New Features: 1. Added collecting background_permission state in update_user and end_session. 2. The SDK will now collect stats about pushes, in apps, cards. Bug Fixes: 1. Fixed crash that happened when the user was in the inbox and received a card message. 2. Fixed a bug that could cause the inbox to be stuck in forever loading state when returning to the inbox from a single card view. 3. User Actions will be deleted after they have been successfully sent to the server. |
05.02.2021 | 2.23.1 | Improvements: 1. Implemented SDWebImage. Will be used to download and cache all images in the SDK. 2. Simplified start session logic. 3. Start Session will now always have withData = YES. This means beacons and geofences will be refreshed on every start session. |
21.10.2020 | 2.22.0 | New Features: 1. New configs in PulsateConfigruration.json - pulsate_top_nav_bar_title_size, pulsate_top_nav_bar_title_expand_size, pulsate_card_left_btn_color, pulsate_card_right_btn_color, pulsate_card_single_btn_color. These allow to change the size of the title in the toolbar and allows changing button colors of cards in the Pulsate Feed. Improvements: 1. Updated targeted platform to iOS 9.0. 2. Fixed building SDK with xCode12. Bug Fixes: 1. Fixed title in conversations showing the wrong title for a second and later updating itself to the proper title. 2. Fixed finding the top most view controller. This fixes a bug where In Apps sometimes would not move to the proper destination - for example opening the Feed. 3. In Apps will now always render on top of all views. This fixes a bug where In Apps if big enough would be rendered under the toolbar. |
16.09.2020 | 2.20.0 | New Features: 1. New Method - updatePhoneNumber() - Updates the user's phone number. Gets updated when entering background. 2. Implemented Screen Recording - the SDK will automatically track what screens of the App the user visits. |
18.06.2020 | 2.19.1 | Bug Fixes: 1. Fixed possible null pointer in In App Notifications. |
05.06.2020 | 2.19.0 | New Features: 1. New method - getFeed:withListener: - Allows Developers to get the Pulsate Inbox JSON that can be later rendered in a custom way. 2. New method - handleFeedClick: - When using - getFeed:withListener: - We recommend using this method to pass user onClick events to Pulsate to properly handle them. Pulsate will make sure that the click does what it should do - open url, open deeplink, send custom events, record opens / clicks. Improvements: 1. Sessions will now check if UIApplicationStateActive before starting a session. 2. Network improvements - reduced the amount of requests being done by the SDK in the background. 3. PulsateAppDelegate - added new AppDelegate callback - application:continueUserActivity:restorationHandler: 4. Code Cleanup. Fixed a few nullability warnings. Bug Fixes: 1. Fixed possible null pointer in saveSessionWithData. |
13.05.2020 | 2.18.0 | New Features: 1. RevenueEvents - expanded Events that allow to set event name, event currency, event value. Improvements: 1. Increased the minimum distance filter when checking for location. This will reduce the amount of location updates. 2. Reduced the amount of location scans, the SDK will rely more on Significant Location Change callbacks. 3. Beacon Events will now be filtered by Major / Minor. Beacons with Major / Minor that don't match any Beacon in the database will not be sent to the server. 4. Start Session will only download Beacons and Geofences once every 24h. Bug Fixes: 1. Attributes no longer use CGFloat due to precision issues, replaced with NSDecimalNumber. 2. Fixed disabling In App Notifications when using enableInAppNotification(false). 3. Fixed possible bug that would cause Inbox to load forever in some cases. |
31.03.2020 | 2.17.0 | Major Changes: 1. Removed AFNetworking. 2. Removed SSZipArchive. 3. Reworked all networking to use NSURLSession and NSURLSessionDataTask. Improvements: 1. Create Thread setting will now be stored in the Database. 2. Privacy setting will now be stored in the Database. 3. In App Notification setting will now be stored in the Database. 4. All Pulsate related View Controlles will now load in Full Screen style even on iOS13. iOS13 by default sets all View Controllers to Card Style and this change also effected the Feed. Bugfixes: 1. Fixed a possible crash in Talks when a user would enter a Talk via a Notification, but the Talk would fail to load properly. 2. Fixed counting impressions, clicks, opens. There were some edge cases where an impression / open / click would not be recorded or sometimes be recorded twice for the same user. Cleanup: 1. Removed startSessionWithoutData. The flag was never implemented server side, so it has been removed SDK side. |
29.01.2020 | 2.16.5 | 1. Removed bluetooth_state. 2. Fixed sending custom attributes. |