Version Description
(2015-09-16) = * added 15 and 30 second cron schedules
Download this release
Release Info
Developer | WayneAllen |
Plugin | Postie |
Version | 1.7.10 |
Comparing to | |
See all releases |
Code changes from version 1.7.9 to 1.7.10
- config_form.php +41 -7
- docs/Changes.txt +3 -0
- docs/Postie.txt +2 -2
- postie.php +5 -4
- readme.txt +5 -2
config_form.php
CHANGED
@@ -190,37 +190,71 @@
|
|
190 |
if ($interval == "weekly") {
|
191 |
echo "selected='selected'";
|
192 |
}
|
193 |
-
?>><?php _e('Once weekly', POSTIE_SLUG)
|
|
|
|
|
194 |
<option value="daily"<?php
|
195 |
if ($interval == "daily") {
|
196 |
echo "selected='selected'";
|
197 |
}
|
198 |
-
?>><?php _e('daily', POSTIE_SLUG)
|
|
|
|
|
199 |
<option value="hourly" <?php
|
200 |
if ($interval == "hourly") {
|
201 |
echo "selected='selected'";
|
202 |
}
|
203 |
-
?>><?php _e('hourly', POSTIE_SLUG)
|
|
|
|
|
204 |
<option value="twiceperhour" <?php
|
205 |
if ($interval == "twiceperhour") {
|
206 |
echo "selected='selected'";
|
207 |
}
|
208 |
-
?>><?php _e('twice per hour', POSTIE_SLUG)
|
|
|
|
|
209 |
<option value="tenminutes" <?php
|
210 |
if ($interval == "tenminutes") {
|
211 |
echo "selected='selected'";
|
212 |
}
|
213 |
-
?>><?php _e('every
|
|
|
|
|
214 |
<option value="fiveminutes" <?php
|
215 |
if ($interval == "fiveminutes") {
|
216 |
echo "selected='selected'";
|
217 |
}
|
218 |
-
?>><?php _e('every
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
<option value="manual" <?php
|
220 |
if ($interval == "manual") {
|
221 |
echo "selected='selected'";
|
222 |
}
|
223 |
-
?>><?php _e('check manually', POSTIE_SLUG)
|
|
|
224 |
</select>
|
225 |
</td>
|
226 |
</tr>
|
190 |
if ($interval == "weekly") {
|
191 |
echo "selected='selected'";
|
192 |
}
|
193 |
+
?>><?php _e('Once weekly', POSTIE_SLUG) ?>
|
194 |
+
</option>
|
195 |
+
|
196 |
<option value="daily"<?php
|
197 |
if ($interval == "daily") {
|
198 |
echo "selected='selected'";
|
199 |
}
|
200 |
+
?>><?php _e('daily', POSTIE_SLUG) ?>
|
201 |
+
</option>
|
202 |
+
|
203 |
<option value="hourly" <?php
|
204 |
if ($interval == "hourly") {
|
205 |
echo "selected='selected'";
|
206 |
}
|
207 |
+
?>><?php _e('hourly', POSTIE_SLUG) ?>
|
208 |
+
</option>
|
209 |
+
|
210 |
<option value="twiceperhour" <?php
|
211 |
if ($interval == "twiceperhour") {
|
212 |
echo "selected='selected'";
|
213 |
}
|
214 |
+
?>><?php _e('twice per hour', POSTIE_SLUG) ?>
|
215 |
+
</option>
|
216 |
+
|
217 |
<option value="tenminutes" <?php
|
218 |
if ($interval == "tenminutes") {
|
219 |
echo "selected='selected'";
|
220 |
}
|
221 |
+
?>><?php _e('every 10 minutes', POSTIE_SLUG) ?>
|
222 |
+
</option>
|
223 |
+
|
224 |
<option value="fiveminutes" <?php
|
225 |
if ($interval == "fiveminutes") {
|
226 |
echo "selected='selected'";
|
227 |
}
|
228 |
+
?>><?php _e('every 5 minutes', POSTIE_SLUG) ?>
|
229 |
+
</option>
|
230 |
+
|
231 |
+
<option value="oneminute" <?php
|
232 |
+
if ($interval == "oneminute") {
|
233 |
+
echo "selected='selected'";
|
234 |
+
}
|
235 |
+
?>><?php _e('every 1 minute', POSTIE_SLUG) ?>
|
236 |
+
</option>
|
237 |
+
|
238 |
+
<option value="thirtyseconds" <?php
|
239 |
+
if ($interval == "thirtyseconds") {
|
240 |
+
echo "selected='selected'";
|
241 |
+
}
|
242 |
+
?>><?php _e('every 30 seconds', POSTIE_SLUG) ?>
|
243 |
+
</option>
|
244 |
+
|
245 |
+
<option value="fifteenseconds" <?php
|
246 |
+
if ($interval == "fifteenseconds") {
|
247 |
+
echo "selected='selected'";
|
248 |
+
}
|
249 |
+
?>><?php _e('every 15 seconds', POSTIE_SLUG) ?>
|
250 |
+
</option>
|
251 |
+
|
252 |
<option value="manual" <?php
|
253 |
if ($interval == "manual") {
|
254 |
echo "selected='selected'";
|
255 |
}
|
256 |
+
?>><?php _e('check manually', POSTIE_SLUG) ?>
|
257 |
+
</option>
|
258 |
</select>
|
259 |
</td>
|
260 |
</tr>
|
docs/Changes.txt
CHANGED
@@ -27,6 +27,9 @@ All script, style and body tags are stripped from html emails.
|
|
27 |
Attachments are now processed in the order they were attached.
|
28 |
|
29 |
== CHANGELOG ==
|
|
|
|
|
|
|
30 |
= 1.7.9 (2015-09-14) =
|
31 |
* revert tags logic as html version was messing up the content.
|
32 |
* revert video linkify logic as html version was messing up the content.
|
27 |
Attachments are now processed in the order they were attached.
|
28 |
|
29 |
== CHANGELOG ==
|
30 |
+
= 1.7.10 (2015-09-16) =
|
31 |
+
* added 15 and 30 second cron schedules
|
32 |
+
|
33 |
= 1.7.9 (2015-09-14) =
|
34 |
* revert tags logic as html version was messing up the content.
|
35 |
* revert video linkify logic as html version was messing up the content.
|
docs/Postie.txt
CHANGED
@@ -5,8 +5,8 @@ Author URI: http://allens-home.com/
|
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires at least: 3.3.0
|
8 |
-
Tested up to: 4.3
|
9 |
-
Stable tag: 1.7.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Text Domain: postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires at least: 3.3.0
|
8 |
+
Tested up to: 4.3.1
|
9 |
+
Stable tag: 1.7.10
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Text Domain: postie
|
postie.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Description: Create posts via email. Signifigantly upgrades the Post by Email features of Word Press.
|
7 |
-
Version: 1.7.
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL2
|
@@ -27,11 +27,11 @@
|
|
27 |
*/
|
28 |
|
29 |
/*
|
30 |
-
$Id: postie.php
|
31 |
*/
|
32 |
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
|
33 |
|
34 |
-
define('POSTIE_VERSION', '1.7.
|
35 |
define("POSTIE_ROOT", dirname(__FILE__));
|
36 |
define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
|
37 |
define('POSTIE_SLUG', 'postie');
|
@@ -332,6 +332,7 @@ function postie_more_reccurences($schedules) {
|
|
332 |
$schedules['tenminutes'] = array('interval' => 60 * 10, 'display' => __('Every 10 minutes', POSTIE_SLUG));
|
333 |
$schedules['fiveminutes'] = array('interval' => 60 * 5, 'display' => __('Every 5 minutes', POSTIE_SLUG));
|
334 |
$schedules['oneminute'] = array('interval' => 60 * 1, 'display' => __('Every 1 minute', POSTIE_SLUG));
|
335 |
-
|
|
|
336 |
return $schedules;
|
337 |
}
|
4 |
Plugin Name: Postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Description: Create posts via email. Signifigantly upgrades the Post by Email features of Word Press.
|
7 |
+
Version: 1.7.10
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL2
|
27 |
*/
|
28 |
|
29 |
/*
|
30 |
+
$Id: postie.php 1246822 2015-09-16 18:38:48Z WayneAllen $
|
31 |
*/
|
32 |
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
|
33 |
|
34 |
+
define('POSTIE_VERSION', '1.7.10');
|
35 |
define("POSTIE_ROOT", dirname(__FILE__));
|
36 |
define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
|
37 |
define('POSTIE_SLUG', 'postie');
|
332 |
$schedules['tenminutes'] = array('interval' => 60 * 10, 'display' => __('Every 10 minutes', POSTIE_SLUG));
|
333 |
$schedules['fiveminutes'] = array('interval' => 60 * 5, 'display' => __('Every 5 minutes', POSTIE_SLUG));
|
334 |
$schedules['oneminute'] = array('interval' => 60 * 1, 'display' => __('Every 1 minute', POSTIE_SLUG));
|
335 |
+
$schedules['thirtyseconds'] = array('interval' => 30, 'display' => __('Every 30 seconds', POSTIE_SLUG));
|
336 |
+
$schedules['fifteenseconds'] = array('interval' => 15, 'display' => __('Every 15 seconds', POSTIE_SLUG));
|
337 |
return $schedules;
|
338 |
}
|
readme.txt
CHANGED
@@ -5,8 +5,8 @@ Author URI: http://allens-home.com/
|
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires at least: 3.3.0
|
8 |
-
Tested up to: 4.3
|
9 |
-
Stable tag: 1.7.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Text Domain: postie
|
@@ -236,6 +236,9 @@ All script, style and body tags are stripped from html emails.
|
|
236 |
Attachments are now processed in the order they were attached.
|
237 |
|
238 |
== CHANGELOG ==
|
|
|
|
|
|
|
239 |
= 1.7.9 (2015-09-14) =
|
240 |
* revert tags logic as html version was messing up the content.
|
241 |
* revert video linkify logic as html version was messing up the content.
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires at least: 3.3.0
|
8 |
+
Tested up to: 4.3.1
|
9 |
+
Stable tag: 1.7.10
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Text Domain: postie
|
236 |
Attachments are now processed in the order they were attached.
|
237 |
|
238 |
== CHANGELOG ==
|
239 |
+
= 1.7.10 (2015-09-16) =
|
240 |
+
* added 15 and 30 second cron schedules
|
241 |
+
|
242 |
= 1.7.9 (2015-09-14) =
|
243 |
* revert tags logic as html version was messing up the content.
|
244 |
* revert video linkify logic as html version was messing up the content.
|