Plugin Directory

Changeset 1670976


Ignore:
Timestamp:
06/05/2017 12:02:24 PM (9 years ago)
Author:
impactingdigital
Message:

Release 1.2.0

Location:
pushnews
Files:
45 added
4 edited

Legend:

Unmodified
Added
Removed
  • pushnews/trunk/CHANGELOG.md

    r1607133 r1670976  
    11CHANGELOG
    2 ===
     2=========
     3
     4# 1.2.0
     5
     6- Making sure all tag configuration elements are trimmed before printed
    37
    48# 1.1.0
  • pushnews/trunk/README.md

    r1607133 r1670976  
    22===
    33
    4 ![Pushnews](https://s21.postimg.org/cc954q6av/rsz_screenshot_1.jpg)
     4![Pushnews](http://plugins.svn.wordpress.org/pushnews/assets/rsz_screenshot-1.jpg)
    55
    66Send Web Push Notifications to your visitors. Increase your website traffic - Simple and fast UI - Automate push notifications via Facebook Page integration.
  • pushnews/trunk/class.pushnews.php

    r1607133 r1670976  
    2323
    2424class Pushnews {
    25     const VERSION = '1.1.0';
     25    const VERSION = '1.2.0';
    2626    const RESOURCES_VERSION = '1';
    2727    const API_URL = 'https://app.pushnews.eu/api.php/v1';
     
    281281            '{%%subscription_request.activation_type%%}'       => 'auto',
    282282            '{%%subscription_request.activation_type.extra%%}' => '',
    283 
    284             '{%%optin.desktopImage%%}'           => $options['website_square_logo_url'],
    285             '{%%optin.mobileImage%%}'            => $options['website_square_logo_url'],
    286             '{%%subscription_request.title%%}'   => $options['subscription_request.title'],
    287             '{%%subscription_request.body%%}'    => $options['subscription_request.body'],
    288             '{%%subscription_request.btn_no%%}'  => $options['subscription_request.btn_no'],
    289             '{%%subscription_request.btn_yes%%}' => $options['subscription_request.btn_yes'],
    290 
    291             '{%%popup.name%%}'                 => $options['website_name'],
    292             '{%%popup.domain%%}'               => $options['pushnews_subdomain'],
    293             '{%%popup.appId%%}'                => $options['app_id'],
    294             '{%%confirmation_popup.message%%}' => $options['confirmation_popup.message'],
    295             '{%%popup.notificationIcon%%}'     => $options['website_square_logo_url'],
    296             '{%%confirmation_popup.title%%}'   => $options['confirmation_popup.sample_notification_title'],
    297             '{%%confirmation_popup.body%%}'    => $options['confirmation_popup.sample_notification_body'],
    298             '{%%confirmation_popup.caption%%}' => $options['confirmation_popup.caption'],
     283            '{%%optin.desktopImage%%}'                         => trim( $options['website_square_logo_url'] ),
     284            '{%%optin.mobileImage%%}'                          => trim( $options['website_square_logo_url'] ),
     285            '{%%subscription_request.title%%}'                 => trim( $options['subscription_request.title'] ),
     286            '{%%subscription_request.body%%}'                  => trim( $options['subscription_request.body'] ),
     287            '{%%subscription_request.btn_no%%}'                => trim( $options['subscription_request.btn_no'] ),
     288            '{%%subscription_request.btn_yes%%}'               => trim( $options['subscription_request.btn_yes'] ),
     289            '{%%popup.name%%}'                                 => trim( $options['website_name'] ),
     290            '{%%popup.domain%%}'                               => trim( $options['pushnews_subdomain'] ),
     291            '{%%popup.appId%%}'                                => trim( $options['app_id'] ),
     292            '{%%confirmation_popup.message%%}'                 => trim( $options['confirmation_popup.message'] ),
     293            '{%%popup.notificationIcon%%}'                     => trim( $options['website_square_logo_url'] ),
     294            '{%%confirmation_popup.title%%}'                   => trim( $options['confirmation_popup.sample_notification_title'] ),
     295            '{%%confirmation_popup.body%%}'                    => trim( $options['confirmation_popup.sample_notification_body'] ),
     296            '{%%confirmation_popup.caption%%}'                 => trim( $options['confirmation_popup.caption'] ),
    299297        );
    300298
  • pushnews/trunk/readme.txt

    r1607139 r1670976  
    44Tags: push, push notifications, web push, desktop notification, notifications, pushnews, onesignal, goroost, roost, pushcrew, pushengage, pushwoosh
    55Requires at least: 3.8
    6 Tested up to: 4.7.2
    7 Stable tag: 1.1.0
     6Tested up to: 4.8
     7Stable tag: 1.2.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3636= Where do I create a Pushnews account? =
    3737
    38 You can create a Pushnews account at [https://admin.pushnews.eu/register](https://admin.pushnews.eu/register)
     38You can create a Pushnews account at [https://admin.pushnews.eu/register](https://admin.pushnews.eu/register?utm_source=WpPluginSite)
    3939
    4040= How do I send a push notification? =
     
    5656== Changelog ==
    5757
     58= 1.2.0 =
     59* Making sure all tag configuration elements are trimmed before printed
     60
    5861= 1.1.0 =
    5962* Removed short array syntax to allow compatibility with PHP 5.3
Note: See TracChangeset for help on using the changeset viewer.