Skip to content

Commit

Permalink
v4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
avalore committed Jul 14, 2021
1 parent 65e670b commit 1171ecf
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 4.1.1
- Support for sandbox environment added (but not subscriptions)
- Tested and updated for macOS Monterey.
- Improved memory leaks.
- Stopped the SDK from generating .profraw/coverage files for certain scenarios.
- Improved Paddle’s Checkout caching behaviour to prevent future issues with paddle.js updates.

If you don’t have a sandbox account yet, you can create one at https://sandbox-vendors.paddle.com/signup.
To use the sandbox environment on the SDK you will need to use `[Paddle setEnvironmentToSandbox];` method before calling any `startLicensing` methods, preferably in `applicationDidFinishLaunching:` and change the vendor id, product id and key to the sandbox values.
Please note that the sandbox only works with one-off SDK products, it does not work with subscription licensing.

# 4.1.0
A universal binary that runs natively on both Apple silicon(M1) and Intel-based Mac computers.

Expand Down
5 changes: 5 additions & 0 deletions Paddle.framework/Versions/A/Headers/Paddle.h
Original file line number Diff line number Diff line change
Expand Up @@ -656,5 +656,10 @@ typedef NS_ENUM(NSInteger, PADTriggeredUIType) {
*/
- (nonnull NSArray *)allProducts;

/**
* Update all environment configuration to the sandbox environment.
*/
+ (void)setEnvironmentToSandbox;


@end
Binary file modified Paddle.framework/Versions/A/Paddle
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 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>20B28</string>
<string>20F71</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -17,13 +17,13 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.1.0</string>
<string>4.1.1</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>4.1.0</string>
<string>4.1.1</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
Expand Down
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.1.0"
s.version = "4.1.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.10'
s.source = { :http => "https://github.com/PaddleHQ/Mac-Framework-V4/archive/v4.1.0.zip" }
s.vendored_framework = 'Mac-Framework-V4-4.1.0/Paddle.framework'
s.source = { :http => "https://github.com/PaddleHQ/Mac-Framework-V4/archive/v4.1.1.zip" }
s.vendored_framework = 'Mac-Framework-V4-4.1.1/Paddle.framework'
s.requires_arc = false
s.framework = 'WebKit';
end

0 comments on commit 1171ecf

Please sign in to comment.