Skip to content

Commit

Permalink
v4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
avalore committed Oct 13, 2023
1 parent 78887ec commit 82b0fd7
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 13 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 4.4.1
- Added dispute/chargeback errors to verification and activation methods for licenses that are associated with orders that have an active dispute/chargeback.
- Implemented internal security updates aimed at minimizing fraudulent activations.
- Improved license verification logic to correctly report unverified activations. Previously, certain scenarios, such as manual removal of an activation via the dashboard, would erroneously trigger an “Unable to verify” error. This has now been fixed and returns the correct state.
- Changed checkout sizing to better support the new checkout design. The new checkout design is wider than previous versions and the SDK checkout window has been updated to accommodate this.
- Fixed popup issues when retrying PayPal payments. Previously, It was possible to open multiple Paypal popup windows for the same checkout, this has now been resolved and we now close the original popup before allowing the buyer to open a new one.
- Addressed an issue that was preventing the local license file expiry date from being updated when calling the verify method, this will cover cases where the license has expired or the expiry has been changed via the dashboard. Previously we were returning the correct error but we were not updating the license file accordingly.

# 4.4.0
- Improvements for SwiftUI - We’ve updated the UI methods to make it easier to use with SwiftUI. Download the updated [Sample app here](https://github.com/PaddleHQ/sdk-mac-v4-sample) where we demonstrate best practices for using the SDK in SwiftUI
- Ventura UI Updates - The UI has been restructured for Ventura to allow for future customisation and improvements
Expand Down
9 changes: 8 additions & 1 deletion Paddle.framework/Versions/A/Headers/PADError.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@ typedef NS_ENUM(NSInteger, PADErrorCode) {
PADErrorNoLicenseCode = -129,

PADErrorNoActivations = -130,

PADErrorChargebackFound = -131,
};

/**
Expand Down Expand Up @@ -238,5 +240,10 @@ typedef NS_ENUM(NSInteger, PADAPIErrorCode) {
/**
* @discussion Specifies that the machine identifier does not match the activation
*/
PADAPIErrorUUIDNotMached = 144
PADAPIErrorUUIDNotMached = 144,

/**
* @discussion Specifies that the order for the license has received a chargeback
*/
PADAPIErrorChargebackFound = 146
};
Binary file modified Paddle.framework/Versions/A/Paddle
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
18 changes: 9 additions & 9 deletions Paddle.framework/Versions/A/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>22A379</string>
<string>23A344</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -17,29 +17,29 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.4.0</string>
<string>4.4.1</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>4.4.0</string>
<string>4.4.1</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>14A5294e</string>
<string></string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>13.0</string>
<string>14.0</string>
<key>DTSDKBuild</key>
<string>22A5321d</string>
<string>23A334</string>
<key>DTSDKName</key>
<string>macosx13.0</string>
<string>macosx14.0</string>
<key>DTXcode</key>
<string>1400</string>
<string>1501</string>
<key>DTXcodeBuild</key>
<string>14A5294e</string>
<string>15A507</string>
<key>LSMinimumSystemVersion</key>
<string>10.13</string>
<key>NSHumanReadableCopyright</key>
Expand Down
Binary file not shown.
6 changes: 3 additions & 3 deletions PaddleV4.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "PaddleV4"
s.version = "4.4.0"
s.version = "4.4.1"
s.summary = "A licensing framework for OS X"
s.description = "Paddle is an easy to use licensing framework for OS X including App Licensing and In App Purchases."
s.homepage = "https://www.paddle.com"
Expand Down Expand Up @@ -35,8 +35,8 @@ SOFTWARE.
}

s.platform = :osx, '10.13'
s.source = { :http => "https://github.com/PaddleHQ/Mac-Framework-V4/archive/v4.4.0.zip" }
s.vendored_framework = 'Mac-Framework-V4-4.4.0/Paddle.framework'
s.source = { :http => "https://github.com/PaddleHQ/Mac-Framework-V4/archive/v4.4.1.zip" }
s.vendored_framework = 'Mac-Framework-V4-4.4.1/Paddle.framework'
s.requires_arc = false
s.framework = 'WebKit';
end

0 comments on commit 82b0fd7

Please sign in to comment.