Commit d7b827c7 by Daniel Dahan

preparation for release

parent 7758dbc6
...@@ -42,10 +42,9 @@ class ViewController: UIViewController { ...@@ -42,10 +42,9 @@ class ViewController: UIViewController {
*/ */
private func prepareGeneralMaterialPulseViewExample() { private func prepareGeneralMaterialPulseViewExample() {
let materialPulseView: MaterialPulseView = MaterialPulseView(frame: CGRectMake(132, 132, 150, 150)) let materialPulseView: MaterialPulseView = MaterialPulseView(frame: CGRectMake(132, 132, 150, 150))
materialPulseView.image = UIImage(named: "ContentAppIcon")
materialPulseView.shape = .Circle materialPulseView.shape = .Circle
materialPulseView.shadowDepth = .Depth2 materialPulseView.shadowDepth = .Depth2
materialPulseView.image = UIImage(named: "ContentAppIcon")
materialPulseView.backgroundColor = MaterialColor.teal.darken1
// Add view to UIViewController. // Add view to UIViewController.
view.addSubview(materialPulseView) view.addSubview(materialPulseView)
......
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'MK' s.name = 'MK'
s.version = '1.24.3' s.version = '1.24.4'
s.license = { :type => "AGPL-3.0", :file => "LICENSE" } s.license = { :type => "AGPL-3.0", :file => "LICENSE" }
s.summary = 'Beautiful Material Design in Swift.' s.summary = 'Beautiful Material Design in Swift.'
s.homepage = 'http://materialkit.io' s.homepage = 'http://materialkit.io'
......
...@@ -49,10 +49,9 @@ MaterialPulseView is at the heart of all pulse animations. Any view that subclas ...@@ -49,10 +49,9 @@ MaterialPulseView is at the heart of all pulse animations. Any view that subclas
```swift ```swift
let materialPulseView: MaterialPulseView = MaterialPulseView(frame: CGRectMake(132, 132, 150, 150)) let materialPulseView: MaterialPulseView = MaterialPulseView(frame: CGRectMake(132, 132, 150, 150))
materialPulseView.image = UIImage(named: "ContentAppIcon")
materialPulseView.shape = .Circle materialPulseView.shape = .Circle
materialPulseView.shadowDepth = .Depth2 materialPulseView.shadowDepth = .Depth2
materialPulseView.image = UIImage(named: "ContentAppIcon")
materialPulseView.backgroundColor = MaterialColor.teal.darken1
// Add view to UIViewController. // Add view to UIViewController.
view.addSubview(materialPulseView) view.addSubview(materialPulseView)
...@@ -181,7 +180,7 @@ MaterialLayout.height(view, child: navigationBarView, height: 70) ...@@ -181,7 +180,7 @@ MaterialLayout.height(view, child: navigationBarView, height: 70)
### CardView ### CardView
Right out of the box to a fully customized configuration, CardView always stands out. Take a look at a few examples in action and find more in the Examples directory. Right out of the box to a fully customizable configuration, CardView always stands out. Take a look at a few examples in action and find more in the Examples directory.
![MaterialKitCardView](http://www.materialkit.io/MK/MaterialKitCardView.gif) ![MaterialKitCardView](http://www.materialkit.io/MK/MaterialKitCardView.gif)
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.24.3</string> <string>1.24.4</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment