-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b516dfb
commit f842dad
Showing
2,029 changed files
with
186,251 additions
and
157,805 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = 'VirtuosoClientDownloadEngine' | ||
s.version = '4.2.48' | ||
s.version = '4.3.0' | ||
s.summary = 'A best-of-breed download and offline viewing solution for video.' | ||
s.homepage = 'http://penthera.com' | ||
s.license = { :type => 'Custom', :file => 'LICENSE' } | ||
s.author = { 'josh-penthera' => '[email protected]' } | ||
s.source = { :http => 'https://github.com/penthera/Download2Go-ios/releases/download/v4.2.48/VirtuosoClientDownloadEngine.xcframework.zip' } | ||
s.source = { :http => 'https://github.com/penthera/Download2Go-ios/releases/download/v4.3.0/VirtuosoClientDownloadEngine.xcframework.zip' } | ||
|
||
s.ios.deployment_target = '11.0' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = 'VirtuosoClientDownloadEngineWidevine' | ||
s.version = '4.2.48' | ||
s.version = '4.3.0' | ||
s.summary = 'A best-of-breed download and offline viewing solution for video.' | ||
s.homepage = 'http://penthera.com' | ||
s.license = { :type => 'Custom', :file => 'LICENSE' } | ||
s.author = { 'josh-penthera' => '[email protected]' } | ||
s.source = { :http => 'https://github.com/penthera/Download2Go-ios/releases/download/v4.2.48/VirtuosoClientDownloadEngineWidevine.xcframework.zip' } | ||
s.source = { :http => 'https://github.com/penthera/Download2Go-ios/releases/download/v4.3.0/VirtuosoClientDownloadEngineWidevine.xcframework.zip' } | ||
|
||
s.ios.deployment_target = '11.0' | ||
|
||
|
Binary file modified
BIN
+127 KB
(100%)
...ClientDownloadEngine.framework.dSYM/Contents/Resources/DWARF/VirtuosoClientDownloadEngine
Binary file not shown.
20,490 changes: 10,309 additions & 10,181 deletions
20,490
...ne.framework.dSYM/Contents/Resources/Relocations/aarch64/VirtuosoClientDownloadEngine.yml
Large diffs are not rendered by default.
Oops, something went wrong.
98 changes: 98 additions & 0 deletions
98
...adEngine.xcframework/ios-arm64/VirtuosoClientDownloadEngine.framework/Headers/AppLaunch.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
// | ||
// AppLaunch.h | ||
// VirtuosoClientDownloadEngine | ||
// | ||
// Created by Penthera on 11/5/21. | ||
// Copyright © 2021 Penthera. All rights reserved. | ||
// | ||
|
||
|
||
// | ||
// Adopted December 1, 2021 | ||
// | ||
|
||
|
||
#import <VirtuosoClientDownloadEngine/VirtuosoBaseEvent.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/*! | ||
* @abstract Event raised during App launch. | ||
* | ||
* @discussion This event is raised when the App launches | ||
* | ||
* @see VirtuosoBaseEvent. | ||
* | ||
*/ | ||
@interface AppLaunch : VirtuosoBaseEvent | ||
|
||
/*! | ||
* @abstract Boolean value indicating whether SDK was debug version | ||
* | ||
*/ | ||
@property (nonatomic,readonly) Boolean is_debug_sdk; | ||
|
||
/*! | ||
* @abstract Number of times the app launch event happened. | ||
* | ||
*/ | ||
@property (nonatomic,readonly) NSInteger app_launch_count; | ||
|
||
/*! | ||
* @abstract Device RAM available | ||
* | ||
*/ | ||
@property (nonatomic,readonly) NSInteger device_memory_available; | ||
|
||
/*! | ||
* @abstract Device RAM memory total | ||
* | ||
*/ | ||
@property (nonatomic,readonly) NSInteger device_memory_total; | ||
|
||
/*! | ||
* @abstract Device available storage | ||
* | ||
*/ | ||
@property (nonatomic,readonly) NSInteger device_storage_available; | ||
|
||
/*! | ||
* @abstract Device storage total | ||
* | ||
*/ | ||
@property (nonatomic,readonly) NSInteger device_storage_total; | ||
|
||
/*! | ||
* @abstract String representing Penthera SDK build version | ||
* | ||
*/ | ||
@property (nonatomic,readonly,nonnull) NSString* sdk_build_version; | ||
|
||
/*! | ||
* @abstract String representing Penthera SDK build date | ||
* | ||
*/ | ||
@property (nonatomic,readonly,nonnull) NSString* sdk_build_date; | ||
|
||
/*! | ||
* @abstract String representing Penthera SDK build info | ||
* | ||
*/ | ||
@property (nonatomic,readonly,nonnull) NSString* sdk_build_info; | ||
|
||
/*! | ||
* @abstract String representing app id | ||
* | ||
*/ | ||
@property (nonatomic,readonly,nonnull) NSString* app_id; | ||
|
||
/*! | ||
* @abstract String representing app version | ||
* | ||
*/ | ||
@property (nonatomic,readonly,nonnull) NSString* app_version; | ||
|
||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
64 changes: 64 additions & 0 deletions
64
...Engine.xcframework/ios-arm64/VirtuosoClientDownloadEngine.framework/Headers/AssetDelete.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// | ||
// AssetDelete.h | ||
// VirtuosoClientDownloadEngine | ||
// | ||
// Created by Penthera on 11/5/21. | ||
// Copyright © 2021 Penthera. All rights reserved. | ||
// | ||
|
||
// | ||
// Adopted December 8, 2021 | ||
// | ||
|
||
#import <VirtuosoClientDownloadEngine/VirtuosoAssetEvent.h> | ||
|
||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/*! | ||
* @abstract Defines reasons for asset delete | ||
* | ||
* @discussion This enum defines the various reasons an Asset was deleted. | ||
* | ||
* @see AssetDelete | ||
* | ||
*/ | ||
typedef NS_ENUM(NSInteger, kVL_DeletionType) | ||
{ | ||
/** Asset Deleted internally */ | ||
kVL_DeletionTypeInternal = 1, | ||
|
||
/** Asset deleted remote */ | ||
kVL_DeletionTypeRemote = 2, | ||
|
||
/** Asset deleted by user */ | ||
kVL_DeletionTypeUser = 3, | ||
|
||
/** Asset deleted when user login changed */ | ||
kVL_DeletionTypeUserChange = 4, | ||
|
||
/** Asset deleted when download failed */ | ||
kVL_DeletionTypeFailedDownload = 5, | ||
|
||
/** Asset deleted when user selected delete all assets */ | ||
kVL_DeletionTypeUserDeleteAll = 6, | ||
|
||
/** Asset deleted for unknown reason */ | ||
kVL_DeletionTypeUnknown = -1, | ||
}; | ||
|
||
/*! | ||
* @abstract Base classs for Asset Delete Analytics Events | ||
*/ | ||
@interface AssetDelete : VirtuosoAssetEvent | ||
|
||
/*! | ||
* @abstract Reason asset was deleted. | ||
* @discussion Reason asset was deleted. | ||
* @see kVL_DeletionType | ||
*/ | ||
@property (nonatomic,readonly) kVL_DeletionType deletion_type; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
25 changes: 25 additions & 0 deletions
25
...Engine.xcframework/ios-arm64/VirtuosoClientDownloadEngine.framework/Headers/AssetExpire.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// AssetExpire.h | ||
// VirtuosoClientDownloadEngine | ||
// | ||
// Created by Penthera on 11/5/21. | ||
// Copyright © 2021 Penthera. All rights reserved. | ||
// | ||
|
||
// | ||
// Adopted December 8, 2021 | ||
// | ||
|
||
#import <VirtuosoClientDownloadEngine/VirtuosoAssetEvent.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/*! | ||
* @abstract Base classs for Asset Expire Analytics Events | ||
* @discussion Base classs for Asset Expire Analytics Events | ||
*/ | ||
@interface AssetExpire : VirtuosoAssetEvent | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
30 changes: 30 additions & 0 deletions
30
...ramework/ios-arm64/VirtuosoClientDownloadEngine.framework/Headers/AssetRemovedFromQueue.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// | ||
// AssetRemovedFromQueue.h | ||
// VirtuosoClientDownloadEngine | ||
// | ||
// Created by Penthera on 11/5/21. | ||
// Copyright © 2021 Penthera. All rights reserved. | ||
// | ||
|
||
// | ||
// Adopted December 8, 2021 | ||
// | ||
|
||
#import <VirtuosoClientDownloadEngine/VirtuosoAssetEvent.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/*! | ||
* @abstract Base classs for Asset Removed from Queue Analytics Events | ||
* @discussion Base classs for Asset Removed from Queue Analytics Events | ||
*/ | ||
@interface AssetRemovedFromQueue : VirtuosoAssetEvent | ||
|
||
/*! | ||
* @abstract Size of asset when it was removed from the Queue | ||
*/ | ||
@property (nonatomic,readonly) NSInteger downloaded; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...e.xcframework/ios-arm64/VirtuosoClientDownloadEngine.framework/Headers/DownloadComplete.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// | ||
// DownloadComplete.h | ||
// VirtuosoClientDownloadEngine | ||
// | ||
// Created by Penthera on 11/5/21. | ||
// Copyright © 2021 Penthera. All rights reserved. | ||
// | ||
|
||
// | ||
// Adopted December 6, 2021 | ||
// | ||
|
||
#import <VirtuosoClientDownloadEngine/VirtuosoAssetEvent.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/*! | ||
* @abstract Base classs for Download Complete Analytics Events | ||
* @discussion Base classs for Download Complete Analytics Events | ||
*/ | ||
@interface DownloadComplete : VirtuosoAssetEvent | ||
|
||
/*! | ||
* @abstract Duration of asset | ||
*/ | ||
@property (nonatomic,readonly) double asset_duration; | ||
|
||
/*! | ||
* @abstract Download elapse time | ||
*/ | ||
@property (nonatomic,readonly) NSInteger download_elapse; | ||
|
||
/*! | ||
* @abstract Size of asset | ||
*/ | ||
@property (nonatomic,readonly) NSInteger current_size; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
68 changes: 68 additions & 0 deletions
68
...gine.xcframework/ios-arm64/VirtuosoClientDownloadEngine.framework/Headers/DownloadError.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// | ||
// DownloadError.h | ||
// VirtuosoClientDownloadEngine | ||
// | ||
// Created by Penthera on 11/5/21. | ||
// Copyright © 2021 Penthera. All rights reserved. | ||
// | ||
|
||
// | ||
// Adopted by Josh in initial branch. | ||
// | ||
|
||
#import <VirtuosoClientDownloadEngine/VirtuosoAssetEvent.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@class VirtuosoError; | ||
|
||
/*! | ||
* @abstract Base classs for Download Error Analytics Events | ||
* @discussion Base classs for Download Error Analytics Events | ||
*/ | ||
@interface DownloadError : VirtuosoAssetEvent | ||
|
||
/*! | ||
* @abstract Source code file name | ||
*/ | ||
@property (nonatomic,readonly,nullable) NSString* source_file; | ||
|
||
/*! | ||
* @abstract Source code line number | ||
*/ | ||
@property (nonatomic,readonly) NSInteger source_line; | ||
|
||
/*! | ||
* @abstract Error code. | ||
* @see kVE_ErrorCategory | ||
*/ | ||
@property (nonatomic,readonly) NSInteger error_code; | ||
|
||
/*! | ||
* @abstract Error message | ||
*/ | ||
@property (nonatomic,readonly,nullable) NSString* error_message; | ||
|
||
/*! | ||
* @abstract Optional Sub error code | ||
*/ | ||
@property (nonatomic,readonly) NSInteger sub_error_code; | ||
|
||
/*! | ||
* @abstract Optional Sub error message | ||
*/ | ||
@property (nonatomic,readonly,nullable) NSString* sub_error_message; | ||
|
||
/*! | ||
* @abstract Number of instances of this event | ||
*/ | ||
@property (nonatomic,readwrite) NSInteger event_instances; | ||
|
||
/*! | ||
* @abstract Boolean indicator of whether asset was selected for fastplay | ||
*/ | ||
@property (nonatomic,readonly) Boolean fastplay; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.