Version Description
(2018-05-23) = * Updated Help & Support page.
Download this release
Release Info
Developer | markzahra |
Plugin | WP RSS Aggregator |
Version | 4.11.3 |
Comparing to | |
See all releases |
Code changes from version 4.11.2 to 4.11.3
- includes/admin-help.php +20 -1
- includes/libraries/EDD_licensing/EDD_SL_Plugin_Updater.php +0 -0
- languages/wprss-es.mo +0 -0
- languages/wprss-es.po +0 -0
- readme.txt +5 -2
- vendor/autoload.php +1 -1
- vendor/composer/autoload_psr4.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +5 -5
- vendor/composer/installed.json +84 -84
- vendor/container-interop/container-interop/.gitignore +3 -0
- vendor/container-interop/service-provider/.gitignore +2 -0
- vendor/dhii/collections-abstract-base/.gitignore +4 -0
- vendor/dhii/collections-abstract/.gitignore +4 -0
- vendor/dhii/collections-interface/.gitignore +4 -0
- vendor/dhii/di-abstract/.gitignore +4 -0
- vendor/dhii/di-interface/.gitignore +4 -0
- vendor/dhii/di/.gitattributes +7 -0
- vendor/dhii/di/.gitignore +5 -0
- vendor/dhii/stats-abstract/.gitignore +4 -0
- vendor/dhii/stats-interface/.gitignore +2 -0
- vendor/psr/container/.gitignore +3 -0
- wp-rss-aggregator.php +3 -3
includes/admin-help.php
CHANGED
@@ -51,12 +51,31 @@
|
|
51 |
}
|
52 |
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
/**
|
55 |
* Print the premium help section with inline support form.
|
56 |
*
|
|
|
|
|
57 |
* @since 4.7
|
58 |
*/
|
59 |
-
function
|
60 |
// Addon and license object, both detected in the below algorithm that searches for a
|
61 |
// premium addon that is activated with a valid license
|
62 |
$addon = null;
|
51 |
}
|
52 |
|
53 |
|
54 |
+
/**
|
55 |
+
* Print the premium help section, linking to the contact us page on the site.
|
56 |
+
*
|
57 |
+
* @since 4.11.3
|
58 |
+
*/
|
59 |
+
function wprss_premium_help_display() {
|
60 |
+
printf('<h3>%s</h3>', __( 'Premium Support', WPRSS_TEXT_DOMAIN ));
|
61 |
+
printf(
|
62 |
+
__(
|
63 |
+
'Contact us <a href="%s" target="%s=">here</a> for pre-sales and premium support.',
|
64 |
+
WPRSS_TEXT_DOMAIN
|
65 |
+
),
|
66 |
+
"https://www.wprssaggregator.com/contact/",
|
67 |
+
"wpra-premium-contact-us-form"
|
68 |
+
);
|
69 |
+
}
|
70 |
+
|
71 |
/**
|
72 |
* Print the premium help section with inline support form.
|
73 |
*
|
74 |
+
* (Currently unused)
|
75 |
+
*
|
76 |
* @since 4.7
|
77 |
*/
|
78 |
+
function wprss_premium_help_support_form() {
|
79 |
// Addon and license object, both detected in the below algorithm that searches for a
|
80 |
// premium addon that is activated with a valid license
|
81 |
$addon = null;
|
includes/libraries/EDD_licensing/EDD_SL_Plugin_Updater.php
CHANGED
File without changes
|
languages/wprss-es.mo
CHANGED
File without changes
|
languages/wprss-es.po
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: RebelCode, jeangalea, Mekku, xedin.unknown, markzahra
|
|
3 |
Plugin URI: https://www.wprssaggregator.com
|
4 |
Tags: RSS import, RSS aggregator, autoblog, content curation, feed to post
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.9.
|
7 |
Requires PHP: 5.3.9
|
8 |
-
Stable tag: 4.11.
|
9 |
License: GPLv3
|
10 |
|
11 |
WP RSS Aggregator is the most comprehensive RSS feed importer and autoblogging plugin for WordPress with premium add-ons for additional functionality.
|
@@ -243,6 +243,9 @@ Our complete documentation with FAQs included can be found on our dedicated [doc
|
|
243 |
|
244 |
== Changelog ==
|
245 |
|
|
|
|
|
|
|
246 |
= 4.11.2 (2017-09-18) =
|
247 |
* Added 2 new general settings for item import order and per-import limit.
|
248 |
* Cosmetic and documentation improvements.
|
3 |
Plugin URI: https://www.wprssaggregator.com
|
4 |
Tags: RSS import, RSS aggregator, autoblog, content curation, feed to post
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.9.6
|
7 |
Requires PHP: 5.3.9
|
8 |
+
Stable tag: 4.11.3
|
9 |
License: GPLv3
|
10 |
|
11 |
WP RSS Aggregator is the most comprehensive RSS feed importer and autoblogging plugin for WordPress with premium add-ons for additional functionality.
|
243 |
|
244 |
== Changelog ==
|
245 |
|
246 |
+
= 4.11.3 (2018-05-23) =
|
247 |
+
* Updated Help & Support page.
|
248 |
+
|
249 |
= 4.11.2 (2017-09-18) =
|
250 |
* Added 2 new general settings for item import order and per-import limit.
|
251 |
* Cosmetic and documentation improvements.
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit752c44451553503fd7f25c101a05281f::getLoader();
|
vendor/composer/autoload_psr4.php
CHANGED
@@ -7,7 +7,7 @@ $baseDir = dirname($vendorDir);
|
|
7 |
|
8 |
return array(
|
9 |
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
|
10 |
-
'Interop\\Container\\' => array($vendorDir . '/container-interop/
|
11 |
'Dhii\\Stats\\' => array($vendorDir . '/dhii/stats-interface/src', $vendorDir . '/dhii/stats-abstract/src'),
|
12 |
'Dhii\\Di\\' => array($vendorDir . '/dhii/di-interface/src', $vendorDir . '/dhii/di-abstract/src', $vendorDir . '/dhii/di/src'),
|
13 |
'Dhii\\Collection\\' => array($vendorDir . '/dhii/collections-interface/src', $vendorDir . '/dhii/collections-abstract-base/src', $vendorDir . '/dhii/collections-abstract/src'),
|
7 |
|
8 |
return array(
|
9 |
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
|
10 |
+
'Interop\\Container\\' => array($vendorDir . '/container-interop/container-interop/src/Interop/Container', $vendorDir . '/container-interop/service-provider/src'),
|
11 |
'Dhii\\Stats\\' => array($vendorDir . '/dhii/stats-interface/src', $vendorDir . '/dhii/stats-abstract/src'),
|
12 |
'Dhii\\Di\\' => array($vendorDir . '/dhii/di-interface/src', $vendorDir . '/dhii/di-abstract/src', $vendorDir . '/dhii/di/src'),
|
13 |
'Dhii\\Collection\\' => array($vendorDir . '/dhii/collections-interface/src', $vendorDir . '/dhii/collections-abstract-base/src', $vendorDir . '/dhii/collections-abstract/src'),
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit4e5092596f60e6fafae6872332cd0798
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit752c44451553503fd7f25c101a05281f
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit752c44451553503fd7f25c101a05281f', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit752c44451553503fd7f25c101a05281f', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit752c44451553503fd7f25c101a05281f::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'P' =>
|
@@ -30,8 +30,8 @@ class ComposerStaticInit4e5092596f60e6fafae6872332cd0798
|
|
30 |
),
|
31 |
'Interop\\Container\\' =>
|
32 |
array (
|
33 |
-
0 => __DIR__ . '/..' . '/container-interop/
|
34 |
-
1 => __DIR__ . '/..' . '/container-interop/
|
35 |
),
|
36 |
'Dhii\\Stats\\' =>
|
37 |
array (
|
@@ -55,8 +55,8 @@ class ComposerStaticInit4e5092596f60e6fafae6872332cd0798
|
|
55 |
public static function getInitializer(ClassLoader $loader)
|
56 |
{
|
57 |
return \Closure::bind(function () use ($loader) {
|
58 |
-
$loader->prefixLengthsPsr4 =
|
59 |
-
$loader->prefixDirsPsr4 =
|
60 |
|
61 |
}, null, ClassLoader::class);
|
62 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit752c44451553503fd7f25c101a05281f
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'P' =>
|
30 |
),
|
31 |
'Interop\\Container\\' =>
|
32 |
array (
|
33 |
+
0 => __DIR__ . '/..' . '/container-interop/container-interop/src/Interop/Container',
|
34 |
+
1 => __DIR__ . '/..' . '/container-interop/service-provider/src',
|
35 |
),
|
36 |
'Dhii\\Stats\\' =>
|
37 |
array (
|
55 |
public static function getInitializer(ClassLoader $loader)
|
56 |
{
|
57 |
return \Closure::bind(function () use ($loader) {
|
58 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit752c44451553503fd7f25c101a05281f::$prefixLengthsPsr4;
|
59 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit752c44451553503fd7f25c101a05281f::$prefixDirsPsr4;
|
60 |
|
61 |
}, null, ClassLoader::class);
|
62 |
}
|
vendor/composer/installed.json
CHANGED
@@ -216,6 +216,90 @@
|
|
216 |
],
|
217 |
"description": "A collections library"
|
218 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
{
|
220 |
"name": "container-interop/service-provider",
|
221 |
"version": "v0.3.0",
|
@@ -397,89 +481,5 @@
|
|
397 |
"dependency injection",
|
398 |
"di"
|
399 |
]
|
400 |
-
},
|
401 |
-
{
|
402 |
-
"name": "psr/container",
|
403 |
-
"version": "dev-master",
|
404 |
-
"version_normalized": "9999999-dev",
|
405 |
-
"source": {
|
406 |
-
"type": "git",
|
407 |
-
"url": "https://github.com/php-fig/container.git",
|
408 |
-
"reference": "2cc4a01788191489dc7459446ba832fa79a216a7"
|
409 |
-
},
|
410 |
-
"dist": {
|
411 |
-
"type": "zip",
|
412 |
-
"url": "https://api.github.com/repos/php-fig/container/zipball/2cc4a01788191489dc7459446ba832fa79a216a7",
|
413 |
-
"reference": "2cc4a01788191489dc7459446ba832fa79a216a7",
|
414 |
-
"shasum": ""
|
415 |
-
},
|
416 |
-
"require": {
|
417 |
-
"php": ">=5.3.0"
|
418 |
-
},
|
419 |
-
"time": "2017-06-28 15:35:32",
|
420 |
-
"type": "library",
|
421 |
-
"extra": {
|
422 |
-
"branch-alias": {
|
423 |
-
"dev-master": "1.0.x-dev"
|
424 |
-
}
|
425 |
-
},
|
426 |
-
"installation-source": "dist",
|
427 |
-
"autoload": {
|
428 |
-
"psr-4": {
|
429 |
-
"Psr\\Container\\": "src/"
|
430 |
-
}
|
431 |
-
},
|
432 |
-
"notification-url": "https://packagist.org/downloads/",
|
433 |
-
"license": [
|
434 |
-
"MIT"
|
435 |
-
],
|
436 |
-
"authors": [
|
437 |
-
{
|
438 |
-
"name": "PHP-FIG",
|
439 |
-
"homepage": "http://www.php-fig.org/"
|
440 |
-
}
|
441 |
-
],
|
442 |
-
"description": "Common Container Interface (PHP FIG PSR-11)",
|
443 |
-
"homepage": "https://github.com/php-fig/container",
|
444 |
-
"keywords": [
|
445 |
-
"PSR-11",
|
446 |
-
"container",
|
447 |
-
"container-interface",
|
448 |
-
"container-interop",
|
449 |
-
"psr"
|
450 |
-
]
|
451 |
-
},
|
452 |
-
{
|
453 |
-
"name": "container-interop/container-interop",
|
454 |
-
"version": "1.2.0",
|
455 |
-
"version_normalized": "1.2.0.0",
|
456 |
-
"source": {
|
457 |
-
"type": "git",
|
458 |
-
"url": "https://github.com/container-interop/container-interop.git",
|
459 |
-
"reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
|
460 |
-
},
|
461 |
-
"dist": {
|
462 |
-
"type": "zip",
|
463 |
-
"url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
|
464 |
-
"reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
|
465 |
-
"shasum": ""
|
466 |
-
},
|
467 |
-
"require": {
|
468 |
-
"psr/container": "^1.0"
|
469 |
-
},
|
470 |
-
"time": "2017-02-14 19:40:03",
|
471 |
-
"type": "library",
|
472 |
-
"installation-source": "dist",
|
473 |
-
"autoload": {
|
474 |
-
"psr-4": {
|
475 |
-
"Interop\\Container\\": "src/Interop/Container/"
|
476 |
-
}
|
477 |
-
},
|
478 |
-
"notification-url": "https://packagist.org/downloads/",
|
479 |
-
"license": [
|
480 |
-
"MIT"
|
481 |
-
],
|
482 |
-
"description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
|
483 |
-
"homepage": "https://github.com/container-interop/container-interop"
|
484 |
}
|
485 |
]
|
216 |
],
|
217 |
"description": "A collections library"
|
218 |
},
|
219 |
+
{
|
220 |
+
"name": "psr/container",
|
221 |
+
"version": "dev-master",
|
222 |
+
"version_normalized": "9999999-dev",
|
223 |
+
"source": {
|
224 |
+
"type": "git",
|
225 |
+
"url": "https://github.com/php-fig/container.git",
|
226 |
+
"reference": "2cc4a01788191489dc7459446ba832fa79a216a7"
|
227 |
+
},
|
228 |
+
"dist": {
|
229 |
+
"type": "zip",
|
230 |
+
"url": "https://api.github.com/repos/php-fig/container/zipball/2cc4a01788191489dc7459446ba832fa79a216a7",
|
231 |
+
"reference": "2cc4a01788191489dc7459446ba832fa79a216a7",
|
232 |
+
"shasum": ""
|
233 |
+
},
|
234 |
+
"require": {
|
235 |
+
"php": ">=5.3.0"
|
236 |
+
},
|
237 |
+
"time": "2017-06-28 15:35:32",
|
238 |
+
"type": "library",
|
239 |
+
"extra": {
|
240 |
+
"branch-alias": {
|
241 |
+
"dev-master": "1.0.x-dev"
|
242 |
+
}
|
243 |
+
},
|
244 |
+
"installation-source": "dist",
|
245 |
+
"autoload": {
|
246 |
+
"psr-4": {
|
247 |
+
"Psr\\Container\\": "src/"
|
248 |
+
}
|
249 |
+
},
|
250 |
+
"notification-url": "https://packagist.org/downloads/",
|
251 |
+
"license": [
|
252 |
+
"MIT"
|
253 |
+
],
|
254 |
+
"authors": [
|
255 |
+
{
|
256 |
+
"name": "PHP-FIG",
|
257 |
+
"homepage": "http://www.php-fig.org/"
|
258 |
+
}
|
259 |
+
],
|
260 |
+
"description": "Common Container Interface (PHP FIG PSR-11)",
|
261 |
+
"homepage": "https://github.com/php-fig/container",
|
262 |
+
"keywords": [
|
263 |
+
"PSR-11",
|
264 |
+
"container",
|
265 |
+
"container-interface",
|
266 |
+
"container-interop",
|
267 |
+
"psr"
|
268 |
+
]
|
269 |
+
},
|
270 |
+
{
|
271 |
+
"name": "container-interop/container-interop",
|
272 |
+
"version": "1.2.0",
|
273 |
+
"version_normalized": "1.2.0.0",
|
274 |
+
"source": {
|
275 |
+
"type": "git",
|
276 |
+
"url": "https://github.com/container-interop/container-interop.git",
|
277 |
+
"reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
|
278 |
+
},
|
279 |
+
"dist": {
|
280 |
+
"type": "zip",
|
281 |
+
"url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
|
282 |
+
"reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
|
283 |
+
"shasum": ""
|
284 |
+
},
|
285 |
+
"require": {
|
286 |
+
"psr/container": "^1.0"
|
287 |
+
},
|
288 |
+
"time": "2017-02-14 19:40:03",
|
289 |
+
"type": "library",
|
290 |
+
"installation-source": "dist",
|
291 |
+
"autoload": {
|
292 |
+
"psr-4": {
|
293 |
+
"Interop\\Container\\": "src/Interop/Container/"
|
294 |
+
}
|
295 |
+
},
|
296 |
+
"notification-url": "https://packagist.org/downloads/",
|
297 |
+
"license": [
|
298 |
+
"MIT"
|
299 |
+
],
|
300 |
+
"description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
|
301 |
+
"homepage": "https://github.com/container-interop/container-interop"
|
302 |
+
},
|
303 |
{
|
304 |
"name": "container-interop/service-provider",
|
305 |
"version": "v0.3.0",
|
481 |
"dependency injection",
|
482 |
"di"
|
483 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
}
|
485 |
]
|
vendor/container-interop/container-interop/.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
composer.lock
|
2 |
+
composer.phar
|
3 |
+
/vendor/
|
vendor/container-interop/service-provider/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
/composer.lock
|
2 |
+
/vendor/
|
vendor/dhii/collections-abstract-base/.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
/vendor/
|
2 |
+
/nbproject/private/
|
3 |
+
/test/coverage/
|
4 |
+
/test/log/
|
vendor/dhii/collections-abstract/.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
/nbproject/private/
|
2 |
+
/vendor/
|
3 |
+
/test/coverage/
|
4 |
+
/test/log/
|
vendor/dhii/collections-interface/.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
/vendor/
|
2 |
+
/nbproject/private/
|
3 |
+
/test/log/
|
4 |
+
/test/coverage/
|
vendor/dhii/di-abstract/.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
/vendor/
|
2 |
+
/nbproject/private/
|
3 |
+
/test/coverage/
|
4 |
+
/test/log/
|
vendor/dhii/di-interface/.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
/vendor/
|
2 |
+
/nbproject/private/
|
3 |
+
/test/coverage/
|
4 |
+
/test/log/
|
vendor/dhii/di/.gitattributes
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
test export-ignore
|
2 |
+
nbproject export-ignore
|
3 |
+
.codeclimate.yml export-ignore
|
4 |
+
.php_cs export-ignore
|
5 |
+
.travis.yml export-ignore
|
6 |
+
composer.lock export-ignore
|
7 |
+
phpunit.xml export-ignore
|
vendor/dhii/di/.gitignore
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/vendor/
|
2 |
+
/nbproject/private/
|
3 |
+
/test/coverage/
|
4 |
+
/test/log/
|
5 |
+
/build/
|
vendor/dhii/stats-abstract/.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
/vendor/
|
2 |
+
/nbproject/private/
|
3 |
+
/test/log/
|
4 |
+
/test/coverage/
|
vendor/dhii/stats-interface/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
/vendor/
|
2 |
+
/nbproject/private/
|
vendor/psr/container/.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
composer.lock
|
2 |
+
composer.phar
|
3 |
+
/vendor/
|
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.
|
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.3
|
7 |
* Author: RebelCode
|
8 |
* Author URI: https://www.wprssaggregator.com
|
9 |
* Text Domain: wprss
|
30 |
|
31 |
/**
|
32 |
* @package WPRSSAggregator
|
33 |
+
* @version 4.11.3
|
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.3', true );
|
48 |
|
49 |
if( !defined( 'WPRSS_WP_MIN_VERSION' ) )
|
50 |
define( 'WPRSS_WP_MIN_VERSION', '4.0', true );
|