Skip to content

Commit

Permalink
Piwik PRO SDK for iOS VERSION 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mandrzej authored Feb 15, 2024
1 parent e028527 commit 366cb89
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.2.3 - 15.02.2024

### Added
- New events" `applicationInstall` and `applicationUpdate`.

## 1.2.2 - 25.01.2024

### Added
Expand Down
2 changes: 1 addition & 1 deletion PiwikPROSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

s.name = "PiwikPROSDK"
s.version = "1.2.2"
s.version = "1.2.3"
s.summary = "Piwik PRO SDK for iOS"

s.description = "SDK for iOS to measure your apps with Piwik PRO"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,21 @@ typedef NS_ENUM(NSUInteger, CustomVariableScope)
@return YES if the event was queued for dispatching. NO if current app version was already tracked.
*/
- (BOOL)sendApplicationDownload NS_SWIFT_NAME(sendApplicationDownload());
- (BOOL)sendApplicationDownload NS_SWIFT_NAME(sendApplicationDownload()) __deprecated_msg("Use applicationInstall instead.");

/**
Track installation of the app. The event can be sent only once for each installation of the application.
@return YES if the event was queued for dispatching. NO if current app version was already tracked.
*/
- (BOOL)applicationInstall NS_SWIFT_NAME(applicationInstall());

/**
Track updates of the app. The event can be sent once per app version.
@return YES if the event was queued for dispatching. NO if current app version was already tracked.
*/
- (BOOL)applicationUpdate NS_SWIFT_NAME(applicationUpdate());

/**
Track a download initiated by the app.
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,21 @@ typedef NS_ENUM(NSUInteger, CustomVariableScope)
@return YES if the event was queued for dispatching. NO if current app version was already tracked.
*/
- (BOOL)sendApplicationDownload NS_SWIFT_NAME(sendApplicationDownload());
- (BOOL)sendApplicationDownload NS_SWIFT_NAME(sendApplicationDownload()) __deprecated_msg("Use applicationInstall instead.");

/**
Track installation of the app. The event can be sent only once for each installation of the application.
@return YES if the event was queued for dispatching. NO if current app version was already tracked.
*/
- (BOOL)applicationInstall NS_SWIFT_NAME(applicationInstall());

/**
Track updates of the app. The event can be sent once per app version.
@return YES if the event was queued for dispatching. NO if current app version was already tracked.
*/
- (BOOL)applicationUpdate NS_SWIFT_NAME(applicationUpdate());

/**
Track a download initiated by the app.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</data>
<key>Headers/PiwikTracker.h</key>
<data>
EaCVT+66oKAF+P6/LC+2KdPY0S0=
ikMRhnsKuqUPSDhw9F26gYKANbc=
</data>
<key>Headers/PiwikTransaction.h</key>
<data>
Expand Down Expand Up @@ -99,11 +99,11 @@
<dict>
<key>hash</key>
<data>
EaCVT+66oKAF+P6/LC+2KdPY0S0=
ikMRhnsKuqUPSDhw9F26gYKANbc=
</data>
<key>hash2</key>
<data>
1ZD39LDpXvYbPbUNf1B+igtzqrFT8A1Xg24rCRoaMCg=
YEwbmIfRsVx2LJn/wAHKcPPrsFYVTw2GT01vVW7ARwI=
</data>
</dict>
<key>Headers/PiwikTransaction.h</key>
Expand Down

0 comments on commit 366cb89

Please sign in to comment.