Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Tags: liveblog
* Requires at least: 3.5
* Tested up to: 4.8.2
* Stable tag: 1.6
* Stable tag: 1.6.1
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -439,6 +439,12 @@ If for some reason the plugin is not able to use WebSockets to refresh the list

## Changelog

### 1.6.1

* Remove support for Flash + Silverlight which are no longer supported in WP 4.9, see https://core.trac.wordpress.org/ticket/41755#no0
* Bugfix for WPCOM: Don't force an AJAX URL if we're using the REST API.
* Bugfix WPCOM: Retain SA access for A12s

### 1.6

* REST API support
Expand Down
4 changes: 2 additions & 2 deletions liveblog.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Liveblog
* Plugin URI: http://wordpress.org/extend/plugins/liveblog/
* Description: Blogging: at the speed of live.
* Version: 1.6
* Version: 1.6.1
* Author: WordPress.com VIP, Automattic
* Author URI: http://vip.wordpress.com/
* Text Domain: liveblog
Expand All @@ -26,7 +26,7 @@
final class WPCOM_Liveblog {

/** Constants *************************************************************/
const version = '1.6';
const version = '1.6.1';
const rewrites_version = 1;
const min_wp_version = '3.5';
const min_wp_rest_api_version = '4.4';
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: automattic, nbachiyski, batmoo, johnjamesjacoby
Tags: liveblog
Requires at least: 3.5
Tested up to: 4.8.2
Stable tag: 1.6
Stable tag: 1.6.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -47,6 +47,13 @@ If you'd like to check out the code and contribute, [join us on github](https://

== Changelog ==


= 1.6.1 =

* Remove support for Flash + Silverlight which are no longer supported in WP 4.9, see https://core.trac.wordpress.org/ticket/41755#no0
* Bugfix for WPCOM: Don't force an AJAX URL if we're using the REST API.
* Bugfix WPCOM: Retain SA access for A12s

= 1.6 =

* REST API support
Expand Down