Simple 301 Redirects – Addon – Bulk Uploader - Version 1.0.7

Version Description

  • Update to allowed file type list
Download this release

Release Info

Developer ashdurham
Plugin Icon 128x128 Simple 301 Redirects – Addon – Bulk Uploader
Version 1.0.7
Comparing to
See all releases

Code changes from version 1.0.6 to 1.0.7

Files changed (2) hide show
  1. readme.txt +8 -2
  2. simple-301-bulk-uploader.php +3 -1
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: ashdurham
3
  Donate link: http://durham.net.au/donate/
4
  Tags: simple 301 redirects, bulk upload, csv, 301, redirects
5
  Requires at least: 3.0.1
6
- Tested up to: 3.7.1
7
- Stable tag: 1.0.6
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -68,6 +68,9 @@ Have a question thats not listed? Get support either on the support forums here
68
 
69
  == Changelog ==
70
 
 
 
 
71
  = 1.0.6 =
72
  * Export to CSV feature
73
 
@@ -91,6 +94,9 @@ Have a question thats not listed? Get support either on the support forums here
91
 
92
  == Upgrade Notice ==
93
 
 
 
 
94
  = 1.0.6 =
95
  * Export to CSV feature
96
 
3
  Donate link: http://durham.net.au/donate/
4
  Tags: simple 301 redirects, bulk upload, csv, 301, redirects
5
  Requires at least: 3.0.1
6
+ Tested up to: 3.8.1
7
+ Stable tag: 1.0.7
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.0.7 =
72
+ * Update to allowed file type list
73
+
74
  = 1.0.6 =
75
  * Export to CSV feature
76
 
94
 
95
  == Upgrade Notice ==
96
 
97
+ = 1.0.7 =
98
+ * Update to allowed file type list
99
+
100
  = 1.0.6 =
101
  * Export to CSV feature
102
 
simple-301-bulk-uploader.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Simple 301 Redirects - Addon - Bulk CSV Uploader
4
  Plugin URI: http://kingpro.me/plugins/support-plugins/simple-301-redirects-addon-bulk-csv-uploader
5
  Description: Adds the ability to upload a CSV to populate the Simple 301 Redirects plugin
6
- Version: 1.0.5
7
  Author: Ash Durham
8
  Author URI: http://durham.net.au/
9
  License: GPL2
@@ -107,8 +107,10 @@ if (!class_exists("Bulk301Uploader")) {
107
  'application/vnd.ms-excel',
108
  'application/vnd.msexcel',
109
  'application/octet-stream',
 
110
  'text/anytext',
111
  'text/csv',
 
112
  'text/comma-separated-values'
113
  );
114
 
3
  Plugin Name: Simple 301 Redirects - Addon - Bulk CSV Uploader
4
  Plugin URI: http://kingpro.me/plugins/support-plugins/simple-301-redirects-addon-bulk-csv-uploader
5
  Description: Adds the ability to upload a CSV to populate the Simple 301 Redirects plugin
6
+ Version: 1.0.7
7
  Author: Ash Durham
8
  Author URI: http://durham.net.au/
9
  License: GPL2
107
  'application/vnd.ms-excel',
108
  'application/vnd.msexcel',
109
  'application/octet-stream',
110
+ 'application/data',
111
  'text/anytext',
112
  'text/csv',
113
+ 'text/x-csv',
114
  'text/comma-separated-values'
115
  );
116