Version Description
Download this release
Release Info
| Developer | pressshack |
| Plugin | |
| Version | 2.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 2.1.0 to 2.1.1
- EmbedPress/Plugins/Html/Field.php +0 -1
- EmbedPress/Plugins/Plugin.php +0 -1
- assets/css/embedpress.css +6 -0
- composer.json +39 -0
- composer.lock +250 -0
- embedpress.php +1 -1
- includes.php +1 -1
- readme.txt +7 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_classmap.php +1 -1
- vendor/composer/autoload_files.php +1 -1
- vendor/composer/autoload_namespaces.php +1 -1
- vendor/composer/autoload_psr4.php +2 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +9 -4
- vendor/composer/installed.json +33 -4
EmbedPress/Plugins/Html/Field.php
CHANGED
|
@@ -179,7 +179,6 @@ class Field
|
|
| 179 |
$html .= '<br/><br/><strong>Status: <span class="'. $licenseStatusClass .'">'. __($licenseStatusMessage) .'</span>.</strong><br/><br/>';
|
| 180 |
|
| 181 |
if (!(isset($options['license']['status']) && $options['license']['status'] === 'valid')) {
|
| 182 |
-
$html .= '<button type="submit" class="button-secondary">' . __('Activate License') . '</button> ';
|
| 183 |
$html .= '<a href="'. EMBEDPRESS_LICENSES_MORE_INFO_URL .'" target="_blank" class="ep-small-link ep-small-spacing" rel="noopener noreferrer" style="display: inline-block; margin-left: 20px;" title="'. __('Click here to read more about licenses.') .'">' . __('More information') . '</a>';
|
| 184 |
$html .= '<br/><br/>';
|
| 185 |
}
|
| 179 |
$html .= '<br/><br/><strong>Status: <span class="'. $licenseStatusClass .'">'. __($licenseStatusMessage) .'</span>.</strong><br/><br/>';
|
| 180 |
|
| 181 |
if (!(isset($options['license']['status']) && $options['license']['status'] === 'valid')) {
|
|
|
|
| 182 |
$html .= '<a href="'. EMBEDPRESS_LICENSES_MORE_INFO_URL .'" target="_blank" class="ep-small-link ep-small-spacing" rel="noopener noreferrer" style="display: inline-block; margin-left: 20px;" title="'. __('Click here to read more about licenses.') .'">' . __('More information') . '</a>';
|
| 183 |
$html .= '<br/><br/>';
|
| 184 |
}
|
EmbedPress/Plugins/Plugin.php
CHANGED
|
@@ -339,7 +339,6 @@ abstract class Plugin
|
|
| 339 |
$licenseManager = static::$eddContainer['license_manager'];
|
| 340 |
|
| 341 |
$licenseNewStatus = $licenseManager->validate_license_key($licenseKey, static::EDD_ID);
|
| 342 |
-
var_dump($licenseNewStatus);die;
|
| 343 |
|
| 344 |
return $licenseNewStatus;
|
| 345 |
}
|
| 339 |
$licenseManager = static::$eddContainer['license_manager'];
|
| 340 |
|
| 341 |
$licenseNewStatus = $licenseManager->validate_license_key($licenseKey, static::EDD_ID);
|
|
|
|
| 342 |
|
| 343 |
return $licenseNewStatus;
|
| 344 |
}
|
assets/css/embedpress.css
CHANGED
|
@@ -20,6 +20,7 @@
|
|
| 20 |
.ose-animoto.responsive,
|
| 21 |
.ose-soundcloud.responsive,
|
| 22 |
.ose-videojug.responsive,
|
|
|
|
| 23 |
.ose-issuu.responsive {
|
| 24 |
overflow: hidden;
|
| 25 |
position: relative;
|
|
@@ -116,3 +117,8 @@
|
|
| 116 |
-webkit-overflow-scrolling: touch;
|
| 117 |
overflow-y: auto;
|
| 118 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
.ose-animoto.responsive,
|
| 21 |
.ose-soundcloud.responsive,
|
| 22 |
.ose-videojug.responsive,
|
| 23 |
+
.ose-facebook.responsive,
|
| 24 |
.ose-issuu.responsive {
|
| 25 |
overflow: hidden;
|
| 26 |
position: relative;
|
| 117 |
-webkit-overflow-scrolling: touch;
|
| 118 |
overflow-y: auto;
|
| 119 |
}
|
| 120 |
+
|
| 121 |
+
.ose-facebook.responsive iframe {
|
| 122 |
+
padding-bottom: 0;
|
| 123 |
+
width: 100%;
|
| 124 |
+
}
|
composer.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "embedpress/embedpress",
|
| 3 |
+
"type": "wordpress-plugin",
|
| 4 |
+
"license": "GPL-2",
|
| 5 |
+
"authors": [
|
| 6 |
+
{
|
| 7 |
+
"name": "EmbedPress",
|
| 8 |
+
"email": "help@embedpress.com"
|
| 9 |
+
}
|
| 10 |
+
],
|
| 11 |
+
"repositories": [
|
| 12 |
+
{
|
| 13 |
+
"type": "git",
|
| 14 |
+
"url": "https://github.com/OSTraining/WordPress-Plugin-Builder"
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"type": "git",
|
| 18 |
+
"url": "https://github.com/OSTraining/WordPress-EDD-License-Integration"
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"type": "git",
|
| 22 |
+
"url": "https://github.com/OSTraining/EDD-License-handler"
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"type": "git",
|
| 26 |
+
"url": "https://github.com/OSTraining/Embera"
|
| 27 |
+
}
|
| 28 |
+
],
|
| 29 |
+
"config": {
|
| 30 |
+
"preferred-install": "dist"
|
| 31 |
+
},
|
| 32 |
+
"minimum-stability": "stable",
|
| 33 |
+
"require": {
|
| 34 |
+
"pimple/pimple": "~3.0",
|
| 35 |
+
"ostraining/embera": "*",
|
| 36 |
+
"publishpress/wordpress-edd-license-integration": "~2.1",
|
| 37 |
+
"publishpress/wordpress-plugin-builder": "~2"
|
| 38 |
+
}
|
| 39 |
+
}
|
composer.lock
ADDED
|
@@ -0,0 +1,250 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_readme": [
|
| 3 |
+
"This file locks the dependencies of your project to a known state",
|
| 4 |
+
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
| 5 |
+
"This file is @generated automatically"
|
| 6 |
+
],
|
| 7 |
+
"content-hash": "8344870f1d246cabf761986482551523",
|
| 8 |
+
"packages": [
|
| 9 |
+
{
|
| 10 |
+
"name": "ostraining/embera",
|
| 11 |
+
"version": "1.9.3",
|
| 12 |
+
"source": {
|
| 13 |
+
"type": "git",
|
| 14 |
+
"url": "https://github.com/OSTraining/Embera",
|
| 15 |
+
"reference": "51d4c22303680b4434c3c0d3a34694c0ebbca1a1"
|
| 16 |
+
},
|
| 17 |
+
"require": {
|
| 18 |
+
"php": ">=5.3"
|
| 19 |
+
},
|
| 20 |
+
"type": "library",
|
| 21 |
+
"autoload": {
|
| 22 |
+
"psr-0": {
|
| 23 |
+
"Embera": "Lib/"
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
"license": [
|
| 27 |
+
"MIT"
|
| 28 |
+
],
|
| 29 |
+
"authors": [
|
| 30 |
+
{
|
| 31 |
+
"name": "Michael Pratt",
|
| 32 |
+
"email": "pratt@hablarmierda.net",
|
| 33 |
+
"homepage": "http://www.michael-pratt.com",
|
| 34 |
+
"role": "Author/Developer"
|
| 35 |
+
}
|
| 36 |
+
],
|
| 37 |
+
"description": "Oembed consumer library, that gives information about urls. It helps you replace urls to 60+ sites like youtube or vimeo, with their html embed code.",
|
| 38 |
+
"homepage": "https://github.com/OSTraining/Embera",
|
| 39 |
+
"keywords": [
|
| 40 |
+
"Auto embed",
|
| 41 |
+
"Embed",
|
| 42 |
+
"Embed Text",
|
| 43 |
+
"Instagram",
|
| 44 |
+
"Oembed",
|
| 45 |
+
"Twitter",
|
| 46 |
+
"Url Embed",
|
| 47 |
+
"Vimeo",
|
| 48 |
+
"Vine",
|
| 49 |
+
"Youtube"
|
| 50 |
+
],
|
| 51 |
+
"time": "2016-07-12T20:35:30+00:00"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"name": "pimple/pimple",
|
| 55 |
+
"version": "v3.2.3",
|
| 56 |
+
"source": {
|
| 57 |
+
"type": "git",
|
| 58 |
+
"url": "https://github.com/silexphp/Pimple.git",
|
| 59 |
+
"reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
|
| 60 |
+
},
|
| 61 |
+
"dist": {
|
| 62 |
+
"type": "zip",
|
| 63 |
+
"url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
|
| 64 |
+
"reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
|
| 65 |
+
"shasum": ""
|
| 66 |
+
},
|
| 67 |
+
"require": {
|
| 68 |
+
"php": ">=5.3.0",
|
| 69 |
+
"psr/container": "^1.0"
|
| 70 |
+
},
|
| 71 |
+
"require-dev": {
|
| 72 |
+
"symfony/phpunit-bridge": "^3.2"
|
| 73 |
+
},
|
| 74 |
+
"type": "library",
|
| 75 |
+
"extra": {
|
| 76 |
+
"branch-alias": {
|
| 77 |
+
"dev-master": "3.2.x-dev"
|
| 78 |
+
}
|
| 79 |
+
},
|
| 80 |
+
"autoload": {
|
| 81 |
+
"psr-0": {
|
| 82 |
+
"Pimple": "src/"
|
| 83 |
+
}
|
| 84 |
+
},
|
| 85 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 86 |
+
"license": [
|
| 87 |
+
"MIT"
|
| 88 |
+
],
|
| 89 |
+
"authors": [
|
| 90 |
+
{
|
| 91 |
+
"name": "Fabien Potencier",
|
| 92 |
+
"email": "fabien@symfony.com"
|
| 93 |
+
}
|
| 94 |
+
],
|
| 95 |
+
"description": "Pimple, a simple Dependency Injection Container",
|
| 96 |
+
"homepage": "http://pimple.sensiolabs.org",
|
| 97 |
+
"keywords": [
|
| 98 |
+
"container",
|
| 99 |
+
"dependency injection"
|
| 100 |
+
],
|
| 101 |
+
"time": "2018-01-21T07:42:36+00:00"
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"name": "psr/container",
|
| 105 |
+
"version": "1.0.0",
|
| 106 |
+
"source": {
|
| 107 |
+
"type": "git",
|
| 108 |
+
"url": "https://github.com/php-fig/container.git",
|
| 109 |
+
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
|
| 110 |
+
},
|
| 111 |
+
"dist": {
|
| 112 |
+
"type": "zip",
|
| 113 |
+
"url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
| 114 |
+
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
| 115 |
+
"shasum": ""
|
| 116 |
+
},
|
| 117 |
+
"require": {
|
| 118 |
+
"php": ">=5.3.0"
|
| 119 |
+
},
|
| 120 |
+
"type": "library",
|
| 121 |
+
"extra": {
|
| 122 |
+
"branch-alias": {
|
| 123 |
+
"dev-master": "1.0.x-dev"
|
| 124 |
+
}
|
| 125 |
+
},
|
| 126 |
+
"autoload": {
|
| 127 |
+
"psr-4": {
|
| 128 |
+
"Psr\\Container\\": "src/"
|
| 129 |
+
}
|
| 130 |
+
},
|
| 131 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 132 |
+
"license": [
|
| 133 |
+
"MIT"
|
| 134 |
+
],
|
| 135 |
+
"authors": [
|
| 136 |
+
{
|
| 137 |
+
"name": "PHP-FIG",
|
| 138 |
+
"homepage": "http://www.php-fig.org/"
|
| 139 |
+
}
|
| 140 |
+
],
|
| 141 |
+
"description": "Common Container Interface (PHP FIG PSR-11)",
|
| 142 |
+
"homepage": "https://github.com/php-fig/container",
|
| 143 |
+
"keywords": [
|
| 144 |
+
"PSR-11",
|
| 145 |
+
"container",
|
| 146 |
+
"container-interface",
|
| 147 |
+
"container-interop",
|
| 148 |
+
"psr"
|
| 149 |
+
],
|
| 150 |
+
"time": "2017-02-14T16:28:37+00:00"
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"name": "publishpress/edd-license-handler",
|
| 154 |
+
"version": "1.6.14.3",
|
| 155 |
+
"source": {
|
| 156 |
+
"type": "git",
|
| 157 |
+
"url": "https://github.com/OSTraining/EDD-License-handler",
|
| 158 |
+
"reference": "0cf8447b2dd73d4a916b2bdcf1e364c89218b25d"
|
| 159 |
+
},
|
| 160 |
+
"type": "library",
|
| 161 |
+
"autoload": {
|
| 162 |
+
"files": [
|
| 163 |
+
"EDD_License_Handler.php",
|
| 164 |
+
"EDD_SL_Plugin_Updater.php"
|
| 165 |
+
]
|
| 166 |
+
},
|
| 167 |
+
"license": [
|
| 168 |
+
"GPL-2"
|
| 169 |
+
],
|
| 170 |
+
"authors": [
|
| 171 |
+
{
|
| 172 |
+
"name": "EasyDigitalDownloads",
|
| 173 |
+
"email": "contact@easydigitaldownloads.com"
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"name": "PublishPress",
|
| 177 |
+
"email": "help@publishpress.com"
|
| 178 |
+
}
|
| 179 |
+
],
|
| 180 |
+
"time": "2018-02-07T10:08:34+00:00"
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"name": "publishpress/wordpress-edd-license-integration",
|
| 184 |
+
"version": "2.2.0",
|
| 185 |
+
"source": {
|
| 186 |
+
"type": "git",
|
| 187 |
+
"url": "https://github.com/OSTraining/WordPress-EDD-License-Integration",
|
| 188 |
+
"reference": "69541b06921821bdf93db37d57cef4853745e39d"
|
| 189 |
+
},
|
| 190 |
+
"require": {
|
| 191 |
+
"pimple/pimple": "~3.2",
|
| 192 |
+
"publishpress/edd-license-handler": "~1.6"
|
| 193 |
+
},
|
| 194 |
+
"require-dev": {
|
| 195 |
+
"lucatume/wp-browser": "~1.22"
|
| 196 |
+
},
|
| 197 |
+
"type": "library",
|
| 198 |
+
"autoload": {
|
| 199 |
+
"psr-4": {
|
| 200 |
+
"PublishPress\\EDD_License\\Core\\": "src/core/"
|
| 201 |
+
}
|
| 202 |
+
},
|
| 203 |
+
"license": [
|
| 204 |
+
"GPL-2"
|
| 205 |
+
],
|
| 206 |
+
"authors": [
|
| 207 |
+
{
|
| 208 |
+
"name": "PublishPress",
|
| 209 |
+
"email": "help@publishpress.com"
|
| 210 |
+
}
|
| 211 |
+
],
|
| 212 |
+
"time": "2018-03-01T18:52:52+00:00"
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"name": "publishpress/wordpress-plugin-builder",
|
| 216 |
+
"version": "2.1.4",
|
| 217 |
+
"source": {
|
| 218 |
+
"type": "git",
|
| 219 |
+
"url": "https://github.com/OSTraining/WordPress-Plugin-Builder",
|
| 220 |
+
"reference": "6658ad5e35ec32877ee941e3680702bfb86986e5"
|
| 221 |
+
},
|
| 222 |
+
"type": "library",
|
| 223 |
+
"autoload": {
|
| 224 |
+
"psr-4": {
|
| 225 |
+
"PublishPress\\Builder\\": "src/"
|
| 226 |
+
}
|
| 227 |
+
},
|
| 228 |
+
"license": [
|
| 229 |
+
"GPL-2.0+"
|
| 230 |
+
],
|
| 231 |
+
"authors": [
|
| 232 |
+
{
|
| 233 |
+
"name": "PublishPress",
|
| 234 |
+
"email": "help@publishpress.com",
|
| 235 |
+
"homepage": "https://publishpress.com"
|
| 236 |
+
}
|
| 237 |
+
],
|
| 238 |
+
"description": "Base class for WordPress plugin builder",
|
| 239 |
+
"time": "2018-03-01T22:09:46+00:00"
|
| 240 |
+
}
|
| 241 |
+
],
|
| 242 |
+
"packages-dev": [],
|
| 243 |
+
"aliases": [],
|
| 244 |
+
"minimum-stability": "stable",
|
| 245 |
+
"stability-flags": [],
|
| 246 |
+
"prefer-stable": false,
|
| 247 |
+
"prefer-lowest": false,
|
| 248 |
+
"platform": [],
|
| 249 |
+
"platform-dev": []
|
| 250 |
+
}
|
embedpress.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* Description: WordPress supports around 35 embed sources, but PublishPress Embeds adds over 40 more, including Facebook, Google Maps, Google Docs, UStream! Just use the URL!
|
| 6 |
* Author: EmbedPress
|
| 7 |
* Author URI: http://embedpress.com
|
| 8 |
-
* Version:
|
| 9 |
* Text Domain: embedpress
|
| 10 |
* Domain Path: /languages
|
| 11 |
*
|
| 5 |
* Description: WordPress supports around 35 embed sources, but PublishPress Embeds adds over 40 more, including Facebook, Google Maps, Google Docs, UStream! Just use the URL!
|
| 6 |
* Author: EmbedPress
|
| 7 |
* Author URI: http://embedpress.com
|
| 8 |
+
* Version: 2.1.1
|
| 9 |
* Text Domain: embedpress
|
| 10 |
* Domain Path: /languages
|
| 11 |
*
|
includes.php
CHANGED
|
@@ -21,7 +21,7 @@ if (!defined('EMBEDPRESS_PLG_NAME')) {
|
|
| 21 |
}
|
| 22 |
|
| 23 |
if (!defined('EMBEDPRESS_PLG_VERSION')) {
|
| 24 |
-
define('EMBEDPRESS_PLG_VERSION', "2.1.
|
| 25 |
}
|
| 26 |
|
| 27 |
if (!defined('EMBEDPRESS_ROOT')) {
|
| 21 |
}
|
| 22 |
|
| 23 |
if (!defined('EMBEDPRESS_PLG_VERSION')) {
|
| 24 |
+
define('EMBEDPRESS_PLG_VERSION', "2.1.1");
|
| 25 |
}
|
| 26 |
|
| 27 |
if (!defined('EMBEDPRESS_ROOT')) {
|
readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ Author URI: https://embedpress.com
|
|
| 5 |
Tags: YouTube, Google, Facebook, Wistia, Vimeo
|
| 6 |
Requires at least: 4.6
|
| 7 |
Tested up to: 4.9.4
|
| 8 |
-
Stable tag: 2.1.
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 11 |
|
|
@@ -184,6 +184,12 @@ Not at all. You can set up everything your team needs without any coding knowled
|
|
| 184 |
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
| 185 |
and this project adheres to [Semantic Versioning](http://semver.org/).
|
| 186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
= [2.1.0] - 2018-02-08 =
|
| 188 |
|
| 189 |
*Changed:*
|
| 5 |
Tags: YouTube, Google, Facebook, Wistia, Vimeo
|
| 6 |
Requires at least: 4.6
|
| 7 |
Tested up to: 4.9.4
|
| 8 |
+
Stable tag: 2.1.1
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 11 |
|
| 184 |
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
| 185 |
and this project adheres to [Semantic Versioning](http://semver.org/).
|
| 186 |
|
| 187 |
+
= [2.1.1] - 2018-04-18 =
|
| 188 |
+
|
| 189 |
+
*Fixed:*
|
| 190 |
+
|
| 191 |
+
* Fixed validation of license key for add-ons;
|
| 192 |
+
|
| 193 |
= [2.1.0] - 2018-02-08 =
|
| 194 |
|
| 195 |
*Changed:*
|
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 ComposerAutoloaderInitfa112be3a45897b53eb16b7ddc526d6f::getLoader();
|
vendor/composer/autoload_classmap.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
// autoload_classmap.php @generated by Composer
|
| 4 |
|
| 5 |
$vendorDir = dirname(dirname(__FILE__));
|
| 6 |
-
$baseDir = dirname(
|
| 7 |
|
| 8 |
return array(
|
| 9 |
);
|
| 3 |
// autoload_classmap.php @generated by Composer
|
| 4 |
|
| 5 |
$vendorDir = dirname(dirname(__FILE__));
|
| 6 |
+
$baseDir = dirname($vendorDir);
|
| 7 |
|
| 8 |
return array(
|
| 9 |
);
|
vendor/composer/autoload_files.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
// autoload_files.php @generated by Composer
|
| 4 |
|
| 5 |
$vendorDir = dirname(dirname(__FILE__));
|
| 6 |
-
$baseDir = dirname(
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'46a06f2cec651588901bf1ff51ef5979' => $vendorDir . '/publishpress/edd-license-handler/EDD_License_Handler.php',
|
| 3 |
// autoload_files.php @generated by Composer
|
| 4 |
|
| 5 |
$vendorDir = dirname(dirname(__FILE__));
|
| 6 |
+
$baseDir = dirname($vendorDir);
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'46a06f2cec651588901bf1ff51ef5979' => $vendorDir . '/publishpress/edd-license-handler/EDD_License_Handler.php',
|
vendor/composer/autoload_namespaces.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
// autoload_namespaces.php @generated by Composer
|
| 4 |
|
| 5 |
$vendorDir = dirname(dirname(__FILE__));
|
| 6 |
-
$baseDir = dirname(
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'Pimple' => array($vendorDir . '/pimple/pimple/src'),
|
| 3 |
// autoload_namespaces.php @generated by Composer
|
| 4 |
|
| 5 |
$vendorDir = dirname(dirname(__FILE__));
|
| 6 |
+
$baseDir = dirname($vendorDir);
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'Pimple' => array($vendorDir . '/pimple/pimple/src'),
|
vendor/composer/autoload_psr4.php
CHANGED
|
@@ -3,9 +3,10 @@
|
|
| 3 |
// autoload_psr4.php @generated by Composer
|
| 4 |
|
| 5 |
$vendorDir = dirname(dirname(__FILE__));
|
| 6 |
-
$baseDir = dirname(
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'PublishPress\\EDD_License\\Core\\' => array($vendorDir . '/publishpress/wordpress-edd-license-integration/src/core'),
|
|
|
|
| 10 |
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
|
| 11 |
);
|
| 3 |
// autoload_psr4.php @generated by Composer
|
| 4 |
|
| 5 |
$vendorDir = dirname(dirname(__FILE__));
|
| 6 |
+
$baseDir = dirname($vendorDir);
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'PublishPress\\EDD_License\\Core\\' => array($vendorDir . '/publishpress/wordpress-edd-license-integration/src/core'),
|
| 10 |
+
'PublishPress\\Builder\\' => array($vendorDir . '/publishpress/wordpress-plugin-builder/src'),
|
| 11 |
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
|
| 12 |
);
|
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 ComposerAutoloaderInit7958360bac6330880191174e478899ed
|
|
| 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') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 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) {
|
|
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit7958360bac6330880191174e478899ed
|
|
| 48 |
$loader->register(true);
|
| 49 |
|
| 50 |
if ($useStaticLoader) {
|
| 51 |
-
$includeFiles = Composer\Autoload\
|
| 52 |
} else {
|
| 53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 54 |
}
|
| 55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 56 |
-
|
| 57 |
}
|
| 58 |
|
| 59 |
return $loader;
|
| 60 |
}
|
| 61 |
}
|
| 62 |
|
| 63 |
-
function
|
| 64 |
{
|
| 65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 66 |
require $file;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInitfa112be3a45897b53eb16b7ddc526d6f
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInitfa112be3a45897b53eb16b7ddc526d6f', 'loadClassLoader'), true, true);
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitfa112be3a45897b53eb16b7ddc526d6f', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 27 |
if ($useStaticLoader) {
|
| 28 |
require_once __DIR__ . '/autoload_static.php';
|
| 29 |
|
| 30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitfa112be3a45897b53eb16b7ddc526d6f::getInitializer($loader));
|
| 31 |
} else {
|
| 32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 33 |
foreach ($map as $namespace => $path) {
|
| 48 |
$loader->register(true);
|
| 49 |
|
| 50 |
if ($useStaticLoader) {
|
| 51 |
+
$includeFiles = Composer\Autoload\ComposerStaticInitfa112be3a45897b53eb16b7ddc526d6f::$files;
|
| 52 |
} else {
|
| 53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 54 |
}
|
| 55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 56 |
+
composerRequirefa112be3a45897b53eb16b7ddc526d6f($fileIdentifier, $file);
|
| 57 |
}
|
| 58 |
|
| 59 |
return $loader;
|
| 60 |
}
|
| 61 |
}
|
| 62 |
|
| 63 |
+
function composerRequirefa112be3a45897b53eb16b7ddc526d6f($fileIdentifier, $file)
|
| 64 |
{
|
| 65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 66 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'46a06f2cec651588901bf1ff51ef5979' => __DIR__ . '/..' . '/publishpress/edd-license-handler/EDD_License_Handler.php',
|
|
@@ -15,6 +15,7 @@ class ComposerStaticInit7958360bac6330880191174e478899ed
|
|
| 15 |
'P' =>
|
| 16 |
array (
|
| 17 |
'PublishPress\\EDD_License\\Core\\' => 30,
|
|
|
|
| 18 |
'Psr\\Container\\' => 14,
|
| 19 |
),
|
| 20 |
);
|
|
@@ -24,6 +25,10 @@ class ComposerStaticInit7958360bac6330880191174e478899ed
|
|
| 24 |
array (
|
| 25 |
0 => __DIR__ . '/..' . '/publishpress/wordpress-edd-license-integration/src/core',
|
| 26 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
'Psr\\Container\\' =>
|
| 28 |
array (
|
| 29 |
0 => __DIR__ . '/..' . '/psr/container/src',
|
|
@@ -50,9 +55,9 @@ class ComposerStaticInit7958360bac6330880191174e478899ed
|
|
| 50 |
public static function getInitializer(ClassLoader $loader)
|
| 51 |
{
|
| 52 |
return \Closure::bind(function () use ($loader) {
|
| 53 |
-
$loader->prefixLengthsPsr4 =
|
| 54 |
-
$loader->prefixDirsPsr4 =
|
| 55 |
-
$loader->prefixesPsr0 =
|
| 56 |
|
| 57 |
}, null, ClassLoader::class);
|
| 58 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInitfa112be3a45897b53eb16b7ddc526d6f
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'46a06f2cec651588901bf1ff51ef5979' => __DIR__ . '/..' . '/publishpress/edd-license-handler/EDD_License_Handler.php',
|
| 15 |
'P' =>
|
| 16 |
array (
|
| 17 |
'PublishPress\\EDD_License\\Core\\' => 30,
|
| 18 |
+
'PublishPress\\Builder\\' => 21,
|
| 19 |
'Psr\\Container\\' => 14,
|
| 20 |
),
|
| 21 |
);
|
| 25 |
array (
|
| 26 |
0 => __DIR__ . '/..' . '/publishpress/wordpress-edd-license-integration/src/core',
|
| 27 |
),
|
| 28 |
+
'PublishPress\\Builder\\' =>
|
| 29 |
+
array (
|
| 30 |
+
0 => __DIR__ . '/..' . '/publishpress/wordpress-plugin-builder/src',
|
| 31 |
+
),
|
| 32 |
'Psr\\Container\\' =>
|
| 33 |
array (
|
| 34 |
0 => __DIR__ . '/..' . '/psr/container/src',
|
| 55 |
public static function getInitializer(ClassLoader $loader)
|
| 56 |
{
|
| 57 |
return \Closure::bind(function () use ($loader) {
|
| 58 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitfa112be3a45897b53eb16b7ddc526d6f::$prefixLengthsPsr4;
|
| 59 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitfa112be3a45897b53eb16b7ddc526d6f::$prefixDirsPsr4;
|
| 60 |
+
$loader->prefixesPsr0 = ComposerStaticInitfa112be3a45897b53eb16b7ddc526d6f::$prefixesPsr0;
|
| 61 |
|
| 62 |
}, null, ClassLoader::class);
|
| 63 |
}
|
vendor/composer/installed.json
CHANGED
|
@@ -182,12 +182,12 @@
|
|
| 182 |
},
|
| 183 |
{
|
| 184 |
"name": "publishpress/wordpress-edd-license-integration",
|
| 185 |
-
"version": "2.
|
| 186 |
-
"version_normalized": "2.
|
| 187 |
"source": {
|
| 188 |
"type": "git",
|
| 189 |
"url": "https://github.com/OSTraining/WordPress-EDD-License-Integration",
|
| 190 |
-
"reference": "
|
| 191 |
},
|
| 192 |
"require": {
|
| 193 |
"pimple/pimple": "~3.2",
|
|
@@ -196,7 +196,7 @@
|
|
| 196 |
"require-dev": {
|
| 197 |
"lucatume/wp-browser": "~1.22"
|
| 198 |
},
|
| 199 |
-
"time": "2018-
|
| 200 |
"type": "library",
|
| 201 |
"installation-source": "source",
|
| 202 |
"autoload": {
|
|
@@ -213,5 +213,34 @@
|
|
| 213 |
"email": "help@publishpress.com"
|
| 214 |
}
|
| 215 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 216 |
}
|
| 217 |
]
|
| 182 |
},
|
| 183 |
{
|
| 184 |
"name": "publishpress/wordpress-edd-license-integration",
|
| 185 |
+
"version": "2.2.0",
|
| 186 |
+
"version_normalized": "2.2.0.0",
|
| 187 |
"source": {
|
| 188 |
"type": "git",
|
| 189 |
"url": "https://github.com/OSTraining/WordPress-EDD-License-Integration",
|
| 190 |
+
"reference": "69541b06921821bdf93db37d57cef4853745e39d"
|
| 191 |
},
|
| 192 |
"require": {
|
| 193 |
"pimple/pimple": "~3.2",
|
| 196 |
"require-dev": {
|
| 197 |
"lucatume/wp-browser": "~1.22"
|
| 198 |
},
|
| 199 |
+
"time": "2018-03-01T18:52:52+00:00",
|
| 200 |
"type": "library",
|
| 201 |
"installation-source": "source",
|
| 202 |
"autoload": {
|
| 213 |
"email": "help@publishpress.com"
|
| 214 |
}
|
| 215 |
]
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"name": "publishpress/wordpress-plugin-builder",
|
| 219 |
+
"version": "2.1.4",
|
| 220 |
+
"version_normalized": "2.1.4.0",
|
| 221 |
+
"source": {
|
| 222 |
+
"type": "git",
|
| 223 |
+
"url": "https://github.com/OSTraining/WordPress-Plugin-Builder",
|
| 224 |
+
"reference": "6658ad5e35ec32877ee941e3680702bfb86986e5"
|
| 225 |
+
},
|
| 226 |
+
"time": "2018-03-01T22:09:46+00:00",
|
| 227 |
+
"type": "library",
|
| 228 |
+
"installation-source": "source",
|
| 229 |
+
"autoload": {
|
| 230 |
+
"psr-4": {
|
| 231 |
+
"PublishPress\\Builder\\": "src/"
|
| 232 |
+
}
|
| 233 |
+
},
|
| 234 |
+
"license": [
|
| 235 |
+
"GPL-2.0+"
|
| 236 |
+
],
|
| 237 |
+
"authors": [
|
| 238 |
+
{
|
| 239 |
+
"name": "PublishPress",
|
| 240 |
+
"email": "help@publishpress.com",
|
| 241 |
+
"homepage": "https://publishpress.com"
|
| 242 |
+
}
|
| 243 |
+
],
|
| 244 |
+
"description": "Base class for WordPress plugin builder"
|
| 245 |
}
|
| 246 |
]
|
