Skip to content

Commit 2b355c0

Browse files
author
Luc Dion
committed
1 parent 7854235 commit 2b355c0

File tree

3 files changed

+156
-105
lines changed

3 files changed

+156
-105
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@
77

88
# Change Log
99

10+
## [1.5.5](https://github.com/layoutBox/FlexLayout/releases/tag/1.5.5)
11+
Released on 2018-01-12
12+
13+
Add methods:
14+
15+
* **`all(_ value: CGFloat)`**
16+
The value specifies the **top, bottom, left and right edges** distance from the superview's corresponding edge in pixels.
17+
Similar to calling `view.top(value).bottom(value).left(value).right(value)`.
18+
19+
* **`horizontally(_ value: CGFloat)`** / **`horizontally(_ percent: Percent)`**
20+
The value specifies the **left and right edges** on its superview's corresponding edges in pixels (or in percentage of its superview's width).
21+
Similar to calling `view.left(value).right(value)`.
22+
23+
* **`vertically(_ value: CGFloat)`** / **`vertically(_ percent: Percent)`**
24+
The value specifies the ** top and bottom edges** on its superview's corresponding edges in pixels (or in percentage of its superview's height).
25+
Similar to calling `view.top(value).bottom(value)`.
26+
* Added by [Olivier Pineau](https://github.com/OlivierPineau) in Pull Request [#111](https://github.com/mirego/PinLayout/pull/111)
27+
1028
## [1.5.4](https://github.com/layoutBox/FlexLayout/releases/tag/1.5.4)
1129
Released on 2017-12-28
1230

PinLayout.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "PinLayout"
11-
s.version = "1.5.4"
11+
s.version = "1.5.5"
1212
s.summary = "Fast Swift UIViews layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable."
1313
s.description = "Fast Swift UIViews layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable."
1414

0 commit comments

Comments
 (0)