Commit 34d4b237 by Daniel Dahan

development: prepare for release

parent 7471d93a
......@@ -3,7 +3,7 @@ Pod::Spec.new do |s|
s.version = '2.3.0'
s.license = 'BSD-3-Clause'
s.summary = 'Material is an animation and graphics framework that is used to create beautiful applications.'
s.homepage = 'http://materialswift.io'
s.homepage = 'http://materialswift.com'
s.social_media_url = 'https://www.facebook.com/cosmicmindio'
s.authors = { 'CosmicMind, Inc.' => 'support@cosmicmind.io' }
s.source = { :git => 'https://github.com/CosmicMind/Material.git', :tag => s.version }
......
......@@ -39,7 +39,7 @@ We moved all sample projects to a separate repo named [Samples](https://github.c
- [x] Sample Projects
- [x] And More...
## Releasing October 30th 2016
## Releasing November 2016
- [x] Reminders
- [x] Text Editor
......
......@@ -269,9 +269,6 @@ public protocol CaptureDelegate {
}
open class Capture: View {
/// A boolean indicating if an animation is in progress.
open var isAnimating = false
/// A reference to the capture mode.
open var mode = CaptureMode.photo
......@@ -730,7 +727,7 @@ extension Capture {
/// Changees the camera if possible.
open func changeCamera() {
guard canChangeCamera && !isAnimating else {
guard canChangeCamera else {
return
}
......@@ -739,8 +736,6 @@ extension Capture {
return
}
flashMode = .back == v ? .off : .auto
delegate?.capture?(capture: self, willChangeCamera: v)
let videoInput = try AVCaptureDeviceInput(device: inactiveCamera!)
......
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