Changeset 1880154
- Timestamp:
- 05/23/2018 03:10:15 PM (8 years ago)
- Location:
- pushnews/trunk
- Files:
-
- 4 edited
-
CHANGELOG.md (modified) (1 diff)
-
class.pushnews.php (modified) (3 diffs)
-
pushnews.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pushnews/trunk/CHANGELOG.md
r1864961 r1880154 1 1 CHANGELOG 2 2 ========= 3 4 # 1.5.3 5 - Fixed some issues regarding updated posts 6 3 7 # 1.5.2 4 8 - Fixed some issues regarding scheduled posts -
pushnews/trunk/class.pushnews.php
r1864961 r1880154 23 23 24 24 class Pushnews { 25 const VERSION = '1.5. 2';25 const VERSION = '1.5.3'; 26 26 const RESOURCES_VERSION = '1'; 27 27 const API_URL = 'https://app.pushnews.eu/api.php/v1'; … … 115 115 $options = get_option( 'pushnews_options' ); 116 116 117 if( isset($options['auth_token']) && $options['auth_token'] != "") {117 if($post->post_date == $post->post_modified && isset($options['auth_token']) && $options['auth_token'] != "") { 118 118 $notification = array( 119 119 "message" => array( … … 128 128 $notification['message']['icon'] = get_the_post_thumbnail_url($post); 129 129 } 130 131 130 wp_remote_post("https://api.pushnews.eu/v2/push/" . $options['app_id'], array( 132 131 "body" => json_encode($notification), -
pushnews/trunk/pushnews.php
r1864961 r1880154 6 6 * Plugin URI: https://www.pushnews.eu/ 7 7 * Description: Send Web Push Notifications to your visitors. Increase your website traffic - Simple and fast UI - Automate push notifications via Facebook Page integration. 8 * Version: 1.5. 28 * Version: 1.5.3 9 9 * Author URI: https://www.pushnews.eu/ 10 10 * License: GPLv2 or later … … 29 29 */ 30 30 31 define( 'PUSHNEWS_VERSION', '1.5. 2' );31 define( 'PUSHNEWS_VERSION', '1.5.3' ); 32 32 define( 'PUSHNEWS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 33 33 -
pushnews/trunk/readme.txt
r1864966 r1880154 6 6 Tested up to: 4.9.4 7 7 Requires PHP: 5.3 8 Stable tag: 1.5. 28 Stable tag: 1.5.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 60 60 61 61 == Changelog == 62 = 1.5.3 = 63 * Fixed some issues regarding updated posts 64 62 65 = 1.5.2 = 63 66 * Fixed some issues regarding scheduled posts
Note: See TracChangeset
for help on using the changeset viewer.