Skip to content

Commit

Permalink
Merge pull request #238 from 10up/develop
Browse files Browse the repository at this point in the history
2.3.1
  • Loading branch information
Rahmon committed Nov 5, 2021
2 parents 24e0af5 + b18ea73 commit 0938345
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file, per [the Ke

## [Unreleased] - TBD

## [2.3.1] - 2021-11-04

### Fixed
- Label field on video editing. Props [@Rahmon](https://github.com/Rahmon), and [@oscarssanchez](https://github.com/oscarssanchez) via [#232](https://github.com/10up/brightcove-video-connect/pull/232).

## [2.3.0] - 2021-10-21

### Added
Expand Down Expand Up @@ -331,6 +336,7 @@ All notable changes to this project will be documented in this file, per [the Ke
- First release

[Unreleased]: https://github.com/10up/brightcove-video-connect/compare/master...develop
[2.3.1]: https://github.com/10up/brightcove-video-connect/compare/2.3.0...2.3.1
[2.3.0]: https://github.com/10up/brightcove-video-connect/compare/2.2.1...2.3.0
[2.2.1]: https://github.com/10up/brightcove-video-connect/compare/2.2.0...2.2.1
[2.2.0]: https://github.com/10up/brightcove-video-connect/compare/2.1.4...2.2.0
Expand Down
6 changes: 5 additions & 1 deletion assets/js/brightcove-admin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/brightcove-admin.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/brightcove-admin.min.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion assets/js/src/views/video-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ var VideoEditView = BrightcoveView.extend({
container = document.getElementById('js-bc-labels');

// Clean up our cloned row
newRow.find('input').prop('disabled', false);
newRow.find('input').prop('disabled', false).val('');
newRow.removeAttr('id');
newRow.removeClass('empty-row');

Expand All @@ -189,6 +189,10 @@ var VideoEditView = BrightcoveView.extend({
labelAutocomplete: function (evnt) {
jQuery('.brightcove-labels').autocomplete({
source: wpbc.preload.labels,
select: function () {
$(this).parent('.bc-label-repeater.empty-row').removeClass('empty-row');
},
appendTo: '.media-modal',
});
},

Expand Down
4 changes: 2 additions & 2 deletions brightcove-video-connect.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Brightcove Video Connect
* Plugin URI: https://wordpress.org/plugins/brightcove-video-connect/
* Description: A Brightcove™ Connector for WordPress that leverages enhanced APIs and Brightcove™ Capabilities
* Version: 2.3.0
* Version: 2.3.1
* Author: 10up
* Author URI: http://10up.com
* License: GPLv2+
Expand All @@ -29,7 +29,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 021.0.2301 USA
*/

define( 'BRIGHTCOVE_VERSION', '2.3.0' );
define( 'BRIGHTCOVE_VERSION', '2.3.1' );
define( 'BRIGHTCOVE_URL', plugin_dir_url( __FILE__ ) );
define( 'BRIGHTCOVE_PATH', dirname( __FILE__ ) . '/' );
define( 'BRIGHTCOVE_BASENAME', plugin_basename( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion languages/brightcove.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is distributed under the same license as the Brightcove Video Connect plugin.
msgid ""
msgstr ""
"Project-Id-Version: Brightcove Video Connect 2.3.0\n"
"Project-Id-Version: Brightcove Video Connect 2.3.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/brightcove-video-connect\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"title": "brightcove-video-connect",
"description": "A Brightcove plugin for WordPress.",
"version": "2.3.0",
"version": "2.3.1",
"homepage": "https://wordpress.org/plugins/brightcove-video-connect/",
"author": {
"name": "10up",
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Donate link: https://supporters.eff.org/donate
Tags: brightcove, 10up, videos, video
Requires at least: 4.2
Tested up to: 5.8
Stable tag: 2.3.0
Stable tag: 2.3.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -39,6 +39,11 @@ For installation, usage, and Frequently Asked Question please see the [Brightcov

== Changelog ==

= 2.3.1 =

Fixed
* Label field on video editing.

= 2.3.0 =

Added
Expand Down

0 comments on commit 0938345

Please sign in to comment.