Version Description
- Directly after installation of Simple History you could view the history RSS feed without using any secret. Now a secret is automatically set during installation.
Download this release
Release Info
Developer | eskapism |
Plugin | Simple History |
Version | 0.3.7 |
Comparing to | |
See all releases |
Code changes from version 0.3.6 to 0.3.7
- index.php +7 -2
- readme.txt +6 -2
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Simple History
|
4 |
Plugin URI: http://eskapism.se/code-playground/simple-history/
|
5 |
Description: Get a log of the changes made by users in WordPress.
|
6 |
-
Version: 0.3.
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
@@ -25,7 +25,7 @@ License: GPL2
|
|
25 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
26 |
*/
|
27 |
|
28 |
-
define( "SIMPLE_HISTORY_VERSION", "0.3.
|
29 |
define( "SIMPLE_HISTORY_NAME", "Simple History");
|
30 |
define( "SIMPLE_HISTORY_URL", WP_PLUGIN_URL . '/simple-history/');
|
31 |
|
@@ -715,6 +715,11 @@ function simple_history_install() {
|
|
715 |
#}
|
716 |
|
717 |
simple_history_add("action=activated&object_type=plugin&object_name=$plugin_name");
|
|
|
|
|
|
|
|
|
|
|
718 |
|
719 |
}
|
720 |
|
3 |
Plugin Name: Simple History
|
4 |
Plugin URI: http://eskapism.se/code-playground/simple-history/
|
5 |
Description: Get a log of the changes made by users in WordPress.
|
6 |
+
Version: 0.3.7
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
25 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
26 |
*/
|
27 |
|
28 |
+
define( "SIMPLE_HISTORY_VERSION", "0.3.7");
|
29 |
define( "SIMPLE_HISTORY_NAME", "Simple History");
|
30 |
define( "SIMPLE_HISTORY_URL", WP_PLUGIN_URL . '/simple-history/');
|
31 |
|
715 |
#}
|
716 |
|
717 |
simple_history_add("action=activated&object_type=plugin&object_name=$plugin_name");
|
718 |
+
|
719 |
+
// also generate a rss secret, if it does not exist
|
720 |
+
if (!get_option("simple_history_rss_secret")) {
|
721 |
+
simple_history_update_rss_secret();
|
722 |
+
}
|
723 |
|
724 |
}
|
725 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Plugin Name ===
|
2 |
-
Contributors: eskapism
|
3 |
Donate link: http://eskapism.se/sida/donate/
|
4 |
Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin
|
5 |
Requires at least: 2.9.2
|
6 |
Tested up to: 3.0
|
7 |
-
Stable tag: 0.3.
|
8 |
|
9 |
View changes made by users within WordPress. It’s a history/change log/audit/recent changes-plugin.
|
10 |
|
@@ -62,8 +62,12 @@ to only use the secret RSS feed to keep track of the changes on you web site/Wor
|
|
62 |
|
63 |
3. The RSS feed with changes, as shown in Firefox.
|
64 |
|
|
|
65 |
== Changelog ==
|
66 |
|
|
|
|
|
|
|
67 |
= 0.3.6 =
|
68 |
- Made the RSS-feature a bit easier to find: added a RSS-icon to the dashboard window - it's very discrete, you can find it at the bottom right corner. On the Simple History page it's a bit more clear, at the bottom, with text and all. Enjoy!
|
69 |
- Added POT-file
|
1 |
=== Plugin Name ===
|
2 |
+
Contributors: eskapism, MarsApril
|
3 |
Donate link: http://eskapism.se/sida/donate/
|
4 |
Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin
|
5 |
Requires at least: 2.9.2
|
6 |
Tested up to: 3.0
|
7 |
+
Stable tag: 0.3.7
|
8 |
|
9 |
View changes made by users within WordPress. It’s a history/change log/audit/recent changes-plugin.
|
10 |
|
62 |
|
63 |
3. The RSS feed with changes, as shown in Firefox.
|
64 |
|
65 |
+
|
66 |
== Changelog ==
|
67 |
|
68 |
+
= 0.3.7 =
|
69 |
+
- Directly after installation of Simple History you could view the history RSS feed without using any secret. Now a secret is automatically set during installation.
|
70 |
+
|
71 |
= 0.3.6 =
|
72 |
- Made the RSS-feature a bit easier to find: added a RSS-icon to the dashboard window - it's very discrete, you can find it at the bottom right corner. On the Simple History page it's a bit more clear, at the bottom, with text and all. Enjoy!
|
73 |
- Added POT-file
|