Changeset 1886922
- Timestamp:
- 06/04/2018 03:36:30 PM (8 years ago)
- Location:
- pushnews/trunk
- Files:
-
- 4 edited
-
CHANGELOG.md (modified) (1 diff)
-
class.pushnews.php (modified) (2 diffs)
-
pushnews.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pushnews/trunk/CHANGELOG.md
r1880154 r1886922 1 1 CHANGELOG 2 2 ========= 3 4 # 1.5.4 5 - Updated Push Notifications plugin behaviour, now sending featured image as SuperPush 3 6 4 7 # 1.5.3 -
pushnews/trunk/class.pushnews.php
r1880154 r1886922 23 23 24 24 class Pushnews { 25 const VERSION = '1.5. 3';25 const VERSION = '1.5.4'; 26 26 const RESOURCES_VERSION = '1'; 27 27 const API_URL = 'https://app.pushnews.eu/api.php/v1'; … … 126 126 if($sendNotification) { 127 127 if(get_the_post_thumbnail_url($post)) { 128 $notification['message'][' icon'] = get_the_post_thumbnail_url($post);128 $notification['message']['bigImage'] = get_the_post_thumbnail_url($post); 129 129 } 130 130 wp_remote_post("https://api.pushnews.eu/v2/push/" . $options['app_id'], array( -
pushnews/trunk/pushnews.php
r1880154 r1886922 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. 38 * Version: 1.5.4 9 9 * Author URI: https://www.pushnews.eu/ 10 10 * License: GPLv2 or later … … 29 29 */ 30 30 31 define( 'PUSHNEWS_VERSION', '1.5. 3' );31 define( 'PUSHNEWS_VERSION', '1.5.4' ); 32 32 define( 'PUSHNEWS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 33 33 -
pushnews/trunk/readme.txt
r1880154 r1886922 6 6 Tested up to: 4.9.4 7 7 Requires PHP: 5.3 8 Stable tag: 1.5. 38 Stable tag: 1.5.4 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.4 = 63 * Updated Push Notifications plugin behaviour, now sending featured image as SuperPush 64 62 65 = 1.5.3 = 63 66 * Fixed some issues regarding updated posts
Note: See TracChangeset
for help on using the changeset viewer.