From eae3beca6ad21853503462a2acd7f101f28e5b27 Mon Sep 17 00:00:00 2001 From: Dariusz Rybicki Date: Thu, 18 Jun 2015 14:37:36 +0200 Subject: [PATCH] README.md updated --- README.md | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 82c821a..16cd917 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,7 @@ DRCollectionViewTableLayout `UICollectionViewLayout` for displaying 2D tables, similar to those in spreadsheets. Library contains layout class and `DRCollectionViewTableLayoutManager` that acts as a proxy and allows to configure collection view, and propagate it with data in easy way. For example implementation, checkout attached demo project. -Tested under iOS 7, should work on iOS 6 (check [reported issues](../../issues?labels=iOS+6) if you are planning to support iOS 6). If you are looking for specific version of the library, checkout those branches: - -- For development version - [master branch](../../tree/master) -- For v1.x.y - [branch v1](../../tree/v1) +Tested under iOS 7, should work on iOS 6 (check [reported issues](../../issues?labels=iOS+6) if you are planning to support iOS 6). Demo project is configured to display a table with column and row headers. Each cell has randomly generated color. Labels in cells contains `UICollectionView` indexPath for given cell, as well as layout's column and row number. Labels in headers contains `UICollectionView` section number, and layout's column/row number. @@ -22,15 +19,15 @@ You can install the library using CocoaPods. To do so, you will need to add one For stable release (recommended): - pod 'DRCollectionViewTableLayout', '~> 1.0.2' + pod 'DRCollectionViewTableLayout', '~> 1.0.3' -Which creates dependency for version `>= 1.0.2` and `< 1.1` +Which creates dependency for version `>= 1.0.3` and `< 1.1` For most recent or exact development version (not recommended on production): - pod 'DRCollectionViewTableLayout', :git => 'https://github.com/darrarski/DRCollectionViewTableLayout-iOS', :branch => 'VERSION_BRANCH' - -Where `VERSION_BRANCH` you should put the branch name for given version (ex. "v1"). It is recommended to set version branch explicity, as backward compatibility between those branches is not warranted. Master branch always contains the most recent version. + pod 'DRCollectionViewTableLayout', :git => 'https://github.com/darrarski/DRCollectionViewTableLayout-iOS.git', :tag => 'VERSION_TAG' + +Where `VERSION_TAG` you should put tag name for given version (ex. "1.0.3"). It is recommended to set version explicity instead of using most recent version, as backward compatibility is not warranted. ## Usage