File tree 5 files changed +12
-9
lines changed
5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'ZXingObjC'
3
- s . version = '3.2.2 '
3
+ s . version = '3.4.0 '
4
4
s . summary = 'An Objective-C Port of the ZXing barcode framework.'
5
5
s . homepage = 'https://github.com/TheLevelUp/ZXingObjC'
6
6
s . author = 'ZXingObjC team'
Original file line number Diff line number Diff line change 6735
6735
COPY_PHASE_STRIP = YES;
6736
6736
ENABLE_BITCODE = NO;
6737
6737
ENABLE_STRICT_OBJC_MSGSEND = YES;
6738
+ EXPANDED_CODE_SIGN_IDENTITY = "-";
6739
+ EXPANDED_CODE_SIGN_IDENTITY_NAME = "-";
6738
6740
FRAMEWORK_VERSION = 3.4.0;
6739
6741
GCC_C_LANGUAGE_STANDARD = gnu99;
6740
6742
GCC_NO_COMMON_BLOCKS = YES;
6867
6869
ENABLE_BITCODE = NO;
6868
6870
ENABLE_STRICT_OBJC_MSGSEND = YES;
6869
6871
ENABLE_TESTABILITY = YES;
6872
+ EXPANDED_CODE_SIGN_IDENTITY = "-";
6873
+ EXPANDED_CODE_SIGN_IDENTITY_NAME = "-";
6870
6874
FRAMEWORK_VERSION = 3.4.0;
6871
6875
GCC_C_LANGUAGE_STANDARD = gnu99;
6872
6876
GCC_DYNAMIC_NO_PIC = NO;
6918
6922
COPY_PHASE_STRIP = YES;
6919
6923
ENABLE_BITCODE = NO;
6920
6924
ENABLE_STRICT_OBJC_MSGSEND = YES;
6925
+ EXPANDED_CODE_SIGN_IDENTITY = "-";
6926
+ EXPANDED_CODE_SIGN_IDENTITY_NAME = "-";
6921
6927
FRAMEWORK_VERSION = 3.4.0;
6922
6928
GCC_C_LANGUAGE_STANDARD = gnu99;
6923
6929
GCC_NO_COMMON_BLOCKS = YES;
Original file line number Diff line number Diff line change @@ -140,9 +140,9 @@ - (ZXBitMatrix *)encodeLowLevel:(ZXDataMatrixDefaultPlacement *)placement symbol
140
140
/* *
141
141
* Convert the ZXByteMatrix to ZXBitMatrix.
142
142
*
143
- * @param reqHeight The requested height of the image (in pixels) with the Datamatrix code
144
- * @param reqWidth The requested width of the image (in pixels) with the Datamatrix code
145
- * @param input The input matrix.
143
+ * @param matrix The input matrix.
144
+ * @param width The requested width of the image (in pixels) with the Datamatrix code
145
+ * @param height The requested height of the image (in pixels) with the Datamatrix code
146
146
* @return The output matrix.
147
147
*/
148
148
- (ZXBitMatrix *)convertByteMatrixToBitMatrix : (ZXByteMatrix *)matrix width : (int )width height : (int )height {
Original file line number Diff line number Diff line change 23
23
@property (nonatomic , copy ) NSString *sender;
24
24
@property (nonatomic , copy ) NSString *addressee;
25
25
@property (nonatomic , copy ) NSString *fileName;
26
- @property (nonatomic , assign ) long fileSize;
27
- @property (nonatomic , assign ) long timestamp;
26
+ @property (nonatomic , assign ) long long fileSize;
27
+ @property (nonatomic , assign ) long long timestamp;
28
28
@property (nonatomic , assign ) int checksum;
29
29
@property (nonatomic , strong ) NSArray *optionalData;
30
30
Original file line number Diff line number Diff line change @@ -218,9 +218,6 @@ + (BOOL)foundPatternDiagonal:(const int[])stateCount {
218
218
*
219
219
* @param centerI row where a finder pattern was detected
220
220
* @param centerJ center of the section that appears to cross a finder pattern
221
- * @param maxCount maximum reasonable number of modules that should be
222
- * observed in any reading state, based on the results of the horizontal scan
223
- * @param originalStateCountTotal The original state count total.
224
221
* @return true if proportions are withing expected limits
225
222
*/
226
223
- (BOOL )crossCheckDiagonal : (int )centerI centerJ : (int )centerJ {
You can’t perform that action at this time.
0 commit comments