Skip to content

Commit

Permalink
Update ==> 置底 & 免验证登录
Browse files Browse the repository at this point in the history
  • Loading branch information
TKkk-iOSer committed Sep 17, 2017
1 parent 2eb377b commit 6b00d42
Show file tree
Hide file tree
Showing 23 changed files with 734 additions and 117 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,28 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];

#pragma mark - 微信原始的部分类与方法

@interface MMLoginOneClickViewController : NSObject
@property(nonatomic) NSTextField *descriptionLabel;
- (void)onLoginButtonClicked:(id)arg1;
@property(nonatomic) NSButton *loginButton;
@end

@interface AccountService : NSObject
- (id)GetLastLoginUserName;
- (id)GetLastLoginAutoAuthKey;
- (BOOL)canAutoAuth;
- (void)AutoAuth;
- (void)ManualLogin:(id)arg1 withPassword:(id)arg2;
- (void)ManualLogout;
- (void)QRCodeLoginWithUserName:(id)arg1 password:(id)arg2;
@end

@interface MMLoginViewController : NSObject
@property(retain, nonatomic) MMLoginOneClickViewController *oneClickViewController;
@end

@interface MMMainWindowController : NSObject
@property(retain, nonatomic) MMLoginViewController *loginViewController;
- (void)onAuthOK;
- (void)onLogOut;
@end
Expand Down Expand Up @@ -45,8 +66,15 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@property (nonatomic, assign) unsigned int createTime;
@end

@interface MMChatsViewController : NSViewController <NSTableViewDataSource, NSTableViewDelegate>
@property(nonatomic) __weak NSTableView *tableView;
@end

@interface WeChat : NSObject
+ (id)sharedInstance;
@property(nonatomic) MMChatsViewController *chatsViewController;
@property(retain, nonatomic) MMMainWindowController *mainWindowController;
@property(nonatomic) BOOL isAppTerminating;
@end

@interface ContactStorage : NSObject
Expand Down Expand Up @@ -74,6 +102,41 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@interface CUtility : NSObject
+ (BOOL)HasWechatInstance;
+ (unsigned long long)getFreeDiskSpace;
+ (void)ReloadSessionForMsgSync;
+ (id)GetCurrentUserName;
@end

@interface MMSessionInfo : NSObject
@property(nonatomic) BOOL m_bIsTop; // @synthesize m_bIsTop;
@property(nonatomic) BOOL m_bShowUnReadAsRedDot;
@property(nonatomic) BOOL m_isMentionedUnread; // @synthesize
@property(retain, nonatomic) NSString *m_nsUserName; // @synthesize m_nsUserName;
@end


@protocol MMChatsTableCellViewDelegate <NSObject>
@optional
- (void)cellViewReloadData:(MMSessionInfo *)arg1;
@end

@interface MMChatsTableCellView : NSTableCellView
@property(nonatomic) __weak id <MMChatsTableCellViewDelegate> delegate;
@property(retain, nonatomic) MMSessionInfo *sessionInfo;
- (void)menuWillOpen:(id)arg1;
- (void)contextMenuSticky;
@end

@interface MMSessionMgr : NSObject
@property(retain, nonatomic) NSMutableArray *m_arrSession;
- (void)MuteSessionByUserName:(id)arg1;
//- (void)TopSessionByUserName:(id)arg1;
- (void)UnmuteSessionByUserName:(id)arg1;
- (void)UntopSessionByUserName:(id)arg1;
- (void)sortSessions;
@end

@interface LogoutCGI : NSTableCellView
- (void)sendLogoutCGIWithCompletion:(id)arg1;
@end

#pragma mark - 调用 NSSearchPathForDirectoriesInDomains 的一些方法
Expand All @@ -88,5 +151,5 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@end

@interface JTStatisticManager : NSObject
@property(retain, nonatomic) NSString *statFilePath;
@property(retain, nonatomic) NSString *statFilePath;
@end
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,28 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];

#pragma mark - 微信原始的部分类与方法

@interface MMLoginOneClickViewController : NSObject
@property(nonatomic) NSTextField *descriptionLabel;
- (void)onLoginButtonClicked:(id)arg1;
@property(nonatomic) NSButton *loginButton;
@end

@interface AccountService : NSObject
- (id)GetLastLoginUserName;
- (id)GetLastLoginAutoAuthKey;
- (BOOL)canAutoAuth;
- (void)AutoAuth;
- (void)ManualLogin:(id)arg1 withPassword:(id)arg2;
- (void)ManualLogout;
- (void)QRCodeLoginWithUserName:(id)arg1 password:(id)arg2;
@end

@interface MMLoginViewController : NSObject
@property(retain, nonatomic) MMLoginOneClickViewController *oneClickViewController;
@end

@interface MMMainWindowController : NSObject
@property(retain, nonatomic) MMLoginViewController *loginViewController;
- (void)onAuthOK;
- (void)onLogOut;
@end
Expand Down Expand Up @@ -45,8 +66,15 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@property (nonatomic, assign) unsigned int createTime;
@end

@interface MMChatsViewController : NSViewController <NSTableViewDataSource, NSTableViewDelegate>
@property(nonatomic) __weak NSTableView *tableView;
@end

@interface WeChat : NSObject
+ (id)sharedInstance;
@property(nonatomic) MMChatsViewController *chatsViewController;
@property(retain, nonatomic) MMMainWindowController *mainWindowController;
@property(nonatomic) BOOL isAppTerminating;
@end

@interface ContactStorage : NSObject
Expand Down Expand Up @@ -74,6 +102,41 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@interface CUtility : NSObject
+ (BOOL)HasWechatInstance;
+ (unsigned long long)getFreeDiskSpace;
+ (void)ReloadSessionForMsgSync;
+ (id)GetCurrentUserName;
@end

@interface MMSessionInfo : NSObject
@property(nonatomic) BOOL m_bIsTop; // @synthesize m_bIsTop;
@property(nonatomic) BOOL m_bShowUnReadAsRedDot;
@property(nonatomic) BOOL m_isMentionedUnread; // @synthesize
@property(retain, nonatomic) NSString *m_nsUserName; // @synthesize m_nsUserName;
@end


@protocol MMChatsTableCellViewDelegate <NSObject>
@optional
- (void)cellViewReloadData:(MMSessionInfo *)arg1;
@end

@interface MMChatsTableCellView : NSTableCellView
@property(nonatomic) __weak id <MMChatsTableCellViewDelegate> delegate;
@property(retain, nonatomic) MMSessionInfo *sessionInfo;
- (void)menuWillOpen:(id)arg1;
- (void)contextMenuSticky;
@end

@interface MMSessionMgr : NSObject
@property(retain, nonatomic) NSMutableArray *m_arrSession;
- (void)MuteSessionByUserName:(id)arg1;
//- (void)TopSessionByUserName:(id)arg1;
- (void)UnmuteSessionByUserName:(id)arg1;
- (void)UntopSessionByUserName:(id)arg1;
- (void)sortSessions;
@end

@interface LogoutCGI : NSTableCellView
- (void)sendLogoutCGIWithCompletion:(id)arg1;
@end

#pragma mark - 调用 NSSearchPathForDirectoriesInDomains 的一些方法
Expand All @@ -88,5 +151,5 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@end

@interface JTStatisticManager : NSObject
@property(retain, nonatomic) NSString *statFilePath;
@property(retain, nonatomic) NSString *statFilePath;
@end
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,28 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];

#pragma mark - 微信原始的部分类与方法

@interface MMLoginOneClickViewController : NSObject
@property(nonatomic) NSTextField *descriptionLabel;
- (void)onLoginButtonClicked:(id)arg1;
@property(nonatomic) NSButton *loginButton;
@end

@interface AccountService : NSObject
- (id)GetLastLoginUserName;
- (id)GetLastLoginAutoAuthKey;
- (BOOL)canAutoAuth;
- (void)AutoAuth;
- (void)ManualLogin:(id)arg1 withPassword:(id)arg2;
- (void)ManualLogout;
- (void)QRCodeLoginWithUserName:(id)arg1 password:(id)arg2;
@end

@interface MMLoginViewController : NSObject
@property(retain, nonatomic) MMLoginOneClickViewController *oneClickViewController;
@end

@interface MMMainWindowController : NSObject
@property(retain, nonatomic) MMLoginViewController *loginViewController;
- (void)onAuthOK;
- (void)onLogOut;
@end
Expand Down Expand Up @@ -45,8 +66,15 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@property (nonatomic, assign) unsigned int createTime;
@end

@interface MMChatsViewController : NSViewController <NSTableViewDataSource, NSTableViewDelegate>
@property(nonatomic) __weak NSTableView *tableView;
@end

@interface WeChat : NSObject
+ (id)sharedInstance;
@property(nonatomic) MMChatsViewController *chatsViewController;
@property(retain, nonatomic) MMMainWindowController *mainWindowController;
@property(nonatomic) BOOL isAppTerminating;
@end

@interface ContactStorage : NSObject
Expand Down Expand Up @@ -74,6 +102,41 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@interface CUtility : NSObject
+ (BOOL)HasWechatInstance;
+ (unsigned long long)getFreeDiskSpace;
+ (void)ReloadSessionForMsgSync;
+ (id)GetCurrentUserName;
@end

@interface MMSessionInfo : NSObject
@property(nonatomic) BOOL m_bIsTop; // @synthesize m_bIsTop;
@property(nonatomic) BOOL m_bShowUnReadAsRedDot;
@property(nonatomic) BOOL m_isMentionedUnread; // @synthesize
@property(retain, nonatomic) NSString *m_nsUserName; // @synthesize m_nsUserName;
@end


@protocol MMChatsTableCellViewDelegate <NSObject>
@optional
- (void)cellViewReloadData:(MMSessionInfo *)arg1;
@end

@interface MMChatsTableCellView : NSTableCellView
@property(nonatomic) __weak id <MMChatsTableCellViewDelegate> delegate;
@property(retain, nonatomic) MMSessionInfo *sessionInfo;
- (void)menuWillOpen:(id)arg1;
- (void)contextMenuSticky;
@end

@interface MMSessionMgr : NSObject
@property(retain, nonatomic) NSMutableArray *m_arrSession;
- (void)MuteSessionByUserName:(id)arg1;
//- (void)TopSessionByUserName:(id)arg1;
- (void)UnmuteSessionByUserName:(id)arg1;
- (void)UntopSessionByUserName:(id)arg1;
- (void)sortSessions;
@end

@interface LogoutCGI : NSTableCellView
- (void)sendLogoutCGIWithCompletion:(id)arg1;
@end

#pragma mark - 调用 NSSearchPathForDirectoriesInDomains 的一些方法
Expand All @@ -88,5 +151,5 @@ FOUNDATION_EXPORT const unsigned char WeChatPluginVersionString[];
@end

@interface JTStatisticManager : NSObject
@property(retain, nonatomic) NSString *statFilePath;
@property(retain, nonatomic) NSString *statFilePath;
@end
Binary file not shown.
Binary file modified Other/Products/Debug/WeChatPlugin.framework/WeChatPlugin
Binary file not shown.
24 changes: 24 additions & 0 deletions WeChatPlugin.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
522547E11F4C312A00226A2A /* TKRemoteControlWindowController.h in Headers */ = {isa = PBXBuildFile; fileRef = 522547DB1F4C312A00226A2A /* TKRemoteControlWindowController.h */; };
522547E21F4C312A00226A2A /* TKRemoteControlWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 522547DC1F4C312A00226A2A /* TKRemoteControlWindowController.m */; };
522547E31F4C312A00226A2A /* TKRemoteControlWindowController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 522547DD1F4C312A00226A2A /* TKRemoteControlWindowController.xib */; };
52475C2E1F6B993E00760E3E /* MMChatsTableCellView+hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 52475C2C1F6B993E00760E3E /* MMChatsTableCellView+hook.h */; };
52475C2F1F6B993E00760E3E /* MMChatsTableCellView+hook.m in Sources */ = {isa = PBXBuildFile; fileRef = 52475C2D1F6B993E00760E3E /* MMChatsTableCellView+hook.m */; };
52475C321F6BA43800760E3E /* TKIgnoreSessonModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 52475C301F6BA43800760E3E /* TKIgnoreSessonModel.h */; };
52475C331F6BA43800760E3E /* TKIgnoreSessonModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 52475C311F6BA43800760E3E /* TKIgnoreSessonModel.m */; };
526F4D7D1F4AAADA00E46004 /* Color.h in Headers */ = {isa = PBXBuildFile; fileRef = 526F4D791F4AAADA00E46004 /* Color.h */; };
526F4D801F4AAADA00E46004 /* TKPrefixHeader.pch in Headers */ = {isa = PBXBuildFile; fileRef = 526F4D7C1F4AAADA00E46004 /* TKPrefixHeader.pch */; };
526F4D831F4AAC1900E46004 /* TKAutoReplyModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 526F4D811F4AAC1900E46004 /* TKAutoReplyModel.h */; };
Expand All @@ -27,6 +31,8 @@
526F4D921F4AAE6F00E46004 /* TKAutoReplyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 526F4D901F4AAE6F00E46004 /* TKAutoReplyCell.m */; };
528B4F971EA7383800BC6A89 /* WeChatPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 528B4F951EA7383800BC6A89 /* WeChatPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
528B4FB41EA7386D00BC6A89 /* main.mm in Sources */ = {isa = PBXBuildFile; fileRef = 528B4FAA1EA7386D00BC6A89 /* main.mm */; };
529CDDFE1F6E6A060056DC1A /* TKBaseModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 529CDDFC1F6E6A060056DC1A /* TKBaseModel.h */; };
529CDDFF1F6E6A060056DC1A /* TKBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 529CDDFD1F6E6A060056DC1A /* TKBaseModel.m */; };
52B5CEF21F3B4623000D9DD9 /* TKRemoteControlCommands.plist in Resources */ = {isa = PBXBuildFile; fileRef = 52B5CEF01F3B4623000D9DD9 /* TKRemoteControlCommands.plist */; };
52B5CEF31F3B4623000D9DD9 /* TKRemoteControlScript.scpt in Resources */ = {isa = PBXBuildFile; fileRef = 52B5CEF11F3B4623000D9DD9 /* TKRemoteControlScript.scpt */; };
52B5CF121F3B4631000D9DD9 /* WeChat+hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B5CEF61F3B4631000D9DD9 /* WeChat+hook.h */; };
Expand All @@ -52,6 +58,10 @@
522547DB1F4C312A00226A2A /* TKRemoteControlWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TKRemoteControlWindowController.h; sourceTree = "<group>"; };
522547DC1F4C312A00226A2A /* TKRemoteControlWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKRemoteControlWindowController.m; sourceTree = "<group>"; };
522547DD1F4C312A00226A2A /* TKRemoteControlWindowController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TKRemoteControlWindowController.xib; sourceTree = "<group>"; };
52475C2C1F6B993E00760E3E /* MMChatsTableCellView+hook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MMChatsTableCellView+hook.h"; sourceTree = "<group>"; };
52475C2D1F6B993E00760E3E /* MMChatsTableCellView+hook.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MMChatsTableCellView+hook.m"; sourceTree = "<group>"; };
52475C301F6BA43800760E3E /* TKIgnoreSessonModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TKIgnoreSessonModel.h; sourceTree = "<group>"; };
52475C311F6BA43800760E3E /* TKIgnoreSessonModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKIgnoreSessonModel.m; sourceTree = "<group>"; };
526F4D791F4AAADA00E46004 /* Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Color.h; sourceTree = "<group>"; };
526F4D7C1F4AAADA00E46004 /* TKPrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TKPrefixHeader.pch; sourceTree = "<group>"; };
526F4D811F4AAC1900E46004 /* TKAutoReplyModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TKAutoReplyModel.h; sourceTree = "<group>"; };
Expand All @@ -66,6 +76,8 @@
528B4F951EA7383800BC6A89 /* WeChatPlugin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WeChatPlugin.h; sourceTree = "<group>"; };
528B4F961EA7383800BC6A89 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
528B4FAA1EA7386D00BC6A89 /* main.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = main.mm; sourceTree = "<group>"; };
529CDDFC1F6E6A060056DC1A /* TKBaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TKBaseModel.h; sourceTree = "<group>"; };
529CDDFD1F6E6A060056DC1A /* TKBaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKBaseModel.m; sourceTree = "<group>"; };
52B5CEF01F3B4623000D9DD9 /* TKRemoteControlCommands.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = TKRemoteControlCommands.plist; sourceTree = "<group>"; };
52B5CEF11F3B4623000D9DD9 /* TKRemoteControlScript.scpt */ = {isa = PBXFileReference; lastKnownFileType = file; path = TKRemoteControlScript.scpt; sourceTree = "<group>"; };
52B5CEF61F3B4631000D9DD9 /* WeChat+hook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WeChat+hook.h"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -217,6 +229,8 @@
children = (
52B5CEF61F3B4631000D9DD9 /* WeChat+hook.h */,
52B5CEF71F3B4631000D9DD9 /* WeChat+hook.m */,
52475C2C1F6B993E00760E3E /* MMChatsTableCellView+hook.h */,
52475C2D1F6B993E00760E3E /* MMChatsTableCellView+hook.m */,
);
path = Category;
sourceTree = "<group>";
Expand All @@ -242,10 +256,14 @@
52B5CEFE1F3B4631000D9DD9 /* Models */ = {
isa = PBXGroup;
children = (
529CDDFC1F6E6A060056DC1A /* TKBaseModel.h */,
529CDDFD1F6E6A060056DC1A /* TKBaseModel.m */,
526F4D811F4AAC1900E46004 /* TKAutoReplyModel.h */,
526F4D821F4AAC1900E46004 /* TKAutoReplyModel.m */,
52B5CEFF1F3B4631000D9DD9 /* TKRemoteControlModel.h */,
52B5CF001F3B4631000D9DD9 /* TKRemoteControlModel.m */,
52475C301F6BA43800760E3E /* TKIgnoreSessonModel.h */,
52475C311F6BA43800760E3E /* TKIgnoreSessonModel.m */,
);
path = Models;
sourceTree = "<group>";
Expand Down Expand Up @@ -290,14 +308,17 @@
526F4D7D1F4AAADA00E46004 /* Color.h in Headers */,
528B4F971EA7383800BC6A89 /* WeChatPlugin.h in Headers */,
526F4D801F4AAADA00E46004 /* TKPrefixHeader.pch in Headers */,
529CDDFE1F6E6A060056DC1A /* TKBaseModel.h in Headers */,
52B5CF1A1F3B4631000D9DD9 /* TKHelper.h in Headers */,
52B5CF1C1F3B4631000D9DD9 /* XMLReader.h in Headers */,
52B5CF161F3B4631000D9DD9 /* TKRemoteControlController.h in Headers */,
52B5CF121F3B4631000D9DD9 /* WeChat+hook.h in Headers */,
52475C321F6BA43800760E3E /* TKIgnoreSessonModel.h in Headers */,
526F4D8D1F4AAC3800E46004 /* TKRemoteControlCell.h in Headers */,
52B5CF181F3B4631000D9DD9 /* TKRemoteControlModel.h in Headers */,
522547CF1F4AE5A700226A2A /* NSView+Action.h in Headers */,
526F4D911F4AAE6F00E46004 /* TKAutoReplyCell.h in Headers */,
52475C2E1F6B993E00760E3E /* MMChatsTableCellView+hook.h in Headers */,
526F4D8B1F4AAC3800E46004 /* TKAutoReplyContentView.h in Headers */,
522547E11F4C312A00226A2A /* TKRemoteControlWindowController.h in Headers */,
526F4D831F4AAC1900E46004 /* TKAutoReplyModel.h in Headers */,
Expand Down Expand Up @@ -394,10 +415,12 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
52475C2F1F6B993E00760E3E /* MMChatsTableCellView+hook.m in Sources */,
526F4D921F4AAE6F00E46004 /* TKAutoReplyCell.m in Sources */,
52B5CF151F3B4631000D9DD9 /* TKWeChatPluginConfig.m in Sources */,
522547E21F4C312A00226A2A /* TKRemoteControlWindowController.m in Sources */,
52B5CF131F3B4631000D9DD9 /* WeChat+hook.m in Sources */,
529CDDFF1F6E6A060056DC1A /* TKBaseModel.m in Sources */,
52B5CF1B1F3B4631000D9DD9 /* TKHelper.m in Sources */,
52B5CF171F3B4631000D9DD9 /* TKRemoteControlController.m in Sources */,
522547D01F4AE5A700226A2A /* NSView+Action.m in Sources */,
Expand All @@ -408,6 +431,7 @@
52B5CF191F3B4631000D9DD9 /* TKRemoteControlModel.m in Sources */,
528B4FB41EA7386D00BC6A89 /* main.mm in Sources */,
52B5CF1D1F3B4631000D9DD9 /* XMLReader.m in Sources */,
52475C331F6BA43800760E3E /* TKIgnoreSessonModel.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
Binary file not shown.
Loading

0 comments on commit 6b00d42

Please sign in to comment.