Skip to content

Commit 916fafd

Browse files
Release v1.1.0 (#64)
* Update README and CHANGES. * Bump to v1.1.0. * Update compatibility section in README. * Add release date in changelog. * Update OS gem version requirement to be 1.0.0 or higher.
1 parent 99ff7c8 commit 916fafd

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

CHANGES.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
### 1.1.0 (TBD)
2-
* <b>Now supports macOS</b>. Please [raise an Issue](https://github.com/kapoorlakshya/screen-recorder/issues/new) if you run into problems.
3-
* Force kill `ffmpeg` if it takes more than 10s to quit.
1+
### 1.1.0 (2019-04-14)
2+
* <b>Add support for macOS</b> ([#55](https://github.com/kapoorlakshya/screen-recorder/issues/55)). Please [raise an Issue](https://github.com/kapoorlakshya/screen-recorder/issues/new) if you run into problems.
3+
* Force kill `ffmpeg` if it takes more than 10s to quit ([#60](https://github.com/kapoorlakshya/screen-recorder/issues/60)).
44
* Fix a bug where `ScreenRecorder.ffmpeg_binary=()` was not properly defined.
5-
* `ScreenRecorder::Titles#fetch` will now raise a `NotImplementedError` when used in a
6-
Linux or a macOS environment.
5+
* `ScreenRecorder::Titles#fetch` will now raise `NotImplementedError` when used in a
6+
Linux or a macOS environment. Only works on Windows.
7+
* Default `input` value on Linux is now `:0`.
78

89
### 1.0.0 (2019-03-15)
910
* Released first major version.

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ Demo - [https://kapoorlakshya.github.io/introducing-screen-recorder-ruby-gem](ht
1414

1515
## Compatibility
1616

17-
Supports Windows, Linux and macOS as of v1.1.0.
18-
19-
Requires Ruby 2.0.0 (MRI) or higher, and is tested
20-
with versions 2.3.8, 2.4.5, 2.5.3, and 2.6.1.
17+
Works on Windows, Linux, and macOS. Requires Ruby 2.0.0 or higher.
2118

2219
## Installation
2320

lib/screen-recorder/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ScreenRecorder
2-
VERSION = '1.0.0'.freeze
2+
VERSION = '1.1.0'.freeze
33
end

screen-recorder.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ Gem::Specification.new do |spec|
3535
spec.add_development_dependency 'watir', '~> 6.0'
3636
spec.add_development_dependency 'webdrivers', '~> 3.0'
3737

38-
spec.add_runtime_dependency 'os', '~> 0.9.0'
38+
spec.add_runtime_dependency 'os', '~> 1.0.0'
3939
spec.add_runtime_dependency 'streamio-ffmpeg', '~> 3.0'
4040
end

0 commit comments

Comments
 (0)