Simple History - Version 1.3.10

Version Description

  • Fix: correct usage of "its"
  • Fix: removed serif font in log. Fixes https://wordpress.org/support/topic/two-irritations-and-pleas-for-change.
Download this release

Release Info

Developer eskapism
Plugin Icon 128x128 Simple History
Version 1.3.10
Comparing to
See all releases

Code changes from version 1.3.9 to 1.3.10

Files changed (3) hide show
  1. index.php +5 -5
  2. readme.txt +5 -1
  3. styles.css +1 -1
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/history/audit log/version history of the changes made by users in WordPress.
6
- Version: 1.3.9
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
@@ -27,7 +27,7 @@ License: GPL2
27
 
28
  load_plugin_textdomain('simple-history', false, "/simple-history/languages");
29
 
30
- define( "SIMPLE_HISTORY_VERSION", "1.3.9");
31
  define( "SIMPLE_HISTORY_NAME", "Simple History");
32
 
33
  // Find the plugin directory URL
@@ -109,7 +109,7 @@ define("SIMPLE_HISTORY_URL", $plugin_dir_url);
109
  $dummy = __("logged out", "simple-history");
110
  $dummy = __("added", "simple-history");
111
  $dummy = __("modified", "simple-history");
112
- $dummy = __("upgraded it\'s database", "simple-history");
113
  $dummy = __("plugin", "simple-history");
114
  }
115
 
@@ -245,7 +245,7 @@ define("SIMPLE_HISTORY_URL", $plugin_dir_url);
245
  $wpdb->query($sql);
246
 
247
  // Store this upgrade in ourself :)
248
- simple_history_add("action=" . 'upgraded it\'s database' . "&object_type=plugin&object_name=" . SIMPLE_HISTORY_NAME);
249
 
250
  #echo "done upgrading database";
251
 
@@ -260,7 +260,7 @@ define("SIMPLE_HISTORY_URL", $plugin_dir_url);
260
  $sql = "ALTER TABLE {$table_name} ADD COLUMN action_description longtext";
261
  mysql_query($sql);
262
 
263
- simple_history_add("action=" . 'upgraded it\'s database' . "&object_type=plugin&object_name=" . SIMPLE_HISTORY_NAME . "&description=Database version is now version 2");
264
  update_option("simple_history_db_version", 2);
265
 
266
  }
3
  Plugin Name: Simple History
4
  Plugin URI: http://eskapism.se/code-playground/simple-history/
5
  Description: Get a log/history/audit log/version history of the changes made by users in WordPress.
6
+ Version: 1.3.10
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
27
 
28
  load_plugin_textdomain('simple-history', false, "/simple-history/languages");
29
 
30
+ define( "SIMPLE_HISTORY_VERSION", "1.3.10");
31
  define( "SIMPLE_HISTORY_NAME", "Simple History");
32
 
33
  // Find the plugin directory URL
109
  $dummy = __("logged out", "simple-history");
110
  $dummy = __("added", "simple-history");
111
  $dummy = __("modified", "simple-history");
112
+ $dummy = __("upgraded its database", "simple-history");
113
  $dummy = __("plugin", "simple-history");
114
  }
115
 
245
  $wpdb->query($sql);
246
 
247
  // Store this upgrade in ourself :)
248
+ simple_history_add("action=" . 'upgraded its database' . "&object_type=plugin&object_name=" . SIMPLE_HISTORY_NAME);
249
 
250
  #echo "done upgrading database";
251
 
260
  $sql = "ALTER TABLE {$table_name} ADD COLUMN action_description longtext";
261
  mysql_query($sql);
262
 
263
+ simple_history_add("action=" . 'upgraded its database' . "&object_type=plugin&object_name=" . SIMPLE_HISTORY_NAME . "&description=Database version is now version 2");
264
  update_option("simple_history_db_version", 2);
265
 
266
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
4
  Tags: history, log, changes, changelog, audit, trail, stream, pages, attachments, users, cms, dashboard, admin, syslog, activity
5
  Requires at least: 3.8.0
6
  Tested up to: 4.0
7
- Stable tag: 1.3.9
8
 
9
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
10
 
@@ -175,6 +175,10 @@ to only use the secret RSS feed to keep track of the changes on you web site/Wor
175
 
176
  == Changelog ==
177
 
 
 
 
 
178
  = 1.3.9 =
179
  - Fixed strict standards warning
180
  - Tested on WordPress 4.0
4
  Tags: history, log, changes, changelog, audit, trail, stream, pages, attachments, users, cms, dashboard, admin, syslog, activity
5
  Requires at least: 3.8.0
6
  Tested up to: 4.0
7
+ Stable tag: 1.3.10
8
 
9
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
10
 
175
 
176
  == Changelog ==
177
 
178
+ = 1.3.10 =
179
+ - Fix: correct usage of "its"
180
+ - Fix: removed serif font in log. Fixes https://wordpress.org/support/topic/two-irritations-and-pleas-for-change.
181
+
182
  = 1.3.9 =
183
  - Fixed strict standards warning
184
  - Tested on WordPress 4.0
styles.css CHANGED
@@ -40,7 +40,7 @@ ol.simple-history > li:nth-child(odd) {
40
  }
41
  ol.simple-history .first {
42
  font-size: 13px;
43
- font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
44
  margin: 0 0 0.5em;
45
  }
46
 
40
  }
41
  ol.simple-history .first {
42
  font-size: 13px;
43
+ /*font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;*/
44
  margin: 0 0 0.5em;
45
  }
46