feat(*): update binary

xiaoyi 2021-05-14 19:16:05 +08:00
parent dd63ad83c5
commit 8c9e4675fd
34 changed files with 12 additions and 190 deletions

View File

@ -1,5 +1,9 @@
# ChangeLog # ChangeLog
## 2.1.2
* Only the version number changes
## 2.1.1 ## 2.1.1
### Feature ### Feature

Binary file not shown.

Binary file not shown.

View File

@ -1,8 +0,0 @@
{
"zh_hans":{
"network_error_click_retry":"网络异常,点击重试"
},
"en":{
"network_error_click_retry":"Network error, click to retry"
}
}

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 04d7bb9f75fad4418a987fe37176fd9b
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 410 B

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 122970e4d94f045f982783c98a10b185
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 566 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 596 B

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: c60dec160816f464aa541915fa99ee05
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 862 B

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 8778a691cb5b547849b1cedb2aea15e1
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,16 +0,0 @@
//
// ComponentMessageDelegate.h
// TapCommonSDK
//
// Created by Bottle K on 2021/5/11.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@protocol ComponentMessageDelegate <NSObject>
- (void)onMessageWithCode:(NSInteger)code extras:(NSDictionary *)extras;
@end
NS_ASSUME_NONNULL_END

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 5cf224e8d78bd4cfea6c71ff6ee23865
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -16,7 +16,4 @@
- (NSString *)tds_stringFromData; - (NSString *)tds_stringFromData;
- (NSData *)tds_aes256Encrypt:(NSString *)key;
- (NSData *)tds_aes256Decrypt:(NSString *)key;
@end @end

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b8b544f5c072849e2985a50c876d624e guid: 8f3484d319afb443fac9a83716322c20
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 66214c863f4854c4d8c366be83012e5d
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -12,7 +12,6 @@ NS_ASSUME_NONNULL_BEGIN
@interface NSDictionary (JSON) @interface NSDictionary (JSON)
- (NSString *)tds_jsonString; - (NSString *)tds_jsonString;
- (NSString *)tds_jsonStringWithoutOptions:(NSJSONWritingOptions)opt;
@end @end
NS_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END

View File

@ -15,19 +15,16 @@
- (NSString *)tds_reverse; - (NSString *)tds_reverse;
// MD5 hash of the file on the filesystem specified by path // MD5 hash of the file on the filesystem specified by path
+ (NSString *)tds_stringWithMD5OfFile:(NSString *)path; + (NSString *)tds_stringWithMD5OfFile:(NSString *) path;
// The string's MD5 hash // The string's MD5 hash
- (NSString *)tds_MD5Hash; - (NSString *)tds_MD5Hash;
// base64 // base64
- (NSString *)tds_base64Encode; - (NSString *)tds_base64Encode;
- (NSString *)tds_base64Decode; - (NSString *)tds_base64Dencode;
// aes256
- (NSString *)tds_aes256Encrypt:(NSString *)key;
- (NSString *)tds_aes256Decrypt:(NSString *)key;
/// 是否是空字符串 /// 是否是空字符串
- (BOOL)tds_isEmpty;
+ (BOOL)tds_isEmpty:(NSString *)string; + (BOOL)tds_isEmpty:(NSString *)string;
- (NSDictionary *)tds_toDictionary; - (NSDictionary *)tds_toDictionary;

View File

@ -1,19 +0,0 @@
//
// TDSAccountNotification.h
// TapBootstrapSDK
//
// Created by Bottle K on 2021/4/26.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
extern NSString *const TAP_LOGIN_SUCCESS_NOTIFICATION;
extern NSString *const TAP_LOGIN_FAIL_NOTIFICATION;
@interface TDSAccountNotification : NSObject
@end
NS_ASSUME_NONNULL_END

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 4f946edd3cfff401897bb4d93a742b5c
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -5,7 +5,6 @@
// Created by Bottle K on 2021/3/30. // Created by Bottle K on 2021/3/30.
// //
#import <Foundation/Foundation.h>
#import <TapCommonSDK/TDSAccount.h> #import <TapCommonSDK/TDSAccount.h>
NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN
@ -13,10 +12,6 @@ NS_ASSUME_NONNULL_BEGIN
@protocol TDSAccountProvider <NSObject> @protocol TDSAccountProvider <NSObject>
- (nullable TDSAccount *)getAccount; - (nullable TDSAccount *)getAccount;
- (nullable NSDictionary *)getLocalUserInfo;
- (void)getAccountUser:(void (^)(NSDictionary *_Nullable userInfo, NSError *_Nullable error))handler;
@end @end
NS_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END

View File

@ -9,7 +9,7 @@
#import <TapCommonSDK/TDSAccount.h> #import <TapCommonSDK/TDSAccount.h>
#define TapCommonSDK @"TapCommon" #define TapCommonSDK @"TapCommon"
#define TapCommonSDK_VERSION_NUMBER @"20101006" #define TapCommonSDK_VERSION_NUMBER @"20101001"
#define TapCommonSDK_VERSION @"2.1.1" #define TapCommonSDK_VERSION @"2.1.1"
NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN

View File

@ -1,21 +0,0 @@
//
// TDSButton.h
// TapCommonSDK
//
// Created by Bottle K on 2021/4/27.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface TDSButton : UIButton
@property (nonatomic, assign) NSInteger mode;
- (void)confirmMode;
- (void)cancelMode;
@end
NS_ASSUME_NONNULL_END

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 6dc8bc9e0b67741e486d87f8ea2bd798
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,31 +0,0 @@
//
// TDSCommonDialogView.h
// TapCommonSDK
//
// Created by Bottle K on 2021/4/29.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol TDSCommonDialogProtocol <NSObject>
- (void)onReloadData;
- (void)onClose;
@end
@interface TDSCommonDialogView : UIView
@property (nonatomic, weak) id<TDSCommonDialogProtocol> delegate;
@property (nonatomic, strong) UIView *dialogView;
//loading
@property (nonatomic, strong) UIView *loadingView;
//reload
@property (nonatomic, strong) UIView *reloadView;
- (void)closeDialog;
@end
NS_ASSUME_NONNULL_END

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 83372ce13cd9f4dd4b8c7a861652260a
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -18,9 +18,6 @@ NS_ASSUME_NONNULL_BEGIN
/// 从bundle获取image /// 从bundle获取image
+ (UIImage *)getImageFromBundle:(NSString *)bundleName withImage:(NSString *)imageName; + (UIImage *)getImageFromBundle:(NSString *)bundleName withImage:(NSString *)imageName;
/// 从bundle获取翻译后的文案
+ (NSString *)getTranslatedStringFromCommonWithKey:(NSString *)key;
/// rgb转color /// rgb转color
+ (UIColor *)rgbToColorWithRed:(CGFloat)red + (UIColor *)rgbToColorWithRed:(CGFloat)red
green:(CGFloat)green green:(CGFloat)green
@ -61,10 +58,6 @@ NS_ASSUME_NONNULL_BEGIN
/// 安全区域(上左下右) /// 安全区域(上左下右)
+ (UIEdgeInsets)safeAreaInsets; + (UIEdgeInsets)safeAreaInsets;
+ (UIViewController *)findTopViewController;
+ (UIViewController *)findUIViewController:(UIViewController *)controller;
@end @end
NS_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END

View File

@ -20,17 +20,12 @@ FOUNDATION_EXPORT const unsigned char TapCommonSDKVersionString[];
#import <TapCommonSDK/TDSAccount.h> #import <TapCommonSDK/TDSAccount.h>
#import <TapCommonSDK/TDSAccountProvider.h> #import <TapCommonSDK/TDSAccountProvider.h>
#import <TapCommonSDK/TDSAccountNotification.h>
#import <TapCommonSDK/ComponentMessageDelegate.h>
#import <TapCommonSDK/TDSDomainManager.h> #import <TapCommonSDK/TDSDomainManager.h>
#import <TapCommonSDK/TDSGameUtil.h> #import <TapCommonSDK/TDSGameUtil.h>
#import <TapCommonSDK/TDSAutoLayout.h> #import <TapCommonSDK/TDSAutoLayout.h>
#import <TapCommonSDK/TDSButton.h>
#import <TapCommonSDK/TDSCommonDialogView.h>
#import <TapCommonSDK/TDSCommonEnvironment.h> #import <TapCommonSDK/TDSCommonEnvironment.h>
#import <TapCommonSDK/EngineBridgeError.h> #import <TapCommonSDK/EngineBridgeError.h>
@ -44,7 +39,7 @@ FOUNDATION_EXPORT const unsigned char TapCommonSDKVersionString[];
#import <TapCommonSDK/TDSResult.h> #import <TapCommonSDK/TDSResult.h>
#import <TapCommonSDK/NSArray+Safe.h> #import <TapCommonSDK/NSArray+Safe.h>
#import <TapCommonSDK/NSBundle+Tools.h> #import <TapCommonSDK/NSBundle+Tools.h>
#import <TapCommonSDK/NSData+Tools.h> #import <TapCommonSDK/NSData+JSON.h>
#import <TapCommonSDK/NSDictionary+JSON.h> #import <TapCommonSDK/NSDictionary+JSON.h>
#import <TapCommonSDK/NSDictionary+TDSSafe.h> #import <TapCommonSDK/NSDictionary+TDSSafe.h>
#import <TapCommonSDK/NSMutableArray+Safe.h> #import <TapCommonSDK/NSMutableArray+Safe.h>

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1a33b29f05f774abf95aee9f75c50ba4 guid: 7bb35410472d24678a797fca487c5356
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -2,7 +2,7 @@
"name": "com.taptap.tds.common", "name": "com.taptap.tds.common",
"displayName": "TapTap Common", "displayName": "TapTap Common",
"description": "TapTap Develop Service", "description": "TapTap Develop Service",
"version": "2.1.1", "version": "2.1.2",
"unity": "2018.3", "unity": "2018.3",
"license": "MIT" "license": "MIT"
} }