From 9911559894cf02aac625a6ee23cafa48ac6825e6 Mon Sep 17 00:00:00 2001 From: anistar sung Date: Fri, 1 Feb 2019 10:48:04 +0800 Subject: [PATCH] Preparing meta data for 1.5.0 release --- AppDevKit/Info.plist | 4 ++-- CHANGELOG.md | 5 +++++ README.md | 3 ++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/AppDevKit/Info.plist b/AppDevKit/Info.plist index d1ed2f3..0d127e6 100644 --- a/AppDevKit/Info.plist +++ b/AppDevKit/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.4.0 + 1.5.0 CFBundleSignature ???? CFBundleVersion - 1529399657 + 1548988592 LSRequiresIPhoneOS NSCameraUsageDescription diff --git a/CHANGELOG.md b/CHANGELOG.md index dc98f76..e3052f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. `AppDevKit` adheres to [Semantic Versioning](http://semver.org/). +## 1.5.0 +#### Added +* Adding a new gradient view generator that can creat a complicated gradient effect with multiple colors and locations. +* Adding a new method to support redraw feature in ADKGradientView. + ## 1.4.0 #### Added * Adding a new method to support manual update layout in UIScrollView+ADKInfiniteScrollingView. It allows you to modify scroll view's offset dynamically. diff --git a/README.md b/README.md index 25d8dda..e4a3d30 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,8 @@ pod 'AppDevKit/AppDevImageKit'  - **UIScrollView+ADKPullToRefreshView** > Supports pull to refresh feature on scrollable view. For example: `UIScrollView`, `UITableView` and `UICollectionView`.  - **UIScrollView+ADKInfiniteScrollingView** > Supports infinite scrolling feature on scrollable view. For example: `UIScrollView`, `UITableView` and `UICollectionView`. - **ADKModalMaskView** > Providing a way to create a modal view for presenting specific view. - - **ADKGradientView** > Creates a gradient view for you. + - **ADKGradientView** > Creating a simple linear gradient view with orientations for you. + - **ADKMultiGradientView** > Creating a complicated linear gradient view with orientations for you. - **ADKDashedLineView** > Creates a dashed line around your view.