Changeset 1670976
- Timestamp:
- 06/05/2017 12:02:24 PM (9 years ago)
- Location:
- pushnews
- Files:
-
- 45 added
- 4 edited
-
tags/1.0.0/.htaccess (added)
-
tags/1.2.0 (added)
-
tags/1.2.0/.htaccess (added)
-
tags/1.2.0/CHANGELOG.md (added)
-
tags/1.2.0/LICENSE (added)
-
tags/1.2.0/README.md (added)
-
tags/1.2.0/class.pushnews.php (added)
-
tags/1.2.0/class.pushnewsbase64url.php (added)
-
tags/1.2.0/languages (added)
-
tags/1.2.0/languages/pushnews-pt_BR.mo (added)
-
tags/1.2.0/languages/pushnews-pt_BR.po (added)
-
tags/1.2.0/languages/pushnews-pt_PT.mo (added)
-
tags/1.2.0/languages/pushnews-pt_PT.po (added)
-
tags/1.2.0/languages/pushnews.pot (added)
-
tags/1.2.0/pushnews (added)
-
tags/1.2.0/pushnews.php (added)
-
tags/1.2.0/readme.txt (added)
-
tags/1.2.0/views (added)
-
tags/1.2.0/views/config.php (added)
-
tags/1.2.0/views/css (added)
-
tags/1.2.0/views/css/fonts (added)
-
tags/1.2.0/views/css/fonts/pushnews-font.eot (added)
-
tags/1.2.0/views/css/fonts/pushnews-font.svg (added)
-
tags/1.2.0/views/css/fonts/pushnews-font.ttf (added)
-
tags/1.2.0/views/css/fonts/pushnews-font.woff (added)
-
tags/1.2.0/views/css/pushnews-admin-styles.css (added)
-
tags/1.2.0/views/images (added)
-
tags/1.2.0/views/images/banner-772x250.jpg (added)
-
tags/1.2.0/views/images/icon-128x128.png (added)
-
tags/1.2.0/views/images/icon-256x256.png (added)
-
tags/1.2.0/views/images/icon-512x512.png (added)
-
tags/1.2.0/views/images/screenshots (added)
-
tags/1.2.0/views/images/screenshots/screenshot-1.jpg (added)
-
tags/1.2.0/views/images/screenshots/screenshot-2.jpg (added)
-
tags/1.2.0/views/images/screenshots/screenshot-3.jpg (added)
-
tags/1.2.0/views/images/screenshots/screenshot-4.jpg (added)
-
tags/1.2.0/views/send.php (added)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/class.pushnews.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/views/images/banner-772x250.jpg (added)
-
trunk/views/images/icon-128x128.png (added)
-
trunk/views/images/icon-256x256.png (added)
-
trunk/views/images/icon-512x512.png (added)
-
trunk/views/images/screenshots/screenshot-1.jpg (added)
-
trunk/views/images/screenshots/screenshot-2.jpg (added)
-
trunk/views/images/screenshots/screenshot-3.jpg (added)
-
trunk/views/images/screenshots/screenshot-4.jpg (added)
Legend:
- Unmodified
- Added
- Removed
-
pushnews/trunk/CHANGELOG.md
r1607133 r1670976 1 1 CHANGELOG 2 === 2 ========= 3 4 # 1.2.0 5 6 - Making sure all tag configuration elements are trimmed before printed 3 7 4 8 # 1.1.0 -
pushnews/trunk/README.md
r1607133 r1670976 2 2 === 3 3 4 4  5 5 6 6 Send 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 23 23 24 24 class Pushnews { 25 const VERSION = '1. 1.0';25 const VERSION = '1.2.0'; 26 26 const RESOURCES_VERSION = '1'; 27 27 const API_URL = 'https://app.pushnews.eu/api.php/v1'; … … 281 281 '{%%subscription_request.activation_type%%}' => 'auto', 282 282 '{%%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'] ), 299 297 ); 300 298 -
pushnews/trunk/readme.txt
r1607139 r1670976 4 4 Tags: push, push notifications, web push, desktop notification, notifications, pushnews, onesignal, goroost, roost, pushcrew, pushengage, pushwoosh 5 5 Requires at least: 3.8 6 Tested up to: 4. 7.27 Stable tag: 1. 1.06 Tested up to: 4.8 7 Stable tag: 1.2.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 36 36 = Where do I create a Pushnews account? = 37 37 38 You can create a Pushnews account at [https://admin.pushnews.eu/register](https://admin.pushnews.eu/register )38 You can create a Pushnews account at [https://admin.pushnews.eu/register](https://admin.pushnews.eu/register?utm_source=WpPluginSite) 39 39 40 40 = How do I send a push notification? = … … 56 56 == Changelog == 57 57 58 = 1.2.0 = 59 * Making sure all tag configuration elements are trimmed before printed 60 58 61 = 1.1.0 = 59 62 * Removed short array syntax to allow compatibility with PHP 5.3
Note: See TracChangeset
for help on using the changeset viewer.