Simple Download Monitor - Version 0.16

Version Description

  • Something went wrong with uploading to WordPress database.
Download this release

Release Info

Developer pepak.net
Plugin Icon 128x128 Simple Download Monitor
Version 0.16
Comparing to
See all releases

Code changes from version 0.15 to 0.16

Files changed (3) hide show
  1. readme.txt +6 -2
  2. sdmon.css +10 -0
  3. simple-download-monitor.php +2 -2
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Pepak
3
  Donate link:
4
  Tags: files, counter, count, tracking, download monitor, monitor, downloads, download
5
  Requires at least: 2.8.0
6
- Tested up to: 3.0.0
7
- Stable tag: 0.15
8
 
9
  Count the number of downloads without having to maintain a comprehensive download page.
10
 
@@ -118,6 +118,10 @@ http://www.pepak.net/wordpress/simple-download-monitor-plugin/#comment-4729
118
 
119
  == Changelog ==
120
 
 
 
 
 
121
  = 0.15 =
122
 
123
  * User rights required to access various parts of the plugin's interface
3
  Donate link:
4
  Tags: files, counter, count, tracking, download monitor, monitor, downloads, download
5
  Requires at least: 2.8.0
6
+ Tested up to: 3.0.1
7
+ Stable tag: 0.16
8
 
9
  Count the number of downloads without having to maintain a comprehensive download page.
10
 
118
 
119
  == Changelog ==
120
 
121
+ = 0.16 =
122
+
123
+ * Something went wrong with uploading to WordPress database.
124
+
125
  = 0.15 =
126
 
127
  * User rights required to access various parts of the plugin's interface
sdmon.css ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ #sdmon .sdmon-rownum { width: 3ex; text-align: right; }
2
+ #sdmon .sdmon-filename { }
3
+ #sdmon .sdmon-count { text-align: right; }
4
+ #sdmon .sdmon-date { width: 24ex; text-align: center; }
5
+ #sdmon .sdmon-nonex { width: 5ex; text-align: center; }
6
+ #sdmon .sdmon-ipaddr { }
7
+ #sdmon .sdmon-referer { }
8
+ #sdmon .sdmon-username { }
9
+ #sdmon th {text-align: center; }
10
+ #sdmon th, #sdmon td { padding-left: 1ex; padding-right: 1ex; }
simple-download-monitor.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Simple Download Monitor
5
  Plugin URI: http://www.pepak.net/wordpress/simple-download-monitor-plugin
6
  Description: Count the number of downloads without having to maintain a comprehensive download page.
7
- Version: 0.15
8
  Author: Pepak
9
  Author URI: http://www.pepak.net
10
  */
@@ -31,7 +31,7 @@ if (!class_exists('SimpleDownloadMonitor'))
31
  class SimpleDownloadMonitor
32
  {
33
 
34
- const VERSION = '0.15';
35
  const PREFIX = 'sdmon_';
36
  const PREG_DELIMITER = '`';
37
  const GET_PARAM = 'sdmon';
4
  Plugin Name: Simple Download Monitor
5
  Plugin URI: http://www.pepak.net/wordpress/simple-download-monitor-plugin
6
  Description: Count the number of downloads without having to maintain a comprehensive download page.
7
+ Version: 0.16
8
  Author: Pepak
9
  Author URI: http://www.pepak.net
10
  */
31
  class SimpleDownloadMonitor
32
  {
33
 
34
+ const VERSION = '0.16';
35
  const PREFIX = 'sdmon_';
36
  const PREG_DELIMITER = '`';
37
  const GET_PARAM = 'sdmon';