Skip to content

Commit

Permalink
Bump to v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoorlakshya committed Jul 26, 2019
1 parent 7e48e72 commit 4dfd43d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This project adheres to [Semantic Versioning](https://semver.org/).

### 1.3.0 (TBD)
### 1.3.0 (2019-07-26)
* Support JRuby 9.2+ ([#58](https://github.com/kapoorlakshya/screen-recorder/issues/58))
* Add `ScreenRecorder::Window.fetch_title` as an alias for `ScreenRecorder::Titles.fetch`.
The `Titles` class will be removed in version 2.0.
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

A Ruby gem to video record your computer screen - desktop or specific
window - using [FFmpeg](https://www.ffmpeg.org/). Primarily
geared towards recording automated UI test executions for debugging
and documentation.
geared towards recording automated UI (Selenium) test executions for
debugging and documentation.

#### Demo
[https://kapoorlakshya.github.io/introducing-screen-recorder-ruby-gem](https://kapoorlakshya.github.io/introducing-screen-recorder-ruby-gem).
Expand Down Expand Up @@ -105,10 +105,10 @@ A helper method is available to fetch the title of the active window
for the given process name.

```ruby
ScreenRecorder::Titles.fetch('firefox') # Name of exe
ScreenRecorder::Window.fetch_title('firefox') # Name of exe
#=> ["Mozilla Firefox"]

ScreenRecorder::Titles.fetch('chrome')
ScreenRecorder::Window.fetch_title('chrome')
#=> ["New Tab - Google Chrome"]
```

Expand Down Expand Up @@ -215,7 +215,8 @@ macOS compatibility in v1.1.0.

[![Streamio](http://d253c4ja9jigvu.cloudfront.net/assets/small-logo.png)](http://streamio.com)

This gem is based on the [streamio-ffmpeg](https://github.com/streamio/streamio-ffmpeg) gem.
This gem relies on the [streamio-ffmpeg](https://github.com/streamio/streamio-ffmpeg)
gem to extract metadata from the output file.
<br />
<br />

Expand Down
2 changes: 1 addition & 1 deletion lib/screen-recorder/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ScreenRecorder
VERSION = '1.2.0'.freeze
VERSION = '1.3.0'.freeze
end

0 comments on commit 4dfd43d

Please sign in to comment.