Version Description
October 31, 2016 =
Fix: Hotfix for Error Updating Stream DB.
Download this release
Release Info
Developer | lukecarbis |
Plugin | Stream |
Version | 3.1.1 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.1.1
- classes/class-install.php +1 -1
- classes/class-plugin.php +1 -1
- readme.txt +5 -1
- stream.php +1 -1
classes/class-install.php
CHANGED
@@ -239,7 +239,7 @@ class Install {
|
|
239 |
$success_op = update_site_option( $this->option_key, $this->plugin->get_version() );
|
240 |
}
|
241 |
|
242 |
-
if ( ! empty( $this->success_db )
|
243 |
return;
|
244 |
}
|
245 |
|
239 |
$success_op = update_site_option( $this->option_key, $this->plugin->get_version() );
|
240 |
}
|
241 |
|
242 |
+
if ( ! empty( $this->success_db ) ) {
|
243 |
return;
|
244 |
}
|
245 |
|
classes/class-plugin.php
CHANGED
@@ -7,7 +7,7 @@ class Plugin {
|
|
7 |
*
|
8 |
* @const string
|
9 |
*/
|
10 |
-
const VERSION = '3.1';
|
11 |
|
12 |
/**
|
13 |
* WP-CLI command
|
7 |
*
|
8 |
* @const string
|
9 |
*/
|
10 |
+
const VERSION = '3.1.1';
|
11 |
|
12 |
/**
|
13 |
* WP-CLI command
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: fjarrett, lukecarbis, stream, xwp
|
|
3 |
Tags: actions, activity, activity log, activity logs, admin actions, analytics, audit, audit log, audit logs, blackbox, black box, change, changes, dashboard, log, logs, stream, tracking, troubleshooting, wp stream
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.6
|
6 |
-
Stable tag: 3.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -79,6 +79,10 @@ Thank you for wanting to make Stream better for everyone!
|
|
79 |
|
80 |
== Changelog ==
|
81 |
|
|
|
|
|
|
|
|
|
82 |
= 3.1 - October 31, 2016 =
|
83 |
|
84 |
* New: Stream Alerts is here! Get notified when something happens in your WP-Admin, so that you don't miss a thing. ([#844](https://github.com/xwp/stream/pull/844))
|
3 |
Tags: actions, activity, activity log, activity logs, admin actions, analytics, audit, audit log, audit logs, blackbox, black box, change, changes, dashboard, log, logs, stream, tracking, troubleshooting, wp stream
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.6
|
6 |
+
Stable tag: 3.1.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
79 |
|
80 |
== Changelog ==
|
81 |
|
82 |
+
= 3.1.1 - October 31, 2016 =
|
83 |
+
|
84 |
+
* Fix: Hotfix for Error Updating Stream DB.
|
85 |
+
|
86 |
= 3.1 - October 31, 2016 =
|
87 |
|
88 |
* New: Stream Alerts is here! Get notified when something happens in your WP-Admin, so that you don't miss a thing. ([#844](https://github.com/xwp/stream/pull/844))
|
stream.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Stream
|
4 |
* Plugin URI: https://wp-stream.com/
|
5 |
* Description: Stream tracks logged-in user activity so you can monitor every change made on your WordPress site in beautifully organized detail. All activity is organized by context, action and IP address for easy filtering. Developers can extend Stream with custom connectors to log any kind of action.
|
6 |
-
* Version: 3.1
|
7 |
* Author: XWP
|
8 |
* Author URI: https://xwp.co/
|
9 |
* License: GPLv2+
|
3 |
* Plugin Name: Stream
|
4 |
* Plugin URI: https://wp-stream.com/
|
5 |
* Description: Stream tracks logged-in user activity so you can monitor every change made on your WordPress site in beautifully organized detail. All activity is organized by context, action and IP address for easy filtering. Developers can extend Stream with custom connectors to log any kind of action.
|
6 |
+
* Version: 3.1.1
|
7 |
* Author: XWP
|
8 |
* Author URI: https://xwp.co/
|
9 |
* License: GPLv2+
|