Version Description
(January 2015) =
- Fixed: really correctly show the version number of the previous version!
Download this release
Release Info
Developer | eskapism |
Plugin | Simple History |
Version | 2.0.18 |
Comparing to | |
See all releases |
Code changes from version 2.0.17 to 2.0.18
- SimpleHistory.php +1 -1
- index.php +1 -1
- loggers/SimplePluginLogger.php +1 -1
- readme.txt +6 -2
SimpleHistory.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
class SimpleHistory {
|
7 |
|
8 |
const NAME = "Simple History";
|
9 |
-
const VERSION = "2.0.
|
10 |
|
11 |
/**
|
12 |
* Capability required to view the history log
|
6 |
class SimpleHistory {
|
7 |
|
8 |
const NAME = "Simple History";
|
9 |
+
const VERSION = "2.0.18";
|
10 |
|
11 |
/**
|
12 |
* Capability required to view the history log
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Simple History
|
4 |
Plugin URI: http://simple-history.com
|
5 |
Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
|
6 |
-
Version: 2.0.
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://simple-history.com/
|
9 |
License: GPL2
|
3 |
Plugin Name: Simple History
|
4 |
Plugin URI: http://simple-history.com
|
5 |
Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
|
6 |
+
Version: 2.0.18
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://simple-history.com/
|
9 |
License: GPL2
|
loggers/SimplePluginLogger.php
CHANGED
@@ -190,7 +190,7 @@ class SimplePluginLogger extends SimpleLogger
|
|
190 |
|
191 |
}
|
192 |
|
193 |
-
function
|
194 |
|
195 |
$plugins = get_plugins();
|
196 |
|
190 |
|
191 |
}
|
192 |
|
193 |
+
function save_versions_before_update($bool, $hook_extra) {
|
194 |
|
195 |
$plugins = get_plugins();
|
196 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
|
|
4 |
Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog, feed, activity, stream
|
5 |
Requires at least: 3.6.0
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 2.0.
|
8 |
|
9 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
10 |
|
@@ -110,6 +110,10 @@ initiated by a specific user.
|
|
110 |
|
111 |
== Changelog ==
|
112 |
|
|
|
|
|
|
|
|
|
113 |
= 2.0.17 (January 2015) =
|
114 |
|
115 |
- Added: messages added using for example `SimpleLogger()->info( __("My log message") )` that have translations now auto translated the message back to english before storing the message (together with the text domain). Then upon retrieval it uses the english message + the text domain to translate the message to the currently selected language. This makes it easier to make multilingual log entries. (Yeah, I know its hard to understand what the heck this does, but it's something good and cool, trust me!)
|
@@ -119,7 +123,7 @@ initiated by a specific user.
|
|
119 |
- Fixed: Old entries were not cleared automatically. Now it correctly removes old events, so your database will not risk growing to large.
|
120 |
- Fixed: Quick stats could show two messages sometimes.
|
121 |
- Fixed: When headers like `HTTP_X_FORWARDED_FOR` exists all valid IPs in that header is now stored.
|
122 |
-
- Fixed: Plugin updates via third party software like [InfiniteWP](http://infinitewp.com/) should now correctly show the version number of the
|
123 |
- Updated: German translation updated.
|
124 |
- Notice: Do you read these messages? Then you must love this plugin! Come on then, [go and give it a nice review](https://wordpress.org/support/view/plugin-reviews/simple-history).
|
125 |
|
4 |
Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog, feed, activity, stream
|
5 |
Requires at least: 3.6.0
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 2.0.18
|
8 |
|
9 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
10 |
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= 2.0.18 (January 2015) =
|
114 |
+
|
115 |
+
- Fixed: really correctly show the version number of the previous version!
|
116 |
+
|
117 |
= 2.0.17 (January 2015) =
|
118 |
|
119 |
- Added: messages added using for example `SimpleLogger()->info( __("My log message") )` that have translations now auto translated the message back to english before storing the message (together with the text domain). Then upon retrieval it uses the english message + the text domain to translate the message to the currently selected language. This makes it easier to make multilingual log entries. (Yeah, I know its hard to understand what the heck this does, but it's something good and cool, trust me!)
|
123 |
- Fixed: Old entries were not cleared automatically. Now it correctly removes old events, so your database will not risk growing to large.
|
124 |
- Fixed: Quick stats could show two messages sometimes.
|
125 |
- Fixed: When headers like `HTTP_X_FORWARDED_FOR` exists all valid IPs in that header is now stored.
|
126 |
+
- Fixed: Plugin updates via third party software like [InfiniteWP](http://infinitewp.com/) should now correctly show the version number of the previous version.
|
127 |
- Updated: German translation updated.
|
128 |
- Notice: Do you read these messages? Then you must love this plugin! Come on then, [go and give it a nice review](https://wordpress.org/support/view/plugin-reviews/simple-history).
|
129 |
|