Skip to content

Commit

Permalink
Merge branch 'hotfix/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
bcylin committed Oct 19, 2015
2 parents 1df06ec + 94d57cb commit f0177fe
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 20 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log

## 0.1.0
## v0.1.1

#### Fixed

* Change the deployment target from iOS 8.4 to 8.0

## v0.1.0

#### Added

Expand All @@ -9,4 +15,4 @@
* `Section`
* `NavigationRow` with `Subtitle`
* `SwitchRow`
* `TapActionRow`
* `TapActionRow`
4 changes: 2 additions & 2 deletions Example/Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.4;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -306,7 +306,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.4;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
Expand Down
4 changes: 2 additions & 2 deletions Example/Example/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>0.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>101</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down
2 changes: 1 addition & 1 deletion QuickTableViewController.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "QuickTableViewController"
s.version = "0.1.0"
s.version = "0.1.1"
s.summary = "A simple way to create a table view for settings."
s.screenshots = "https://bcylin.github.io/QuickTableViewController/img/screenshot.png"

Expand Down
4 changes: 2 additions & 2 deletions QuickTableViewController.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.4;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -322,7 +322,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.4;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@ class ViewController: QuickTableViewController {
super.viewDidLoad()

tableContents = [
Section(title: "Section title", rows: [
NavigationRow(title: "Cell title", subtitle: .RightAligned("detail text"))
], footer: "Section footer"),

Section(title: nil, rows: [
NavigationRow(title: "Navigation", subtitle: .None, action: aNavigation),
SwitchRow(title: "Switch cell", switchValue: true, action: anOptionalAction),
TapActionRow(title: "Tap action", action: anAction),
Section(title: "Switch", rows: [
SwitchRow(title: "Setting 1", switchValue: true, action: { _ in }),
SwitchRow(title: "Setting 2", switchValue: false, action: { _ in }),
]),

Section(title: "Tap Action", rows: [
TapActionRow(title: "Tap action", action: showAlert)
])
]
}
Expand Down Expand Up @@ -82,8 +81,7 @@ TapActionRow(title: "Tap action", action: { (sender: Row) in })

## Requirements

* iOS 8.0+
* Xcode 6.4
* `v0.1.1` requires iOS 8.0+ with Xcode 6.4.
* Currently QuickTableViewController is written in Swift 1.2, soon will be updated to Swift 2.0.

## Installation
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<string>0.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit f0177fe

Please sign in to comment.