Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
Masonry
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Jonas Budelmann
11 years ago
Commit
9d3a822c9cdba0ea47d3d5ef607a5b7e1d339d02
1 parent
2e923b53
v0.3.2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
2 deletions
CHANGELOG.md
Masonry.podspec
CHANGELOG.md
View file @
9d3a822
v0.3.2
=======
*
Add support for Mac OSX animator proxy (
[
pfandrade
](
https://github.com/pfandrade
)
)
```
objective-c
self.leftConstraint.animator.offset(20);
```
*
Add setter methods for NSLayoutConstraint constant proxies like offset, centerOffset, insets, sizeOffset.
now you can update these values using more natural syntax
```
objective-c
self.edgesConstraint.insets(UIEdgeInsetsMake(20, 10, 15, 5));
```
can now be written as:
```
objective-c
self.edgesConstraint.insets = UIEdgeInsetsMake(20, 10, 15, 5);
```
v0.3.1
=======
...
...
Masonry.podspec
View file @
9d3a822
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'Masonry'
s
.
version
=
'0.3.
1
'
s
.
version
=
'0.3.
2
'
s
.
license
=
'MIT'
s
.
summary
=
'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
s
.
homepage
=
'https://github.com/cloudkite/Masonry'
s
.
author
=
{
'Jonas Budelmann'
=>
'jonas.budelmann@gmail.com'
}
s
.
source
=
{
:git
=>
'https://github.com/cloudkite/Masonry.git'
,
:tag
=>
'v0.3.
1
'
}
s
.
source
=
{
:git
=>
'https://github.com/cloudkite/Masonry.git'
,
:tag
=>
'v0.3.
2
'
}
s
.
description
=
%{
Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
...
...
Please
register
or
login
to post a comment