Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 2838898

Browse files
committed
Merge branch 'deploy/1.9.0' into productive
2 parents 8a40168 + 6ad5b3f commit 2838898

29 files changed

+330
-199
lines changed

.projlint.yml

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

.swiftlint.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,7 @@ explicit_type_interface:
8686
- local
8787

8888
file_header:
89-
required_pattern: |
90-
\/\/
91-
\/\/ Created by [^\(\)\d\n]+ on \S{6,10}\.
92-
\/\/ Copyright © \d{4} Flinesoft\. All rights reserved\.
93-
\/\/
89+
required_pattern: \/\/ Created by [^\(\)\d\n]+ on \S{6,10}\.
9490

9591
file_name:
9692
suffix_pattern: "Extensions?|\\+.*"

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,40 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
55

66
## [Unreleased]
77
### Added
8+
- None.
9+
### Changed
10+
- None.
11+
### Deprecated
12+
- None.
13+
### Removed
14+
- None.
15+
### Fixed
16+
- None.
17+
### Security
18+
- None.
19+
20+
21+
## [1.9.0] - 2019-02-11
22+
### Added
23+
- New `NibLoadable` protocol for loading `UIView` subclasses from XIB files both from code and IB files.
24+
- New `RoundableView` IBDesignable with `cornerRadius` defined for use right within Interface Builder files.
25+
- New `TemplateButton` IBDesignable with `image` always rendered as `.alwaysTemplate` for use right within IB files.
26+
- New `TemplateImageView` IBDesignable with `image` always rendered as `.alwaysTemplate` for use right within IB files.
27+
- New `visibleViewController` properties on `UIWindow` to get the currently presented view controller globally.
28+
### Changed
29+
- The `bindEdgesToSuperview` method now supports an optional `insets` parameter of type `UIEdgeInsets`
30+
### Deprecated
31+
- None.
32+
### Removed
33+
- None.
34+
### Fixed
35+
- None.
36+
### Security
37+
- None.
38+
39+
40+
## [1.8.0] - 2018-10-31
41+
### Added
842
- UITableViewExtension to dequeue cells, headers & footers with static typing.
943
via [#10](https://github.com/Flinesoft/HandyUIKit/pull/10) by [Murat Yilmaz](https://github.com/roccx)
1044
### Changed

Frameworks/HandyUIKit/ColorSpaces.swift

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1+
// Created by Tim Wood on 10/9/15.
12
//
2-
// Created by Tim Wood on 10/9/15.
3-
// Copyright © 2018 Flinesoft. All rights reserved.
4-
//
5-
// Original source: https://github.com/timrwood/ColorSpaces
3+
// Original source: https://github.com/timrwood/ColorSpaces
64
//
75

86
// swiftlint:disable all

Frameworks/HandyUIKit/Extensions/CGPointExtension.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
//
2-
// Created by Cihat Gündüz on 31.10.18.
3-
// Copyright © 2018 Flinesoft. All rights reserved.
4-
//
1+
// Created by Cihat Gündüz on 31.10.18.
52

63
import UIKit
74

Frameworks/HandyUIKit/Extensions/CGRectExtension.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
//
2-
// Created by Cihat Gündüz on 31.10.18.
3-
// Copyright © 2018 Flinesoft. All rights reserved.
4-
//
1+
// Created by Cihat Gündüz on 31.10.18.
52

63
import UIKit
74

Frameworks/HandyUIKit/Extensions/CGSizeExtension.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
//
2-
// Created by Cihat Gündüz on 31.10.18.
3-
// Copyright © 2018 Flinesoft. All rights reserved.
4-
//
1+
// Created by Cihat Gündüz on 31.10.18.
52

63
import UIKit
74

Frameworks/HandyUIKit/Extensions/NSAttributedStringExtension.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
//
2-
// Created by Cihat Gündüz on 19.02.17.
3-
// Copyright © 2017 Flinesoft. All rights reserved.
4-
//
1+
// Created by Cihat Gündüz on 19.02.17.
52

63
import UIKit
74

Frameworks/HandyUIKit/Extensions/StringExtension.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
//
2-
// Created by Cihat Gündüz on 19.02.17.
3-
// Copyright © 2017 Flinesoft. All rights reserved.
4-
//
1+
// Created by Cihat Gündüz on 19.02.17.
52

63
import UIKit
74

Frameworks/HandyUIKit/Extensions/UIColorExtension.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
//
2-
// Created by Cihat Gündüz on 29.01.17.
3-
// Copyright © 2017 Flinesoft. All rights reserved.
4-
//
1+
// Created by Cihat Gündüz on 29.01.17.
52

63
import UIKit
74

0 commit comments

Comments
 (0)