Skip to content

Commit 78bd598

Browse files
author
karisli
committed
5.8.6
1 parent 309b5c6 commit 78bd598

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1871
-194
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1+
2+
# 5.8.6
3+
一、 新增数据万象接口:
4+
1. 上传时、下载时二维码识别
5+
2. 云上数据处理
6+
二、灯塔上报修复
17
# 5.8.5
28
1:修复在上传在complete时点击了取消导致的crash
3-
2:修复写日志时因磁盘不足导致的crash
4-
3:pingtest 优化&字典转模型遍历数组时数组被修改crash
9+
2:修复写日志时因磁盘不足导致的crash
10+
3:pingtest 优化&字典转模型遍历数组时数组被修改crash
11+
512

613
# 5.8.4
714
- 日志量太小无落盘

QCloudCOSXML.podspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "QCloudCOSXML"
33

4-
s.version = "5.8.5"
4+
s.version = "5.8.6"
55

66
s.summary = "QCloudCOSXML 腾讯云iOS-SDK组件"
77

@@ -19,15 +19,16 @@ s.version = "5.8.5"
1919
s.default_subspec = 'Default'
2020
s.subspec 'Default' do |default|
2121
default.source_files = 'QCloudCOSXML/Classes/**/*','Models/request.model','QCloudCOSXML/Classes/QCloudCOSXML/*'
22-
default.dependency "QCloudCore",'5.8.5'
22+
23+
default.dependency "QCloudCore",'5.8.6'
2324
end
2425
s.subspec 'Slim' do |slim|
2526
slim.source_files = 'QCloudCOSXML/Classes/**/*','Models/request.model','QCloudCOSXML/Classes/QCloudCOSXML/*'
26-
slim.dependency "QCloudCore/WithoutMTA",'5.8.5'
27+
slim.dependency "QCloudCore/WithoutMTA",'5.8.6'
2728
end
2829
s.subspec 'Transfer' do |transfer|
2930
transfer.source_files = 'QCloudCOSXML/Classes/*','QCloudCOSXML/Classes/Transfer/**/*','QCloudCOSXML/Classes/Base/**/*'
30-
transfer.dependency "QCloudCore/WithoutMTA",'5.8.5'
31+
transfer.dependency "QCloudCore/WithoutMTA",'5.8.6'
3132
end
3233

3334
end

QCloudCOSXML/Classes/Base/NSException+Quality.h

Lines changed: 0 additions & 16 deletions
This file was deleted.

QCloudCOSXML/Classes/Base/NSException+Quality.m

Lines changed: 0 additions & 35 deletions
This file was deleted.

QCloudCOSXML/Classes/Base/QCloudCOSXMLService+Quality.m

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
// Created by erichmzhang(张恒铭) on 2018/8/23.
66
//
77
#define kQAUploadStrategy @(2)
8-
#define kQAccount @"0AND0VEVB24UBGDU"
9-
108
#import "QCloudCOSXMLService+Quality.h"
119
#import <objc/runtime.h>
1210

@@ -39,6 +37,6 @@ + (QCloudCOSXMLService *)Quality_registerDefaultCOSXMLWithConfiguration:(QCloudS
3937
}
4038

4139
+ (void)initMTA {
42-
[QualityDataUploader startWithAppkey:nil];
40+
[QualityDataUploader startWithAppkey:kQCloudUploadAppKey];
4341
}
4442
@end

QCloudCOSXML/Classes/Base/QualityDataUploader.h

Lines changed: 0 additions & 17 deletions
This file was deleted.

QCloudCOSXML/Classes/QCloudCOSXML/QCloudCOSXML.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@
8888
#import "QCloudCopyObjectResult.h"
8989
#import "QCloudPutObjectCopyRequest.h"
9090
//数据万象
91+
#import "QCloudQRCodeRecognitionRequest.h"
92+
#import "QCloudCICloudDataOperationsRequest.h"
93+
#import "QCloudCIPutObjectQRCodeRecognitionRequest.h"
9194
#import "QCloudGetFilePreviewRequest.h"
9295
#import "QCloudCOSXMLService+ImageHelper.h"
9396
#import "QCloudPutObjectWatermarkRequest.h"

QCloudCOSXML/Classes/QCloudCOSXMLVersion.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55

66
#ifndef QCloudCOSXMLModuleVersion_h
77
#define QCloudCOSXMLModuleVersion_h
8-
#define QCloudCOSXMLModuleVersionNumber 508005
8+
9+
#define QCloudCOSXMLModuleVersionNumber 508006
910

1011
//dependency
1112

1213
//
1314
FOUNDATION_EXTERN NSString * const QCloudCOSXMLModuleVersion;
1415
FOUNDATION_EXTERN NSString * const QCloudCOSXMLModuleName;
1516

16-
#endif
17+
#endif

QCloudCOSXML/Classes/QCloudCOSXMLVersion.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#import "QCloudCOSXMLVersion.h"
2-
NSString * const QCloudCOSXMLModuleVersion = @"5.8.5";
2+
NSString * const QCloudCOSXMLModuleVersion = @"5.8.6";
3+
34
NSString * const QCloudCOSXMLModuleName = @"QCloudCOSXML";
45
@interface QCloudQCloudCOSXMLLoad : NSObject
56
@end
@@ -26,4 +27,4 @@ + (void) load
2627
#pragma clang diagnostic pop
2728
}
2829
}
29-
@end
30+
@end
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
//
2+
// QCloudCIImageInfo.h
3+
// QCloudCIImageInfo
4+
//
5+
// Created by tencent
6+
// Copyright (c) 2015年 tencent. All rights reserved.
7+
//
8+
// ██████╗ ██████╗██╗ ██████╗ ██╗ ██╗██████╗ ████████╗███████╗██████╗ ███╗ ███╗██╗███╗ ██╗ █████╗ ██╗ ██╗ █████╗ ██████╗
9+
// ██╔═══██╗██╔════╝██║ ██╔═══██╗██║ ██║██╔══██╗ ╚══██╔══╝██╔════╝██╔══██╗████╗ ████║██║████╗ ██║██╔══██╗██║ ██║ ██╔══██╗██╔══██╗
10+
// ██║ ██║██║ ██║ ██║ ██║██║ ██║██║ ██║ ██║ █████╗ ██████╔╝██╔████╔██║██║██╔██╗ ██║███████║██║ ██║ ███████║██████╔╝
11+
// ██║▄▄ ██║██║ ██║ ██║ ██║██║ ██║██║ ██║ ██║ ██╔══╝ ██╔══██╗██║╚██╔╝██║██║██║╚██╗██║██╔══██║██║ ██║ ██╔══██║██╔══██╗
12+
// ╚██████╔╝╚██████╗███████╗╚██████╔╝╚██████╔╝██████╔╝ ██║ ███████╗██║ ██║██║ ╚═╝ ██║██║██║ ╚████║██║ ██║███████╗ ███████╗██║ ██║██████╔╝
13+
// ╚══▀▀═╝ ╚═════╝╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝ ╚══════╝╚═╝ ╚═╝╚═════╝
14+
//
15+
//
16+
// _ __ _ _
17+
// (_) / _| | | | |
18+
// ___ ___ _ ____ ___ ___ ___ | |_ ___ _ __ __| | _____ _____| | ___ _ __ ___ _ __ ___
19+
// / __|/ _ \ '__\ \ / / |/ __/ _ \ | _/ _ \| '__| / _` |/ _ \ \ / / _ \ |/ _ \| '_ \ / _ \ '__/ __|
20+
// \__ \ __/ | \ V /| | (_| __/ | || (_) | | | (_| | __/\ V / __/ | (_) | |_) | __/ | \__
21+
// |___/\___|_| \_/ |_|\___\___| |_| \___/|_| \__,_|\___| \_/ \___|_|\___/| .__/ \___|_| |___/
22+
// ______ ______ ______ ______ ______ ______ ______ ______ | |
23+
// |______|______|______|______|______|______|______|______| |_|
24+
//
25+
26+
27+
28+
#import <Foundation/Foundation.h>
29+
#import <QCloudCore/QCloudCore.h>
30+
31+
NS_ASSUME_NONNULL_BEGIN
32+
@interface QCloudCIImageInfo : NSObject
33+
/**
34+
格式
35+
*/
36+
@property (strong, nonatomic) NSString *format;
37+
/**
38+
图片宽度
39+
*/
40+
@property (strong, nonatomic) NSString *width;
41+
/**
42+
图片高度
43+
*/
44+
@property (strong, nonatomic) NSString *height;
45+
/**
46+
图片质量
47+
*/
48+
@property (strong, nonatomic) NSString *quality;
49+
/**
50+
图片主色调
51+
*/
52+
@property (strong, nonatomic) NSString *ave;
53+
/**
54+
图片旋转角度
55+
*/
56+
@property (strong, nonatomic) NSString *orientation;
57+
@end
58+
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)