Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 14, 2020
1 parent 3505d6e commit 4202cef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Aperture.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Aperture'
s.version = '0.2.0'
s.version = '0.3.0'
s.summary = 'Record the screen on macOS'
s.license = 'MIT'
s.homepage = 'https://github.com/wulkano/Aperture'
Expand Down
4 changes: 3 additions & 1 deletion Sources/Aperture/Aperture.swift
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public final class Aperture: NSObject {
*/
public convenience init(
destination: URL,
framesPerSecond: Int = 30,
framesPerSecond: Int = 60,
cropRect: CGRect? = nil,
showCursor: Bool = true,
highlightClicks: Bool = false,
Expand Down Expand Up @@ -128,6 +128,8 @@ public final class Aperture: NSObject {
AVCaptureDevice(uniqueID: id)
```
The frame rate is 60 frames per second.
- Parameter destination: The destination URL where the captured video will be saved. Needs to be writable by current user.
- Parameter iosDevice: The iOS device to capture.
- Parameter audioDevice: An optional audio device to capture.
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#### SwiftPM

```swift
.package(url: "https://github.com/wulkano/Aperture", from: "0.2.0")
.package(url: "https://github.com/wulkano/Aperture", from: "0.3.0")
```

#### Carthage
Expand Down

0 comments on commit 4202cef

Please sign in to comment.