Skip to content

Commit 9cb0a6d

Browse files
authored
Merge pull request #60 from HDB-Li/1.3.0
1.3.0
2 parents 5dbf547 + 1b9a7f8 commit 9cb0a6d

File tree

586 files changed

+16001
-5895
lines changed

Some content is hidden

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

586 files changed

+16001
-5895
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## [1.3.0](https://github.com/HDB-Li/LLDebugTool/releases/tag/1.3.0) (09/01/2019)
2+
3+
### Hierarchy and magnifying is coming.
4+
5+
Hierarchy function : Now you can use `Hierarchy` function to see every element on screen, and you can visually see their frame and properties, `Hierarchy info` will come soon.
6+
7+
Magnifying function : Now you can use `Magnifying` function to see the contents or color of each pixel, this makes it easier for you to communicate with the UI designer.
8+
9+
More changes can be viewed in [Version 1.3.0 Project](https://github.com/HDB-Li/LLDebugTool/projects/8).
10+
11+
#### Add
12+
13+
* Refactory UI hierarchy, now use many windows to display functions, each function use one window, more information you can see `LLWindowManager.m`.
14+
15+
#### Update
16+
17+
* Changed folder path.
18+
* Update a new user interface.
19+
* Fix in iOS 13.
20+
21+
#### Remove
22+
23+
* `LLDebugTool` didn't supports component-based now. This is a useless feature and adds to the difficulty of calling between modules. `LLDebugTool` is later maintained as a single app rather than as multiple functional modules.
24+
* Remove some unused files, methods and macros.
25+
126
## [1.2.2](https://github.com/HDB-Li/LLDebugTool/releases/tag/1.2.2) (10/23/2018)
227

328
### Fix LLWindow become keywindow's bug.

LLDebugTool.podspec

Lines changed: 4 additions & 59 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.2.2"
3+
s.version = "1.3.0"
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"
@@ -9,65 +9,10 @@ Pod::Spec.new do |s|
99
s.platform = :ios, "8.0"
1010
s.source = { :git => "https://github.com/HDB-Li/LLDebugTool.git", :tag => s.version }
1111
s.requires_arc = true
12-
s.public_header_files = "LLDebugTool/**/*.h"
12+
s.public_header_files = "LLDebugTool/LLDebug.h", "LLDebugTool/DebugTool/*.h"
1313
s.source_files = "LLDebugTool/**/*.{h,m}"
1414
s.resources = "LLDebugTool/**/*.{xib,storyboard,bundle}"
15-
# s.dependency "FMDB"
16-
17-
s.subspec 'Network' do |ss|
18-
ss.source_files = "LLDebugTool/Components/Network/**/*.{h,m}"
19-
ss.resources = "LLDebugTool/Components/Network/**/*.{xib,storyboard,bundle}"
20-
ss.public_header_files = "LLDebugTool/Components/Network/**/*.h"
21-
ss.dependency "LLDebugTool/StorageManager"
22-
end
23-
24-
s.subspec 'Log' do |ss|
25-
ss.source_files = "LLDebugTool/Components/Log/**/*.{h,m}"
26-
ss.resources = "LLDebugTool/Components/Log/**/*.{xib,storyboard,bundle}"
27-
ss.public_header_files = "LLDebugTool/Components/Log/**/*.h"
28-
ss.dependency "LLDebugTool/StorageManager"
29-
end
30-
31-
s.subspec 'Crash' do |ss|
32-
ss.source_files = "LLDebugTool/Components/Crash/**/*.{h,m}"
33-
ss.resources = "LLDebugTool/Components/Crash/**/*.{xib,storyboard,bundle}"
34-
ss.public_header_files = "LLDebugTool/Components/Crash/**/*.h"
35-
ss.dependency "LLDebugTool/StorageManager"
36-
end
37-
38-
s.subspec 'AppInfo' do |ss|
39-
ss.source_files = "LLDebugTool/Components/AppInfo/**/*.{h,m}"
40-
# ss.resources = "LLDebugTool/Components/AppInfo/**/*.{xib,storyboard,bundle}"
41-
ss.public_header_files = "LLDebugTool/Components/AppInfo/**/*.h"
42-
ss.dependency "LLDebugTool/General"
43-
end
44-
45-
s.subspec 'Sandbox' do |ss|
46-
ss.source_files = "LLDebugTool/Components/Sandbox/**/*.{h,m}"
47-
ss.resources = "LLDebugTool/Components/Sandbox/**/*.{xib,storyboard,bundle}"
48-
ss.public_header_files = "LLDebugTool/Components/Sandbox/**/*.h"
49-
ss.dependency "LLDebugTool/General"
50-
end
51-
52-
s.subspec 'Screenshot' do |ss|
53-
ss.source_files = "LLDebugTool/Components/Screenshot/**/*.{h,m}"
54-
# ss.resources = "LLDebugTool/Components/Screenshot/**/*.{xib,storyboard,bundle}"
55-
ss.public_header_files = "LLDebugTool/Components/Screenshot/**/*.h"
56-
ss.dependency "LLDebugTool/General"
57-
end
58-
59-
s.subspec 'StorageManager' do |ss|
60-
ss.source_files = "LLDebugTool/Components/StorageManager/**/*.{h,m}"
61-
# ss.resources = "LLDebugTool/Components/StorageManager/**/*.{xib,storyboard,bundle}"
62-
ss.public_header_files = "LLDebugTool/Components/StorageManager/**/*.h"
63-
ss.dependency "FMDB"
64-
ss.dependency "LLDebugTool/General"
65-
end
66-
67-
s.subspec 'General' do |ss|
68-
ss.source_files = "LLDebugTool/Config/*.{h,m}" , "LLDebugTool/Components/General/**/*.{h,m}"
69-
ss.resources = "LLDebugTool/Components/General/**/*.{xib,storyboard,bundle}"
70-
ss.public_header_files = "LLDebugTool/Config/*.h" , "LLDebugTool/Components/General/**/*.h"
71-
end
15+
s.frameworks = "Foundation", "UIKit", "Photos", "SystemConfiguration", "CoreTelephony", "QuickLook"
16+
s.dependency "FMDB"
7217

7318
end

LLDebugTool/Components/Crash/UserInterface/LLCrashVC.m

Lines changed: 0 additions & 234 deletions
This file was deleted.

0 commit comments

Comments
 (0)