Skip to content

Commit bd64367

Browse files
authored
Merge pull request #78 from HDB-Li/1.3.5
1.3.5
2 parents 0881ac8 + 8de64ac commit bd64367

File tree

405 files changed

+1786
-5176
lines changed

Some content is hidden

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

405 files changed

+1786
-5176
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [1.3.5](https://github.com/HDB-Li/LLDebugTool/releases/tag/1.3.5) (11/07/2019)
2+
3+
### Optimize functional experience
4+
5+
* Remove `Masonry`.
6+
* Fix some bugs.
7+
* More code comments.
8+
* Fix error in XCode 10.
9+
110
## [1.3.4](https://github.com/HDB-Li/LLDebugTool/releases/tag/1.3.4) (10/31/2019)
211

312
### More practical `Hierarchy` function

LLDebugTool.podspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "LLDebugTool"
3-
s.version = "1.3.4"
3+
s.version = "1.3.5"
44
s.summary = "LLDebugTool is a debugging tool for developers and testers that can help you analyze and manipulate data in non-xcode situations."
55
s.homepage = "https://github.com/HDB-Li/LLDebugTool"
66
s.license = "MIT"
@@ -14,6 +14,5 @@ Pod::Spec.new do |s|
1414
s.resources = "LLDebugTool/**/*.{xib,storyboard,bundle}"
1515
s.frameworks = "Foundation", "UIKit", "Photos", "SystemConfiguration", "CoreTelephony", "QuickLook", "WebKit"
1616
s.dependency "FMDB", "~> 2.0"
17-
s.dependency "Masonry"
1817

1918
end

LLDebugTool/Core/Component/AppInfo/Function/LLAppInfoHelper.h

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
// SOFTWARE.
2323

2424
#import <Foundation/Foundation.h>
25-
#import <UIKit/UIKit.h>
25+
26+
NS_ASSUME_NONNULL_BEGIN
2627

2728
/**
2829
Notifications will post each second on main thread.
@@ -33,18 +34,16 @@
3334
Response data traffic is download data.
3435
Total data traffic is total data.
3536
*/
36-
UIKIT_EXTERN NSNotificationName _Nonnull const LLAppInfoHelperDidUpdateAppInfosNotificationName;
37+
FOUNDATION_EXPORT NSNotificationName const LLAppInfoHelperDidUpdateAppInfosNotificationName;
3738

38-
UIKIT_EXTERN NSString * _Nonnull const LLAppInfoHelperCPUKey;
39-
UIKIT_EXTERN NSString * _Nonnull const LLAppInfoHelperMemoryUsedKey;
40-
UIKIT_EXTERN NSString * _Nonnull const LLAppInfoHelperMemoryFreeKey;
41-
UIKIT_EXTERN NSString * _Nonnull const LLAppInfoHelperMemoryTotalKey;
42-
UIKIT_EXTERN NSString * _Nonnull const LLAppInfoHelperFPSKey;
43-
UIKIT_EXTERN NSString * _Nonnull const LLAppInfoHelperRequestDataTrafficKey;
44-
UIKIT_EXTERN NSString * _Nonnull const LLAppInfoHelperResponseDataTrafficKey;
45-
UIKIT_EXTERN NSString * _Nonnull const LLAppInfoHelperTotalDataTrafficKey;
46-
47-
NS_ASSUME_NONNULL_BEGIN
39+
FOUNDATION_EXPORT NSString * const LLAppInfoHelperCPUKey;
40+
FOUNDATION_EXPORT NSString * const LLAppInfoHelperMemoryUsedKey;
41+
FOUNDATION_EXPORT NSString * const LLAppInfoHelperMemoryFreeKey;
42+
FOUNDATION_EXPORT NSString * const LLAppInfoHelperMemoryTotalKey;
43+
FOUNDATION_EXPORT NSString * const LLAppInfoHelperFPSKey;
44+
FOUNDATION_EXPORT NSString * const LLAppInfoHelperRequestDataTrafficKey;
45+
FOUNDATION_EXPORT NSString * const LLAppInfoHelperResponseDataTrafficKey;
46+
FOUNDATION_EXPORT NSString * const LLAppInfoHelperTotalDataTrafficKey;
4847

4948
/**
5049
Monitoring app's properties.

LLDebugTool/Core/Component/AppInfo/Function/LLAppInfoHelper.m

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,17 @@
2222
// SOFTWARE.
2323

2424
#import "LLAppInfoHelper.h"
25+
2526
#import <SystemConfiguration/CaptiveNetwork.h>
2627
#import <malloc/malloc.h>
2728
#import <mach-o/arch.h>
2829
#import <mach/mach.h>
29-
#import "UIDevice+LL_Utils.h"
30+
31+
#import "LLNetworkHelper.h"
3032
#import "LLMacros.h"
33+
34+
#import "UIDevice+LL_Utils.h"
3135
#import "NSObject+LL_Utils.h"
32-
#import "LLNetworkHelper.h"
3336

3437
static LLAppInfoHelper *_instance = nil;
3538

LLDebugTool/Core/Component/AppInfo/LLAppInfoComponent.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
NS_ASSUME_NONNULL_BEGIN
2727

28+
/// App info function component.
2829
@interface LLAppInfoComponent : LLComponent
2930

3031
@end

LLDebugTool/Core/Component/AppInfo/LLAppInfoComponent.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@
2222
// SOFTWARE.
2323

2424
#import "LLAppInfoComponent.h"
25-
#import "LLWindowManager.h"
26-
#import "LLNavigationController.h"
25+
2726
#import "LLAppInfoViewController.h"
27+
#import "LLNavigationController.h"
28+
#import "LLWindowManager.h"
2829

2930
@implementation LLAppInfoComponent
3031

LLDebugTool/Core/Component/AppInfo/UserInterface/LLAppInfoViewController.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
NS_ASSUME_NONNULL_BEGIN
2727

28+
/// App info function view controller.
2829
@interface LLAppInfoViewController : LLTitleViewController
2930

3031
@end

LLDebugTool/Core/Component/AppInfo/UserInterface/LLAppInfoViewController.m

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
// SOFTWARE.
2323

2424
#import "LLAppInfoViewController.h"
25+
26+
#import "LLTitleCellCategoryModel.h"
2527
#import "LLBaseTableViewCell.h"
28+
#import "LLTitleCellModel.h"
2629
#import "LLAppInfoHelper.h"
30+
#import "LLThemeManager.h"
31+
#import "LLFactory.h"
2732
#import "LLMacros.h"
2833
#import "LLConfig.h"
29-
#import "LLFactory.h"
30-
#import "LLThemeManager.h"
3134

3235
@interface LLAppInfoViewController ()
3336

LLDebugTool/Core/Component/AppInfo/UserInterface/LLAppInfoWindow.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
NS_ASSUME_NONNULL_BEGIN
2727

28+
/// App info function window.
2829
@interface LLAppInfoWindow : LLComponentWindow
2930

3031
@end

LLDebugTool/Core/Component/AppInfo/UserInterface/LLAppInfoWindow.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
// SOFTWARE.
2323

2424
#import "LLAppInfoWindow.h"
25+
2526
#import "LLAppInfoViewController.h"
2627
#import "LLNavigationController.h"
2728
#import "LLWindowManager.h"

0 commit comments

Comments
 (0)