File tree Expand file tree Collapse file tree 5 files changed +18
-10
lines changed Expand file tree Collapse file tree 5 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 11Lzma SDK for Objective-C based on extended functionality of the C++ LZMA code
22
3- Changes on version 2.1.0 (current):
3+ Changes on version 2.1.1 (current):
4+ - Pull request #41: Enable ppmd for plain text compress.
5+ Thanks to 'enefry'.
6+
7+ Changes on version 2.1.0:
48- Pull request #40: Add crc functionality to public interface.
59 Thanks to 'jakubvano'.
610- Pull request #39: Add direct NSData compression & decompression.
Original file line number Diff line number Diff line change 88
99Pod ::Spec . new do |s |
1010 s . name = "LzmaSDK-ObjC"
11- s . version = "2.1.0 "
11+ s . version = "2.1.1 "
1212 s . summary = "Lzma SDK for Objective-C based on extended functionality of the C++ LZMA code"
1313 s . description = <<-DESC
1414It's not yet another wrapper around C part of the LZMA SDK with all it's limitations.
Original file line number Diff line number Diff line change 2828/*
2929 * Lzma SDK for Objective-C based on extended functionality of the C++ LZMA code
3030 *
31- * Changes on version 2.1.0 (current):
31+ * Changes on version 2.1.1 (current):
32+ * - Pull request #41: Enable ppmd for plain text compress.
33+ * Thanks to 'enefry'.
34+ *
35+ * Changes on version 2.1.0:
3236 * - Pull request #40: Add crc functionality to public interface.
3337 * Thanks to 'jakubvano'.
3438 * - Pull request #39: Add direct NSData compression & decompression.
173177
174178#define LZMASDKOBJC_VERSION_MAJOR 2
175179#define LZMASDKOBJC_VERSION_MINOR 1
176- #define LZMASDKOBJC_VERSION_PATCH 0
180+ #define LZMASDKOBJC_VERSION_PATCH 1
177181
178182
179183#import " LzmaSDKObjCTypes.h"
Original file line number Diff line number Diff line change @@ -93,9 +93,9 @@ namespace LzmaSDKObjC {
9393 };
9494
9595 switch ((LzmaSDKObjCMethod)method) {
96- case LzmaSDKObjCMethodLZMA: values[0 ] = L" LZMA" ; break ;
97- case LzmaSDKObjCMethodLZMA2: values[0 ] = L" LZMA2" ; break ;
98- case LzmaSDKObjCMethodPPMd:values[0 ] = L" PPMD" ;break ;
96+ case LzmaSDKObjCMethodLZMA: values[0 ] = L" LZMA" ; break ;
97+ case LzmaSDKObjCMethodLZMA2: values[0 ] = L" LZMA2" ; break ;
98+ case LzmaSDKObjCMethodPPMd:values[0 ] = L" PPMD" ; break ;
9999 default : break ;
100100 }
101101
Original file line number Diff line number Diff line change 3838#endif
3939
4040typedef enum _LzmaSDKObjCFileType {
41- LzmaSDKObjCFileTypeUndefined = 0 ,
42- LzmaSDKObjCFileType7z = 1
41+ LzmaSDKObjCFileTypeUndefined = 0 ,
42+ LzmaSDKObjCFileType7z = 1
4343} LzmaSDKObjCFileType ;
4444
4545typedef enum _LzmaSDKObjCMethod {
46- LzmaSDKObjCMethodLZMA = 0 ,
46+ LzmaSDKObjCMethodLZMA = 0 ,
4747 LzmaSDKObjCMethodLZMA2 = 1 ,
4848 LzmaSDKObjCMethodPPMd = 2 ,
4949} LzmaSDKObjCMethod ;
You can’t perform that action at this time.
0 commit comments