Skip to content

Commit 47e1ee5

Browse files
committed
Update for 1.3.1
1 parent 4f97df3 commit 47e1ee5

File tree

4 files changed

+21
-13
lines changed

4 files changed

+21
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.3.1](https://github.com/HDB-Li/LLDebugToolSwift/releases/tag/1.3.1) (09/06/2019)
2+
3+
### Synchronous update
4+
5+
More update informations please see [LLDebugTool CHANGELOG](https://github.com/HDB-Li/LLDebugTool/blob/master/CHANGELOG.md).
6+
7+
Update for version 1.3.1 based on LLDebugTool. Nothing changed in swift.
8+
19
## [1.3.0](https://github.com/HDB-Li/LLDebugToolSwift/releases/tag/1.3.0) (09/01/2019)
210

311
### Synchronous update

LLDebugToolSwift.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "LLDebugToolSwift"
3-
s.version = "1.3.0"
3+
s.version = "1.3.1"
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/LLDebugToolSwift"
66
s.license = "MIT"
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
1111
s.requires_arc = true
1212
s.source_files = "LLDebugToolSwift/**/*.{h,m,swift}"
1313
# s.resources = "LLDebugToolSwift/**/*.{xib,storyboard,bundle}"
14-
s.dependency "LLDebugTool" , '1.3.0'
15-
s.swift_version = "4.0"
14+
s.dependency "LLDebugTool" , '1.3.1'
15+
s.swift_version = "4.0"
1616

1717
end

README-cn.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</p>
44

55
[![Version](https://img.shields.io/badge/iOS-%3E%3D8.0-f07e48.svg)](https://img.shields.io/badge/iOS-%3E%3D8.0-f07e48.svg)
6-
[![CocoaPods Compatible](https://img.shields.io/badge/Pod-v1.3.0-blue.svg)](https://img.shields.io/badge/Pod-v1.3.0-blue.svg)
6+
[![CocoaPods Compatible](https://img.shields.io/badge/Pod-v1.3.1-blue.svg)](https://img.shields.io/badge/Pod-v1.3.1-blue.svg)
77
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
88
[![Platform](https://img.shields.io/badge/Platform-iOS-lightgrey.svg)](https://img.shields.io/badge/Platform-iOS-lightgrey.svg)
99
[![License](https://img.shields.io/badge/License-Anti%20996-blue.svg)](https://github.com/996icu/996.ICU/blob/master/LICENSE)
@@ -44,15 +44,15 @@ LLDebugTool是一款针对开发者和测试者的调试工具,它可以帮助
4444
<img src="https://raw.githubusercontent.com/HDB-Li/HDBImageRepository/master/LLDebugTool/ScreenShot-10.png" width="18%"> </img>
4545
</div>
4646

47-
## 最近更新 (1.3.0)
47+
## 最近更新 (1.3.1)
4848

4949
### 视图结构功能和放大镜功能。
5050

5151
视图结构功能:现在你可以使用`Hierarchy`函数来查看屏幕上的每个元素,并且可以直观地看到它们的frame和属性,接下来会增加`Hierarchy info`的实现。
5252

5353
放大镜功能:现在你可以使用`Magnifying`功能来查看每个像素的内容或颜色,这让你和UI设计师的沟通更方便。
5454

55-
更多的修改内容可以查看 [Version 1.3.0 Project](https://github.com/HDB-Li/LLDebugTool/projects/8)
55+
更多的修改内容可以查看 [Version 1.3.1 Project](https://github.com/HDB-Li/LLDebugTool/projects/8)
5656

5757
#### 新增
5858

@@ -98,15 +98,15 @@ LLDebugTool是一款针对开发者和测试者的调试工具,它可以帮助
9898
##### Objective - C
9999

100100
> 1. 添加 `pod 'LLDebugTool' , '~> 1.0.0'` 到你的Podfile里。
101-
> 2. 如果只想在Debug模式下使用,则添加`pod 'LLDebugTool' , '~> 1.0.0' ,:configurations => ['Debug']` 到你的Podfile里,详细的配置方式可以查看[Wiki/如何仅在Debug环境中使用](https://github.com/HDB-Li/LLDebugTool/wiki/如何仅在Debug环境中使用)。如果你想要指定某个版本,可以类似这样使用 `pod 'LLDebugTool' , '1.3.0' ,:configurations => ['Debug']`
101+
> 2. 如果只想在Debug模式下使用,则添加`pod 'LLDebugTool' , '~> 1.0.0' ,:configurations => ['Debug']` 到你的Podfile里,详细的配置方式可以查看[Wiki/如何仅在Debug环境中使用](https://github.com/HDB-Li/LLDebugTool/wiki/如何仅在Debug环境中使用)。如果你想要指定某个版本,可以类似这样使用 `pod 'LLDebugTool' , '1.3.1' ,:configurations => ['Debug']`
102102
> 3. 推荐的方式是采用多Target来处理,只在Debug Target中添加`pod 'LLDebugTool' , '~> 1.0.0'`,这样做的好处既不污染Product环境的代码,又可以在Archive Debug环境的App时,将`LLDebugTool`集成进去(如果采用`:configurations => ['Debug']`的方式,只能通过XCode运行,不可以Archive成App)。
103103
> 4. 终端输入`pod install`来进行集成。搜索不到`LLDebugTool`或者搜不到最新版本时,可先运行`pod repo update`,再执行`pod install`
104104
> 5. 在你需要使用LLDebugTool的文件里添加`#import "LLDebug.h"`,或者直接在pch文件中添加`#import "LLDebug.h"`
105105
106106
##### Swift
107107

108108
> 1. 添加 `pod 'LLDebugToolSwift' , '~> 1.0.0'` 到你的Podfile里。
109-
> 2. 如果只想在Debug模式下使用,则添加`pod 'LLDebugToolSwift' , '~> 1.0.0' ,:configurations => ['Debug']` 到你的Podfile里,详细的配置方式可以查看[Wiki/如何仅在Debug环境中使用](https://github.com/HDB-Li/LLDebugTool/wiki/如何仅在Debug环境中使用)。如果你想要指定某个版本,可以类似这样使用 `pod 'LLDebugToolSwift' , '1.3.0' ,:configurations => ['Debug']`
109+
> 2. 如果只想在Debug模式下使用,则添加`pod 'LLDebugToolSwift' , '~> 1.0.0' ,:configurations => ['Debug']` 到你的Podfile里,详细的配置方式可以查看[Wiki/如何仅在Debug环境中使用](https://github.com/HDB-Li/LLDebugTool/wiki/如何仅在Debug环境中使用)。如果你想要指定某个版本,可以类似这样使用 `pod 'LLDebugToolSwift' , '1.3.1' ,:configurations => ['Debug']`
110110
> 3. 推荐的方式是采用多Target来处理,只在Debug Target中添加`pod 'LLDebugToolSwift' , '~> 1.0.0'`,这样做的好处既不污染Product环境的代码,又可以在Archive Debug环境的App时,将`LLDebugToolSwift`集成进去(如果采用`:configurations => ['Debug']`的方式,只能通过XCode运行,不可以Archive成App)。
111111
> 4. 必须在Podfile中添加 **`use_frameworks!`**
112112
> 5. 终端输入`pod install`来进行集成。搜索不到`LLDebugToolSwift`或者搜不到最新版本时,可先运行`pod repo update`,再执行`pod install`

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</p>
44

55
[![Version](https://img.shields.io/badge/iOS-%3E%3D8.0-f07e48.svg)](https://img.shields.io/badge/iOS-%3E%3D8.0-f07e48.svg)
6-
[![CocoaPods Compatible](https://img.shields.io/badge/pod-v1.3.0-blue.svg)](https://img.shields.io/badge/pod-v1.3.0-blue.svg)
6+
[![CocoaPods Compatible](https://img.shields.io/badge/pod-v1.3.1-blue.svg)](https://img.shields.io/badge/pod-v1.3.1-blue.svg)
77
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
88
[![Platform](https://img.shields.io/badge/Platform-iOS-lightgrey.svg)](https://img.shields.io/badge/Platform-iOS-lightgrey.svg)
99
[![License](https://img.shields.io/badge/License-Anti%20996-blue.svg)](https://github.com/996icu/996.ICU/blob/master/LICENSE)
@@ -44,15 +44,15 @@ Choose LLDebugTool for your next project, or migrate over your existing projects
4444
<img src="https://raw.githubusercontent.com/HDB-Li/HDBImageRepository/master/LLDebugTool/ScreenShot-10.png" width="18%"> </img>
4545
</div>
4646

47-
## What's new in 1.3.0
47+
## What's new in 1.3.1
4848

4949
### Hierarchy and magnifying is coming.
5050

5151
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.
5252

5353
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.
5454

55-
More changes can be viewed in [Version 1.3.0 Project](https://github.com/HDB-Li/LLDebugTool/projects/8).
55+
More changes can be viewed in [Version 1.3.1 Project](https://github.com/HDB-Li/LLDebugTool/projects/8).
5656

5757
#### Add
5858

@@ -98,15 +98,15 @@ More changes can be viewed in [Version 1.3.0 Project](https://github.com/HDB-Li/
9898
##### Objective - C
9999

100100
> 1. Add a pod entry for LLDebugTool to your Podfile `pod 'LLDebugTool' , '~> 1.0.0'`.
101-
> 2. If only you want to use it only in Debug mode, Add a pod entry for LLDebugTool to your Podfile `pod 'LLDebugTool' , '~> 1.0.0' ,:configurations => ['Debug']`, Details also see [Wiki/Use in Debug environment](https://github.com/HDB-Li/LLDebugTool/wiki/Use-in-Debug-environment). If you want to specify the version, use as `pod 'LLDebugTool' , '1.3.0' ,:configurations => ['Debug']`.
101+
> 2. If only you want to use it only in Debug mode, Add a pod entry for LLDebugTool to your Podfile `pod 'LLDebugTool' , '~> 1.0.0' ,:configurations => ['Debug']`, Details also see [Wiki/Use in Debug environment](https://github.com/HDB-Li/LLDebugTool/wiki/Use-in-Debug-environment). If you want to specify the version, use as `pod 'LLDebugTool' , '1.3.1' ,:configurations => ['Debug']`.
102102
> 3. The recommended approach is to use multiple targets and only add `pod 'LLDebugTool', '~> 1.0.0'` to Debug Target. This has the advantage of not contamiling the code in the Product environment and can be integrated into the App in the Archive Debug environment (if `:configurations => ['Debug']`, it can only run through XCode. It is not possible to Archive as an App).
103103
> 4. Install the pod(s) by running `pod install`. If you can't search `LLDebugTool` or you can't find the newest release version, running `pod repo update` before `pod install`.
104104
> 5. Include LLDebugTool wherever you need it with `#import "LLDebug.h"` or you can write `#import "LLDebug.h"` in your .pch in your .pch file.
105105
106106
##### Swift
107107

108108
> 1. Add a pod entry for LLDebugToolSwift to your Podfile `pod 'LLDebugToolSwift' , '~> 1.0.0'`.
109-
> 2. If only you want to use it only in Debug mode, Add a pod entry for LLDebugToolSwift to your Podfile `pod 'LLDebugToolSwift' , '~> 1.0.0' ,:configurations => ['Debug']`, Details also see [Wiki/Use in Debug environment](https://github.com/HDB-Li/LLDebugTool/wiki/Use-in-Debug-environment). If you want to specify the version, use as `pod 'LLDebugToolSwift' , '1.3.0' ,:configurations => ['Debug']`.
109+
> 2. If only you want to use it only in Debug mode, Add a pod entry for LLDebugToolSwift to your Podfile `pod 'LLDebugToolSwift' , '~> 1.0.0' ,:configurations => ['Debug']`, Details also see [Wiki/Use in Debug environment](https://github.com/HDB-Li/LLDebugTool/wiki/Use-in-Debug-environment). If you want to specify the version, use as `pod 'LLDebugToolSwift' , '1.3.1' ,:configurations => ['Debug']`.
110110
> 3. The recommended approach is to use multiple targets and only add `pod 'LLDebugToolSwift', '~> 1.0.0'` to Debug Target. This has the advantage of not contamiling the code in the Product environment and can be integrated into the App in the Archive Debug environment (if `:configurations => ['Debug']`, it can only run through XCode. It is not possible to Archive as an App).
111111
> 4. Must be added in the Podfile **`use_frameworks!`**.
112112
> 5. Install the pod(s) by running `pod install`. If you can't search `LLDebugToolSwift` or you can't find the newest release version, running `pod repo update` before `pod install`.

0 commit comments

Comments
 (0)