From 4dfd43d2400065b722d9b408669932df1638e03a Mon Sep 17 00:00:00 2001 From: Lakshya Kapoor Date: Thu, 25 Jul 2019 21:28:08 -0700 Subject: [PATCH] Bump to v1.3.0 --- CHANGELOG.md | 2 +- README.md | 11 ++++++----- lib/screen-recorder/version.rb | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3eb69ee..338e981 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 3ba4487..af90b49 100644 --- a/README.md +++ b/README.md @@ -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). @@ -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"] ``` @@ -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.

diff --git a/lib/screen-recorder/version.rb b/lib/screen-recorder/version.rb index 745c359..8a62252 100644 --- a/lib/screen-recorder/version.rb +++ b/lib/screen-recorder/version.rb @@ -1,3 +1,3 @@ module ScreenRecorder - VERSION = '1.2.0'.freeze + VERSION = '1.3.0'.freeze end \ No newline at end of file