Version Description
(2017-03-07) = * Fixed bug that caused minor publishing controls to be hidden on unrelated Edit screens.
Download this release
Release Info
Developer | markzahra |
Plugin | WP RSS Aggregator |
Version | 4.11.1 |
Comparing to | |
See all releases |
Code changes from version 4.11 to 4.11.1
- css/admin-notifications.css +15 -0
- css/admin-styles.css +0 -19
- includes/Aventura/Wprss/Core/Component/AdminAjaxNotices.php +6 -5
- includes/admin-welcome.php +2 -1
- readme.txt +7 -4
- wp-rss-aggregator.php +3 -3
css/admin-notifications.css
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Admin Notifications ====================================================== */
|
2 |
+
.wprss_admin-notice {
|
3 |
+
position: relative;
|
4 |
+
}
|
5 |
+
|
6 |
+
.wprss_admin-notice .notice-content {
|
7 |
+
margin-right: 200px;
|
8 |
+
}
|
9 |
+
|
10 |
+
.wprss_admin-notice .btn-close {
|
11 |
+
position: absolute;
|
12 |
+
right: 15px;
|
13 |
+
top: 10px;
|
14 |
+
text-decoration: none;
|
15 |
+
}
|
css/admin-styles.css
CHANGED
@@ -635,25 +635,6 @@ body.post-type-wprss_blacklist .alignleft.actions.bulkactions {
|
|
635 |
font-size: 15px;
|
636 |
}
|
637 |
|
638 |
-
|
639 |
-
|
640 |
-
/* Admin Notifications ====================================================== */
|
641 |
-
.wprss_admin-notice {
|
642 |
-
position: relative;
|
643 |
-
}
|
644 |
-
|
645 |
-
.wprss_admin-notice .notice-content {
|
646 |
-
margin-right: 200px;
|
647 |
-
}
|
648 |
-
|
649 |
-
.wprss_admin-notice .btn-close {
|
650 |
-
position: absolute;
|
651 |
-
right: 15px;
|
652 |
-
top: 10px;
|
653 |
-
text-decoration: none;
|
654 |
-
}
|
655 |
-
|
656 |
-
|
657 |
/* For non settings page screens */
|
658 |
@media only screen and (max-width: 850px) {
|
659 |
|
635 |
font-size: 15px;
|
636 |
}
|
637 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
638 |
/* For non settings page screens */
|
639 |
@media only screen and (max-width: 850px) {
|
640 |
|
includes/Aventura/Wprss/Core/Component/AdminAjaxNotices.php
CHANGED
@@ -122,6 +122,7 @@ class AdminAjaxNotices extends Core\Plugin\ComponentAbstract
|
|
122 |
foreach ($script_handles as $_idx => $_handle) {
|
123 |
wp_enqueue_script($_handle);
|
124 |
}
|
|
|
125 |
// Post-enqueueing action
|
126 |
$this->event('admin_notice_collection_after_enqueue_scripts', array(&$script_handles, $collection));
|
127 |
}
|
@@ -138,18 +139,18 @@ class AdminAjaxNotices extends Core\Plugin\ComponentAbstract
|
|
138 |
// This handles the client side for WPRSS_Admin_Notices
|
139 |
wp_register_script( 'wprss-admin-notifications', wprss_get_script_url( 'admin-notifications' ), array('aventura'), $version, true );
|
140 |
|
141 |
-
|
142 |
$settings = array(
|
143 |
'notice_class' => $collection->get_notice_base_class(),
|
144 |
'nonce_class' => $collection->get_nonce_base_class(),
|
145 |
'btn_close_class' => $collection->get_btn_close_base_class(),
|
146 |
'action_code' => wprss_admin_notice_get_action_code(),
|
147 |
'dismiss_mode_class_prefix' => $collection->get_dismiss_mode_class_prefix(),
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
|
152 |
-
|
153 |
}
|
154 |
|
155 |
/**
|
122 |
foreach ($script_handles as $_idx => $_handle) {
|
123 |
wp_enqueue_script($_handle);
|
124 |
}
|
125 |
+
wp_enqueue_style( 'wprss-admin-notifications' );
|
126 |
// Post-enqueueing action
|
127 |
$this->event('admin_notice_collection_after_enqueue_scripts', array(&$script_handles, $collection));
|
128 |
}
|
139 |
// This handles the client side for WPRSS_Admin_Notices
|
140 |
wp_register_script( 'wprss-admin-notifications', wprss_get_script_url( 'admin-notifications' ), array('aventura'), $version, true );
|
141 |
|
142 |
+
// Frontend settings
|
143 |
$settings = array(
|
144 |
'notice_class' => $collection->get_notice_base_class(),
|
145 |
'nonce_class' => $collection->get_nonce_base_class(),
|
146 |
'btn_close_class' => $collection->get_btn_close_base_class(),
|
147 |
'action_code' => wprss_admin_notice_get_action_code(),
|
148 |
'dismiss_mode_class_prefix' => $collection->get_dismiss_mode_class_prefix(),
|
149 |
+
);
|
150 |
+
$this->event( 'admin_notice_collection_before_localize_vars', array(&$settings, $collection) );
|
151 |
+
wp_localize_script( 'aventura', 'adminNoticeGlobalVars', $settings);
|
152 |
|
153 |
+
wp_register_style( 'wprss-admin-notifications', WPRSS_CSS . 'admin-notifications.css', array(), $version );
|
154 |
}
|
155 |
|
156 |
/**
|
includes/admin-welcome.php
CHANGED
@@ -107,6 +107,7 @@
|
|
107 |
<li><strong><a href="http://www.wprssaggregator.com/extension/keyword-filtering/" target="wprss_kf"><?php _e( 'Keyword Filtering', WPRSS_TEXT_DOMAIN ); ?></a></strong></li>
|
108 |
<li><strong><a href="http://www.wprssaggregator.com/extension/full-text-rss-feeds/" target="wprss_kf"><?php _e( 'Full Text RSS Feeds', WPRSS_TEXT_DOMAIN ); ?></a></strong></li>
|
109 |
<li><strong><a href="http://www.wprssaggregator.com/extension/wordai/" target="wprss_ai"><?php _e( 'WordAi', WPRSS_TEXT_DOMAIN ); ?></a></strong></li>
|
|
|
110 |
</ul>
|
111 |
</p>
|
112 |
<?php echo wpautop( sprintf( __( 'More information about add-ons can be found on our website <a href="%1$s">%2$s</a>', WPRSS_TEXT_DOMAIN ), 'http://www.wprssaggregator.com', 'www.wprssaggregator.com' ) ) ?>
|
@@ -121,7 +122,7 @@
|
|
121 |
</div>
|
122 |
<?php break; endforeach; endif; ?>
|
123 |
|
124 |
-
|
125 |
|
126 |
</div>
|
127 |
|
107 |
<li><strong><a href="http://www.wprssaggregator.com/extension/keyword-filtering/" target="wprss_kf"><?php _e( 'Keyword Filtering', WPRSS_TEXT_DOMAIN ); ?></a></strong></li>
|
108 |
<li><strong><a href="http://www.wprssaggregator.com/extension/full-text-rss-feeds/" target="wprss_kf"><?php _e( 'Full Text RSS Feeds', WPRSS_TEXT_DOMAIN ); ?></a></strong></li>
|
109 |
<li><strong><a href="http://www.wprssaggregator.com/extension/wordai/" target="wprss_ai"><?php _e( 'WordAi', WPRSS_TEXT_DOMAIN ); ?></a></strong></li>
|
110 |
+
<li><strong><a href="https://www.wprssaggregator.com/extension/spinnerchief/" target="wprss_sc"><?php _e( 'SpinnerChief', WPRSS_TEXT_DOMAIN ); ?></a></strong></li>
|
111 |
</ul>
|
112 |
</p>
|
113 |
<?php echo wpautop( sprintf( __( 'More information about add-ons can be found on our website <a href="%1$s">%2$s</a>', WPRSS_TEXT_DOMAIN ), 'http://www.wprssaggregator.com', 'www.wprssaggregator.com' ) ) ?>
|
122 |
</div>
|
123 |
<?php break; endforeach; endif; ?>
|
124 |
|
125 |
+
<?php echo wpautop( sprintf( __( 'Need functionality not already available in core or the add-ons? You can <a href="%1$s">suggest new features</a>!', WPRSS_TEXT_DOMAIN ), 'https://www.wprssaggregator.com/feature-requests/' ) ) ?>
|
126 |
|
127 |
</div>
|
128 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Plugin URI: https://www.wprssaggregator.com
|
|
4 |
Tags: RSS, RSS feeds, aggregation, autoblog, content curation, feed reader, feed to post, RSS aggregator, RSS feeder, RSS import, RSS to post, syndication, multiple feed import
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7.2
|
7 |
-
Stable tag: 4.11
|
8 |
License: GPLv3
|
9 |
WP RSS Aggregator is the most comprehensive RSS feed importer and autoblogging plugin for WordPress with premium add-ons for additional functionality.
|
10 |
|
@@ -286,18 +286,21 @@ Our complete documentation with FAQs included can be found on our dedicated [doc
|
|
286 |
|
287 |
== Changelog ==
|
288 |
|
289 |
-
= 4.11 (2017-
|
|
|
|
|
|
|
290 |
* Fixed bug with lifetime licenses showing expiry notices.
|
291 |
* Fixed bug with being able to submit form on Licenses page.
|
292 |
* Fixed bug with empty saved license key causing PHP notice, and not triggering reminder notification.
|
293 |
* Fixed bug with saved but inactive licenses not triggering reminder notification.
|
294 |
* Fixed bug with minified assets not being served by default.
|
295 |
* Fixed bug with cached admin assets being served even after update.
|
296 |
-
* Fixed bug with admin notifications displayed on unrelated pages not being
|
297 |
* Enhanced Licenses page so as to make the [Enter] key toggle license activation.
|
298 |
* Enhanced architecture by using a DI container.
|
299 |
* Enhanced admin notifications by refactoring them to use the same mechanism.
|
300 |
-
* Enhanced admin notifications by making all of them
|
301 |
|
302 |
= 4.10 (2016-12-29) =
|
303 |
* Fixed bug with feed error output breaking tooltips on "Feed Sources" page.
|
4 |
Tags: RSS, RSS feeds, aggregation, autoblog, content curation, feed reader, feed to post, RSS aggregator, RSS feeder, RSS import, RSS to post, syndication, multiple feed import
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7.2
|
7 |
+
Stable tag: 4.11.1
|
8 |
License: GPLv3
|
9 |
WP RSS Aggregator is the most comprehensive RSS feed importer and autoblogging plugin for WordPress with premium add-ons for additional functionality.
|
10 |
|
286 |
|
287 |
== Changelog ==
|
288 |
|
289 |
+
= 4.11.1 (2017-03-07) =
|
290 |
+
* Fixed bug that caused minor publishing controls to be hidden on unrelated Edit screens.
|
291 |
+
|
292 |
+
= 4.11 (2017-03-06) =
|
293 |
* Fixed bug with lifetime licenses showing expiry notices.
|
294 |
* Fixed bug with being able to submit form on Licenses page.
|
295 |
* Fixed bug with empty saved license key causing PHP notice, and not triggering reminder notification.
|
296 |
* Fixed bug with saved but inactive licenses not triggering reminder notification.
|
297 |
* Fixed bug with minified assets not being served by default.
|
298 |
* Fixed bug with cached admin assets being served even after update.
|
299 |
+
* Fixed bug with admin notifications displayed on unrelated pages not being dismissible.
|
300 |
* Enhanced Licenses page so as to make the [Enter] key toggle license activation.
|
301 |
* Enhanced architecture by using a DI container.
|
302 |
* Enhanced admin notifications by refactoring them to use the same mechanism.
|
303 |
+
* Enhanced admin notifications by making all of them dismissible.
|
304 |
|
305 |
= 4.10 (2016-12-29) =
|
306 |
* Fixed bug with feed error output breaking tooltips on "Feed Sources" page.
|
wp-rss-aggregator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WP RSS Aggregator
|
4 |
* Plugin URI: https://www.wprssaggregator.com/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpraplugin
|
5 |
* Description: Imports and aggregates multiple RSS Feeds.
|
6 |
-
* Version: 4.11
|
7 |
* Author: RebelCode
|
8 |
* Author URI: https://www.wprssaggregator.com
|
9 |
* Text Domain: wprss
|
@@ -30,7 +30,7 @@
|
|
30 |
|
31 |
/**
|
32 |
* @package WPRSSAggregator
|
33 |
-
* @version 4.11
|
34 |
* @since 1.0
|
35 |
* @author RebelCode
|
36 |
* @copyright Copyright (c) 2012-2016, RebelCode Ltd.
|
@@ -44,7 +44,7 @@
|
|
44 |
|
45 |
// Set the version number of the plugin.
|
46 |
if( !defined( 'WPRSS_VERSION' ) )
|
47 |
-
define( 'WPRSS_VERSION', '4.11', true );
|
48 |
|
49 |
if( !defined( 'WPRSS_WP_MIN_VERSION' ) )
|
50 |
define( 'WPRSS_WP_MIN_VERSION', '4.0', true );
|
3 |
* Plugin Name: WP RSS Aggregator
|
4 |
* Plugin URI: https://www.wprssaggregator.com/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpraplugin
|
5 |
* Description: Imports and aggregates multiple RSS Feeds.
|
6 |
+
* Version: 4.11.1
|
7 |
* Author: RebelCode
|
8 |
* Author URI: https://www.wprssaggregator.com
|
9 |
* Text Domain: wprss
|
30 |
|
31 |
/**
|
32 |
* @package WPRSSAggregator
|
33 |
+
* @version 4.11.1
|
34 |
* @since 1.0
|
35 |
* @author RebelCode
|
36 |
* @copyright Copyright (c) 2012-2016, RebelCode Ltd.
|
44 |
|
45 |
// Set the version number of the plugin.
|
46 |
if( !defined( 'WPRSS_VERSION' ) )
|
47 |
+
define( 'WPRSS_VERSION', '4.11.1', true );
|
48 |
|
49 |
if( !defined( 'WPRSS_WP_MIN_VERSION' ) )
|
50 |
define( 'WPRSS_WP_MIN_VERSION', '4.0', true );
|