Skip to content

Commit 97010c1

Browse files
committed
Update readme and version numbers.
1 parent 8222b59 commit 97010c1

File tree

5 files changed

+25
-15
lines changed

5 files changed

+25
-15
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ See the main [Able Player](http://ableplayer.github.io/ableplayer) project page
1717
* Tags: html5,media,audio,video,accessibility
1818
* Requires at least: 4.9
1919
* Tested up to: 6.8
20-
* Stable tag: `1.2.2`
20+
* Stable tag: `2.0.0`
2121
* License: MIT
2222
* License URI: https://github.com/ableplayer/ableplayer-wordpress/blob/master/LICENSE
2323

@@ -29,6 +29,7 @@ Bugs or feature development contributions should be made through the [GitHub rep
2929

3030
## Authors
3131

32+
* [Joe Dolson](https://www.joedolson.com)
3233
* [Terrill Thompson](https://terrillthompson.com)
3334

3435
## Contributors

init.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
* Able Player WordPress plugin, accessible HTML5 media player
44
*
55
* @package AblePlayer
6-
* @author Terrill Thompson
6+
* @author Joe Dolson
77
* @license MIT
88
*
99
* @wordpress-plugin
1010
* Plugin Name: Able Player WordPress plugin, accessible HTML5 media player
1111
* Plugin URI: https://github.com/ableplayer/ableplayer-wordpress
1212
* Description: Able Player is a fully accessible cross-browser HTML5 media player for audio and video.
13-
* Author: Terrill Thompson
14-
* Author URI: http://terrillthompson.com
13+
* Author: Joe Dolson
14+
* Author URI: https://www.joedolson.com
1515
* Text Domain: ableplayer
1616
* License: MIT
1717
* License URI: https://github.com/ableplayer/ableplayer-wordpress/blob/master/LICENSE
18-
* Version: 1.2.2
18+
* Version: 2.0.0
1919
*/
2020

2121
if ( ! defined( 'ABSPATH' ) ) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ableplayer-wordpress",
3-
"version": "1.2.2",
3+
"version": "2.0.0",
44
"private": true,
55
"description": "AblePlayer plugin for WordPress",
66
"author": "Joe Dolson",

src/ableplayer.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@
33
* Able Player, accessible HTML5 media player
44
*
55
* @package Able Player
6-
* @author Terrill Thompson
6+
* @author Joe Dolson
77
* @license MIT
88
*
99
* @wordpress-plugin
1010
* Plugin Name: Able Player, accessible HTML5 media player
1111
* Plugin URI: https://github.com/ableplayer/ableplayer-wordpress
1212
* Description: This plug-in uses Able Player, an open-source fully-accessible cross-browser HTML5 media player, to embed audio or video within your WordPress page.
13-
* Author: Terrill Thompson
14-
* Author URI: http://terrillthompson.com
13+
* Author: Joe Dolson
14+
* Author URI: https://www.joedolson.com
1515
* Text Domain: ableplayer
1616
* License: MIT
1717
* License URI: https://github.com/ableplayer/ableplayer-wordpress/blob/master/LICENSE
18-
* Version: 1.2.2
18+
* Version: 2.0.0
1919
*/
2020

2121
// Configure debugging mode.
2222
define( 'ABLEPLAYER_DEBUG', false );
2323

2424
// Get current version number.
25-
define( 'ABLEPLAYER_VERSION', '1.2.2' );
25+
define( 'ABLEPLAYER_VERSION', '2.0.0' );
2626

2727
require_once plugin_dir_path( __FILE__ ) . 'inc/settings.php';
2828
require_once plugin_dir_path( __FILE__ ) . 'inc/generator.php';

src/readme.txt

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Tags: html5,media,audio,video,accessibility
66
Requires at least: 4.9
77
Tested up to: 6.8
88
Requires PHP: 7.0
9-
Stable tag: 1.2.2
9+
Stable tag: 2.0.0
1010
License: MIT
1111
License URI: https://github.com/ableplayer/ableplayer-wordpress/blob/master/LICENSE
1212

@@ -129,12 +129,21 @@ This example uses a shortcode to add a Vimeo player to the page, with two versio
129129
[ableplayer vimeo-id="XXXXXXXXX" vimeo-desc-id="YYYYYYYYY"]
130130
```
131131

132-
== Roadmap ==
133-
1. Provide a user interface by which authors can select and configure default options through WordPress.
134-
1. Interface directly with WordPress media libraries so users can select their media files and other assets rather than typing in URLs.
132+
The AblePlayer plugin was originally created by Terrill Thompson(https://terrillthompson.com).
135133

136134
== Changelog ==
137135

136+
= 2.0.0 =
137+
138+
* Feature: Settings to enable Able Player to parse `video` and `audio` blocks.
139+
* Feature: Settings to enable Able Player to replace MediaElement.js playlists.
140+
* Feature: Setting to disable MediaElement.js.
141+
* Feature: Settings to configure default behaviors for Able Player.
142+
* Feature: Shortcode generation tool to build Able Player shortcodes.
143+
* Feature: Support for local video sources in shortcode.
144+
* Feature: Support for captions, subtitles, chapters, and audio description tracks in shortcode.
145+
* Feature: Automatically enable transcript div for Able Players with appropriate tracks.
146+
138147
= 1.2.2 =
139148

140149
* Security: Stored Cross Site Scripting vulnerability in shortcode. Props Peter Thaleikis, reported via WordFence. Also reported by Johska via Patchstack.

0 commit comments

Comments
 (0)