Simple Download Monitor - Version 0.11

Version Description

  • Automatic upgrade of the plugin fails because of the nested ZIP archives. As a result, PHP 4 version of the plugin was recompressed to 7Z ( http://www.7-zip.org ).
Download this release

Release Info

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

Code changes from version 0.10 to 0.11

Files changed (4) hide show
  1. readme.txt +10 -3
  2. sdmon-php4.7z +0 -0
  3. sdmon-php4.zip +0 -0
  4. simple-download-monitor.php +2 -2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: files, counter, count, tracking, download monitor, monitor, downloads, download
5
  Requires at least: 2.8.0
6
  Tested up to: 2.9.1
7
- Stable tag: 0.10
8
 
9
  Count the number of downloads without having to maintain a comprehensive download page.
10
 
@@ -84,12 +84,13 @@ newer PHP allows for a (slightly) cleaner code and better future
84
  maintenance. Unfortunately, it is not possible to contain both PHP 4
85
  and 5 code in a single file without sacrificing readability.
86
 
87
- In the distribution archive you will find a ZIP archive containing
88
  a PHP 4 version of the plugin. Just extract it over your existing
89
  Simple Download Monitor installation to get PHP 4 compatibility.
 
90
 
91
  Please note that this rewrite was only tested on PHP 5, where it
92
- does work (PHHP 5 is backwards compatible with PHP 4), but it may
93
  not work on a real PHP 4 as I have no test machine for it. But I
94
  will fix any errors that are reported to me.
95
 
@@ -101,6 +102,12 @@ will fix any errors that are reported to me.
101
 
102
  == Changelog ==
103
 
 
 
 
 
 
 
104
  = 0.10 =
105
 
106
  * Belorussian translation by FatCow ( http://www.fatcow.com )
4
  Tags: files, counter, count, tracking, download monitor, monitor, downloads, download
5
  Requires at least: 2.8.0
6
  Tested up to: 2.9.1
7
+ Stable tag: 0.11
8
 
9
  Count the number of downloads without having to maintain a comprehensive download page.
10
 
84
  maintenance. Unfortunately, it is not possible to contain both PHP 4
85
  and 5 code in a single file without sacrificing readability.
86
 
87
+ In the distribution archive you will find a 7Z archive containing
88
  a PHP 4 version of the plugin. Just extract it over your existing
89
  Simple Download Monitor installation to get PHP 4 compatibility.
90
+ (You can extract the archive using 7-Zip, http://www.7-zip.org )
91
 
92
  Please note that this rewrite was only tested on PHP 5, where it
93
+ does work (PHP 5 is backwards compatible with PHP 4), but it may
94
  not work on a real PHP 4 as I have no test machine for it. But I
95
  will fix any errors that are reported to me.
96
 
102
 
103
  == Changelog ==
104
 
105
+ = 0.11 =
106
+
107
+ * Automatic upgrade of the plugin fails because of the nested ZIP
108
+ archives. As a result, PHP 4 version of the plugin was recompressed
109
+ to 7Z ( http://www.7-zip.org ).
110
+
111
  = 0.10 =
112
 
113
  * Belorussian translation by FatCow ( http://www.fatcow.com )
sdmon-php4.7z ADDED
Binary file
sdmon-php4.zip DELETED
Binary file
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.10
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.10';
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.11
8
  Author: Pepak
9
  Author URI: http://www.pepak.net
10
  */
31
  class SimpleDownloadMonitor
32
  {
33
 
34
+ const VERSION = '0.11';
35
  const PREFIX = 'sdmon_';
36
  const PREG_DELIMITER = '`';
37
  const GET_PARAM = 'sdmon';