Version Description
Download this release
Release Info
Developer | themeisle |
Plugin | Cloud Templates & Patterns collection |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.1.2
- CHANGELOG.md +4 -0
- README.md +7 -0
- includes/Editor.php +1 -2
- includes/Main.php +1 -1
- readme.txt +7 -0
- templates-patterns-collection.php +1 -1
- vendor/autoload.php +1 -1
- vendor/composer/InstalledVersions.php +14 -4
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.php +4 -4
CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
##### [Version 1.1.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.0...v1.1.1) (2020-12-08)
|
2 |
|
3 |
- Multisite Starter Sites compatibility
|
1 |
+
##### [Version 1.1.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.1...v1.1.2) (2020-12-17)
|
2 |
+
|
3 |
+
* Fix rest meta fields not getting registered
|
4 |
+
|
5 |
##### [Version 1.1.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.0...v1.1.1) (2020-12-08)
|
6 |
|
7 |
- Multisite Starter Sites compatibility
|
README.md
CHANGED
@@ -27,6 +27,13 @@ No account is required to access the service template collection and the privacy
|
|
27 |
|
28 |
## Changelog ##
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
##### [Version 1.1.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.0...v1.1.1) (2020-12-08)
|
31 |
|
32 |
- Multisite Starter Sites compatibility
|
27 |
|
28 |
## Changelog ##
|
29 |
|
30 |
+
##### [Version 1.1.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.1...v1.1.2) (2020-12-17)
|
31 |
+
|
32 |
+
* Fix rest meta fields not getting registered
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
##### [Version 1.1.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.0...v1.1.1) (2020-12-08)
|
38 |
|
39 |
- Multisite Starter Sites compatibility
|
includes/Editor.php
CHANGED
@@ -26,9 +26,8 @@ class Editor {
|
|
26 |
*/
|
27 |
public function init() {
|
28 |
define( 'TPC_TEMPLATES_CLOUD_ENDPOINT', 'https://api.themeisle.com/templates-cloud/' );
|
29 |
-
|
30 |
add_action( 'enqueue_block_editor_assets', array( $this, 'register_block' ), 11 );
|
31 |
-
|
32 |
}
|
33 |
|
34 |
/**
|
26 |
*/
|
27 |
public function init() {
|
28 |
define( 'TPC_TEMPLATES_CLOUD_ENDPOINT', 'https://api.themeisle.com/templates-cloud/' );
|
|
|
29 |
add_action( 'enqueue_block_editor_assets', array( $this, 'register_block' ), 11 );
|
30 |
+
$this->register_post_meta();
|
31 |
}
|
32 |
|
33 |
/**
|
includes/Main.php
CHANGED
@@ -16,7 +16,7 @@ class Main {
|
|
16 |
*
|
17 |
* @var string Version string.
|
18 |
*/
|
19 |
-
const VERSION = '1.1.
|
20 |
/**
|
21 |
* Sites Library API URL.
|
22 |
*
|
16 |
*
|
17 |
* @var string Version string.
|
18 |
*/
|
19 |
+
const VERSION = '1.1.2';
|
20 |
/**
|
21 |
* Sites Library API URL.
|
22 |
*
|
readme.txt
CHANGED
@@ -27,6 +27,13 @@ No account is required to access the service template collection and the privacy
|
|
27 |
|
28 |
== Changelog ==
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
##### [Version 1.1.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.0...v1.1.1) (2020-12-08)
|
31 |
|
32 |
- Multisite Starter Sites compatibility
|
27 |
|
28 |
== Changelog ==
|
29 |
|
30 |
+
##### [Version 1.1.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.1...v1.1.2) (2020-12-17)
|
31 |
+
|
32 |
+
* Fix rest meta fields not getting registered
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
##### [Version 1.1.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.0...v1.1.1) (2020-12-08)
|
38 |
|
39 |
- Multisite Starter Sites compatibility
|
templates-patterns-collection.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Templates Patterns Collection
|
4 |
* Description: This plugin is an add-on to Neve WordPress theme which offers access to Templates and Block Patterns library service to be used with the theme.
|
5 |
-
* Version: 1.1.
|
6 |
* Author: ThemeIsle
|
7 |
* Author URI: https://themeisle.com
|
8 |
* License: GPLv3
|
2 |
/**
|
3 |
* Plugin Name: Templates Patterns Collection
|
4 |
* Description: This plugin is an add-on to Neve WordPress theme which offers access to Templates and Block Patterns library service to be used with the theme.
|
5 |
+
* Version: 1.1.2
|
6 |
* Author: ThemeIsle
|
7 |
* Author URI: https://themeisle.com
|
8 |
* License: GPLv3
|
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 ComposerAutoloaderInite51e70fba58bfca11457f3a345842c3e::getLoader();
|
vendor/composer/InstalledVersions.php
CHANGED
@@ -1,5 +1,15 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
namespace Composer;
|
4 |
|
5 |
use Composer\Semver\VersionParser;
|
@@ -14,8 +24,8 @@ class InstalledVersions
|
|
14 |
private static $installed = array (
|
15 |
'root' =>
|
16 |
array (
|
17 |
-
'pretty_version' => '1.1.
|
18 |
-
'version' => '1.1.
|
19 |
'aliases' =>
|
20 |
array (
|
21 |
),
|
@@ -26,8 +36,8 @@ private static $installed = array (
|
|
26 |
array (
|
27 |
'codeinwp/templates-patterns-collection' =>
|
28 |
array (
|
29 |
-
'pretty_version' => '1.1.
|
30 |
-
'version' => '1.1.
|
31 |
'aliases' =>
|
32 |
array (
|
33 |
),
|
1 |
<?php
|
2 |
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
namespace Composer;
|
14 |
|
15 |
use Composer\Semver\VersionParser;
|
24 |
private static $installed = array (
|
25 |
'root' =>
|
26 |
array (
|
27 |
+
'pretty_version' => '1.1.2',
|
28 |
+
'version' => '1.1.2.0',
|
29 |
'aliases' =>
|
30 |
array (
|
31 |
),
|
36 |
array (
|
37 |
'codeinwp/templates-patterns-collection' =>
|
38 |
array (
|
39 |
+
'pretty_version' => '1.1.2',
|
40 |
+
'version' => '1.1.2.0',
|
41 |
'aliases' =>
|
42 |
array (
|
43 |
),
|
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 |
|
@@ -22,15 +22,15 @@ class ComposerAutoloaderInite94431eb3e8b26493837c47de10a1a1f
|
|
22 |
return self::$loader;
|
23 |
}
|
24 |
|
25 |
-
spl_autoload_register(array('
|
26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
27 |
-
spl_autoload_unregister(array('
|
28 |
|
29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
if ($useStaticLoader) {
|
31 |
require __DIR__ . '/autoload_static.php';
|
32 |
|
33 |
-
call_user_func(\Composer\Autoload\
|
34 |
} else {
|
35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInite51e70fba58bfca11457f3a345842c3e
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
22 |
return self::$loader;
|
23 |
}
|
24 |
|
25 |
+
spl_autoload_register(array('ComposerAutoloaderInite51e70fba58bfca11457f3a345842c3e', 'loadClassLoader'), true, true);
|
26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
27 |
+
spl_autoload_unregister(array('ComposerAutoloaderInite51e70fba58bfca11457f3a345842c3e', 'loadClassLoader'));
|
28 |
|
29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
if ($useStaticLoader) {
|
31 |
require __DIR__ . '/autoload_static.php';
|
32 |
|
33 |
+
call_user_func(\Composer\Autoload\ComposerStaticInite51e70fba58bfca11457f3a345842c3e::getInitializer($loader));
|
34 |
} else {
|
35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
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 |
'T' =>
|
@@ -50,9 +50,9 @@ class ComposerStaticInite94431eb3e8b26493837c47de10a1a1f
|
|
50 |
public static function getInitializer(ClassLoader $loader)
|
51 |
{
|
52 |
return \Closure::bind(function () use ($loader) {
|
53 |
-
$loader->prefixLengthsPsr4 =
|
54 |
-
$loader->prefixDirsPsr4 =
|
55 |
-
$loader->classMap =
|
56 |
|
57 |
}, null, ClassLoader::class);
|
58 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInite51e70fba58bfca11457f3a345842c3e
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'T' =>
|
50 |
public static function getInitializer(ClassLoader $loader)
|
51 |
{
|
52 |
return \Closure::bind(function () use ($loader) {
|
53 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInite51e70fba58bfca11457f3a345842c3e::$prefixLengthsPsr4;
|
54 |
+
$loader->prefixDirsPsr4 = ComposerStaticInite51e70fba58bfca11457f3a345842c3e::$prefixDirsPsr4;
|
55 |
+
$loader->classMap = ComposerStaticInite51e70fba58bfca11457f3a345842c3e::$classMap;
|
56 |
|
57 |
}, null, ClassLoader::class);
|
58 |
}
|
vendor/composer/installed.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php return array (
|
2 |
'root' =>
|
3 |
array (
|
4 |
-
'pretty_version' => '1.1.
|
5 |
-
'version' => '1.1.
|
6 |
'aliases' =>
|
7 |
array (
|
8 |
),
|
@@ -13,8 +13,8 @@
|
|
13 |
array (
|
14 |
'codeinwp/templates-patterns-collection' =>
|
15 |
array (
|
16 |
-
'pretty_version' => '1.1.
|
17 |
-
'version' => '1.1.
|
18 |
'aliases' =>
|
19 |
array (
|
20 |
),
|
1 |
<?php return array (
|
2 |
'root' =>
|
3 |
array (
|
4 |
+
'pretty_version' => '1.1.2',
|
5 |
+
'version' => '1.1.2.0',
|
6 |
'aliases' =>
|
7 |
array (
|
8 |
),
|
13 |
array (
|
14 |
'codeinwp/templates-patterns-collection' =>
|
15 |
array (
|
16 |
+
'pretty_version' => '1.1.2',
|
17 |
+
'version' => '1.1.2.0',
|
18 |
'aliases' =>
|
19 |
array (
|
20 |
),
|