Download Monitor - Version 1.0.6

Version Description

  • Hide taxonomies from nav menus
  • Fix categories in download_data method.
Download this release

Release Info

Developer mikejolley
Plugin Icon 128x128 Download Monitor
Version 1.0.6
Comparing to
See all releases

Code changes from version 1.0.5 to 1.0.6

download-monitor.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Download Monitor
4
  Plugin URI: http://mikejolley.com/projects/download-monitor/
5
  Description: A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
6
- Version: 1.0.5
7
  Author: Mike Jolley
8
  Author URI: http://mikejolley.com
9
  Requires at least: 3.5
@@ -39,7 +39,7 @@ class WP_DLM {
39
  global $wpdb;
40
 
41
  // Define constants
42
- define( 'DLM_VERSION', '1.0.5' );
43
 
44
  // Table for logs
45
  $wpdb->download_log = $wpdb->prefix . 'download_log';
@@ -259,6 +259,7 @@ class WP_DLM {
259
  'assign_terms' => 'manage_downloads',
260
  ),
261
  'rewrite' => false,
 
262
  )
263
  );
264
 
@@ -288,6 +289,7 @@ class WP_DLM {
288
  'assign_terms' => 'manage_downloads',
289
  ),
290
  'rewrite' => false,
 
291
  )
292
  );
293
 
3
  Plugin Name: Download Monitor
4
  Plugin URI: http://mikejolley.com/projects/download-monitor/
5
  Description: A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
6
+ Version: 1.0.6
7
  Author: Mike Jolley
8
  Author URI: http://mikejolley.com
9
  Requires at least: 3.5
39
  global $wpdb;
40
 
41
  // Define constants
42
+ define( 'DLM_VERSION', '1.0.6' );
43
 
44
  // Table for logs
45
  $wpdb->download_log = $wpdb->prefix . 'download_log';
259
  'assign_terms' => 'manage_downloads',
260
  ),
261
  'rewrite' => false,
262
+ 'show_in_nav_menus' => false
263
  )
264
  );
265
 
289
  'assign_terms' => 'manage_downloads',
290
  ),
291
  'rewrite' => false,
292
+ 'show_in_nav_menus' => false
293
  )
294
  );
295
 
includes/class-dlm-shortcodes.php CHANGED
@@ -179,7 +179,7 @@ class DLM_Shortcodes {
179
  case 'tags' :
180
  return get_the_term_list( $id, 'dlm_download_tags', '', ', ', '' );
181
  case 'categories' :
182
- return get_the_term_list( $id, 'dlm_download_categories', '', ', ', '' );
183
  }
184
  }
185
 
179
  case 'tags' :
180
  return get_the_term_list( $id, 'dlm_download_tags', '', ', ', '' );
181
  case 'categories' :
182
+ return get_the_term_list( $id, 'dlm_download_category', '', ', ', '' );
183
  }
184
  }
185
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mike.jol
4
  Tags: download, downloads, monitor, hits, download monitor, tracking, admin, count, counter, files, versions, download count, logging
5
  Requires at least: 3.5
6
  Tested up to: 3.5
7
- Stable tag: 1.0.5
8
  License: GPLv3
9
 
10
  Download Monitor is a plugin for uploading and managing downloads, tracking downloads, and displaying links.
@@ -108,6 +108,10 @@ Admin hits are not counted, log out and try!
108
 
109
  == Changelog ==
110
 
 
 
 
 
111
  = 1.0.5 =
112
  * When do_not_force is enabled, still replace abspath with home_url
113
  * Exclude dlm_download from search and disable query var
4
  Tags: download, downloads, monitor, hits, download monitor, tracking, admin, count, counter, files, versions, download count, logging
5
  Requires at least: 3.5
6
  Tested up to: 3.5
7
+ Stable tag: 1.0.6
8
  License: GPLv3
9
 
10
  Download Monitor is a plugin for uploading and managing downloads, tracking downloads, and displaying links.
108
 
109
  == Changelog ==
110
 
111
+ = 1.0.6 =
112
+ * Hide taxonomies from nav menus
113
+ * Fix categories in download_data method.
114
+
115
  = 1.0.5 =
116
  * When do_not_force is enabled, still replace abspath with home_url
117
  * Exclude dlm_download from search and disable query var