Skip to content

Commit

Permalink
1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Schroiff committed Jan 30, 2019
1 parent e26ff7c commit a80f75e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"name": "bureaubolster/hookpress",
"type": "wordpress-plugin",
"require": {},
"version": "1.14"
"version": "1.14.1"
}
4 changes: 2 additions & 2 deletions hookpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
Plugin Name: HookPress
Plugin URI: http://mitcho.com/code/hookpress/
Description: HookPress turns all of your WordPress-internal hooks into webhooks. Possible uses include generating push notifications or using non-PHP web technology to extend WordPress. Read more about webhooks at <a href='http://webhooks.org/'>the webhooks site</a>.
Version: 1.14
Version: 1.14.1
Author: mitcho (Michael Yoshitaka Erlewine)
Author URI: http://mitcho.com/
Donate link: http://tinyurl.com/donatetomitcho
*/

define('HOOKPRESS_PRIORITY',12838790321);
$hookpress_version = "1.14";
$hookpress_version = "1.14.1";
require('includes.php');

function hookpress_init() {
Expand Down
4 changes: 4 additions & 0 deletions hooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
'publish_page'=>array('POST'),
'publish_phone'=>array('POST'),
'publish_post'=>array('POST'),
'publish_partner_post'=>array('POST'),
'publish_event'=>array('POST'),
'publish_job'=>array('POST'),
'publish_recipe'=>array('POST'),
'save_post'=>array('POST', 'PARENT_POST'),
// TODO: make sure the original post stuff is working
'wp_insert_post'=>array('POST'),
Expand Down

0 comments on commit a80f75e

Please sign in to comment.