forked from MustangYM/WeChatExtension-ForMac
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
293 additions
and
72 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+24.2 KB
(100%)
...xtension/Rely/Plugin/WeChatExtension/WeChatExtension.framework/Versions/A/WeChatExtension
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+24.2 KB
(100%)
...on/Rely/Plugin/WeChatExtension/WeChatExtension.framework/Versions/Current/WeChatExtension
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+24.2 KB
(100%)
WeChatExtension/Rely/Plugin/WeChatExtension/WeChatExtension.framework/WeChatExtension
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+15.8 KB
(110%)
...xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 0 additions & 30 deletions
30
WeChatExtension/WeChatExtension/Sources/Common/TKPrefixHeader.pch
This file was deleted.
Oops, something went wrong.
38 changes: 38 additions & 0 deletions
38
WeChatExtension/WeChatExtension/Sources/Common/YMPrefixHeader.pch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// | ||
// YMPrefixHeader.pch | ||
// WeChatExtension | ||
// | ||
// Created by WeChatExtension on 2017/8/20. | ||
// Copyright © 2017年 WeChatExtension. All rights reserved. | ||
// | ||
|
||
#ifndef YMPrefixHeader_pch | ||
#define YMPrefixHeader_pch | ||
|
||
#ifdef __OBJC__ | ||
#import "ColorConstant.h" | ||
#import "DefineConstant.h" | ||
#import "NotifyConstant.h" | ||
#import "NSView+Action.h" | ||
#import "NSButton+Action.h" | ||
#import "NSTextField+Action.h" | ||
#import "NSMenu+Action.h" | ||
#import "NSString+Action.h" | ||
#import "NSDate+Action.h" | ||
#import "NSWindowController+Action.h" | ||
#import "WeChatPlugin.h" | ||
#import "YMUtility.h" | ||
|
||
#import "TKWeChatPluginConfig.h" | ||
#import "YMHelper.h" | ||
#endif | ||
|
||
#define kRGBColor(r,g,b,a) [NSColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:(a)] | ||
#define kArc4random_Double_inSpace(a,b) a<b ? rand() / (float)RAND_MAX * (b-a) * 1 + (a) : rand() / (float)RAND_MAX * (a-b) * 1 + (b) | ||
|
||
#define kDarkBacgroundColor kRGBColor(24, 34, 45, 1) | ||
#define kPinkBacgroundColor kRGBColor(226,139,156,1.0) | ||
|
||
#define kMainBackgroundColor [TKWeChatPluginConfig sharedConfig].darkMode ? kDarkBacgroundColor : kPinkBacgroundColor | ||
#define kMainTextColor [TKWeChatPluginConfig sharedConfig].darkMode ? kRGBColor(177, 195, 213, 1.0) : kRGBColor(47, 47, 50, 0.7) | ||
#endif /* YMPrefixHeader_pch */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.