Plugin Directory

Changeset 1886922


Ignore:
Timestamp:
06/04/2018 03:36:30 PM (8 years ago)
Author:
mariobalca
Message:

1.5.4

Location:
pushnews/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pushnews/trunk/CHANGELOG.md

    r1880154 r1886922  
    11CHANGELOG
    22=========
     3
     4# 1.5.4
     5- Updated Push Notifications plugin behaviour, now sending featured image as SuperPush
    36
    47# 1.5.3
  • pushnews/trunk/class.pushnews.php

    r1880154 r1886922  
    2323
    2424class Pushnews {
    25     const VERSION = '1.5.3';
     25    const VERSION = '1.5.4';
    2626    const RESOURCES_VERSION = '1';
    2727    const API_URL = 'https://app.pushnews.eu/api.php/v1';
     
    126126            if($sendNotification) {
    127127                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);
    129129                }
    130130                wp_remote_post("https://api.pushnews.eu/v2/push/" . $options['app_id'], array(
  • pushnews/trunk/pushnews.php

    r1880154 r1886922  
    66* Plugin URI:         https://www.pushnews.eu/
    77* 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.3
     8* Version:            1.5.4
    99* Author URI:         https://www.pushnews.eu/
    1010* License:            GPLv2 or later
     
    2929*/
    3030
    31 define( 'PUSHNEWS_VERSION', '1.5.3' );
     31define( 'PUSHNEWS_VERSION', '1.5.4' );
    3232define( 'PUSHNEWS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3333
  • pushnews/trunk/readme.txt

    r1880154 r1886922  
    66Tested up to: 4.9.4
    77Requires PHP: 5.3
    8 Stable tag: 1.5.3
     8Stable tag: 1.5.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6060
    6161== Changelog ==
     62= 1.5.4 =
     63* Updated Push Notifications plugin behaviour, now sending featured image as SuperPush
     64
    6265= 1.5.3 =
    6366* Fixed some issues regarding updated posts
Note: See TracChangeset for help on using the changeset viewer.