Skip to content

Commit

Permalink
Update from b653188
Browse files Browse the repository at this point in the history
  • Loading branch information
Hathoriel committed Feb 28, 2022
1 parent 208a7bc commit 6eae847
Show file tree
Hide file tree
Showing 15 changed files with 69 additions and 66 deletions.
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: tatum, blockchain, nft, erc721, ethereum, celo, bsc, mint
Requires at least: 5.5
Requires PHP: 7.0
Tested up to: 5.8.2
Stable tag: 2.0.21
Stable tag: 2.0.24
License: MIT
License URI: https://opensource.org/licenses/MIT

Expand Down Expand Up @@ -186,6 +186,9 @@ For a complete guide on how to build the backend to an NFT marketplace from scra
= 2.0.21 =
* More FAQ added

= 2.0.24 =
* Fixed timeout limit

== Upgrade Notice ==

= 1.0.0 =
Expand Down
2 changes: 1 addition & 1 deletion inc/base/others/cachebuster-lib.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
/* This file was automatically generated by the `grunt libs:cachebuster` command (Wed Feb 16 2022 11:12:08 GMT+0000 (Coordinated Universal Time)). */
/* This file was automatically generated by the `grunt libs:cachebuster` command (Mon Feb 28 2022 20:32:56 GMT+0000 (Coordinated Universal Time)). */
return array(
'mobx' => '4.15.4',
'react' => '17.0.2',
Expand Down
2 changes: 1 addition & 1 deletion inc/base/others/cachebuster.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
/* This file was automatically generated by the `grunt libs:cachebuster` command (Wed Feb 16 2022 11:12:08 GMT+0000 (Coordinated Universal Time)). */
/* This file was automatically generated by the `grunt libs:cachebuster` command (Mon Feb 28 2022 20:32:56 GMT+0000 (Coordinated Universal Time)). */
return array(
'src/public/dist/admin.js' => '8feb5d72f211e93b8dd66edbae18724d',
'src/public/dist/vendor-admin.js' => '544a5b292e9bff3de00321a3d11b0984',
Expand Down
4 changes: 2 additions & 2 deletions inc/tatum/Connector.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private static function isResponseOk($response) {
}

private static function get($url, $api_key, $base = null) {
$args = array('headers' => self::headers($api_key));
$args = array('headers' => self::headers($api_key), 'timeout' => 20);
$baseUrl = $base === null ? self::get_base_url() : $base;
$response = wp_remote_get($baseUrl . $url, $args);
$server_output = wp_remote_retrieve_body($response);
Expand All @@ -33,7 +33,7 @@ private static function get($url, $api_key, $base = null) {
}

private static function post($url, $body, $api_key) {
$args = array('headers' => self::headers($api_key), 'body' => json_encode($body));
$args = array('headers' => self::headers($api_key), 'body' => json_encode($body), 'timeout' => 20);
$response = wp_remote_post(self::get_base_url() . $url, $args);
$server_output = wp_remote_retrieve_body($response);
self::isResponseOk($response);
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Description: NFT Maker is the easiest and fastest free plugin to work with NFTs without any blockchain development experience.
* Author: Tatum
* Author URI: https://tatum.io
* Version: 2.0.22
* Version: 2.0.24
* Text Domain: tatum
* Domain Path: /languages
* License: MIT
Expand Down
4 changes: 2 additions & 2 deletions languages/tatum.pot
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (C) 2021 Tatum
# Copyright (C) 2022 Tatum
# This file is distributed under the MIT.
msgid ""
msgstr ""
"Project-Id-Version: NFT Maker 2.0.12\n"
"Project-Id-Version: NFT Maker 2.0.20\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/src\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down
2 changes: 1 addition & 1 deletion vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInit3461abb3f924ed2f94334d16342d48cf::getLoader();
return ComposerAutoloaderInit9fc61ca2f902723427438009a5765e7e::getLoader();
8 changes: 4 additions & 4 deletions vendor/composer/autoload_real.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// autoload_real.php @generated by Composer

class ComposerAutoloaderInit3461abb3f924ed2f94334d16342d48cf
class ComposerAutoloaderInit9fc61ca2f902723427438009a5765e7e
{
private static $loader;

Expand All @@ -24,15 +24,15 @@ public static function getLoader()

require __DIR__ . '/platform_check.php';

spl_autoload_register(array('ComposerAutoloaderInit3461abb3f924ed2f94334d16342d48cf', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit9fc61ca2f902723427438009a5765e7e', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
spl_autoload_unregister(array('ComposerAutoloaderInit3461abb3f924ed2f94334d16342d48cf', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit9fc61ca2f902723427438009a5765e7e', 'loadClassLoader'));

$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require __DIR__ . '/autoload_static.php';

call_user_func(\Composer\Autoload\ComposerStaticInit3461abb3f924ed2f94334d16342d48cf::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit9fc61ca2f902723427438009a5765e7e::getInitializer($loader));
} else {
$classMap = require __DIR__ . '/autoload_classmap.php';
if ($classMap) {
Expand Down
8 changes: 4 additions & 4 deletions vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Composer\Autoload;

class ComposerStaticInit3461abb3f924ed2f94334d16342d48cf
class ComposerStaticInit9fc61ca2f902723427438009a5765e7e
{
public static $prefixLengthsPsr4 = array (
'k' =>
Expand Down Expand Up @@ -70,9 +70,9 @@ class ComposerStaticInit3461abb3f924ed2f94334d16342d48cf
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit3461abb3f924ed2f94334d16342d48cf::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit3461abb3f924ed2f94334d16342d48cf::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit3461abb3f924ed2f94334d16342d48cf::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit9fc61ca2f902723427438009a5765e7e::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit9fc61ca2f902723427438009a5765e7e::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit9fc61ca2f902723427438009a5765e7e::$classMap;

}, null, ClassLoader::class);
}
Expand Down
4 changes: 2 additions & 2 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => 'c397a0483427a0574459bc4e0e09c495fea7b767',
'reference' => 'b653188658722f9067769c5f5e9e372ca54000d2',
'name' => '__root__',
'dev' => false,
),
Expand All @@ -16,7 +16,7 @@
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => 'c397a0483427a0574459bc4e0e09c495fea7b767',
'reference' => 'b653188658722f9067769c5f5e9e372ca54000d2',
'dev_requirement' => false,
),
'kornrunner/keccak' => array(
Expand Down
72 changes: 36 additions & 36 deletions vendor/tatum/utils/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/tatum/utils/vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitf24884a77da23cbbf76a18ffb96cb934::getLoader();
return ComposerAutoloaderInit4b3aab3ab049d415ed77efda14e5d143::getLoader();
8 changes: 4 additions & 4 deletions vendor/tatum/utils/vendor/composer/autoload_real.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// autoload_real.php @generated by Composer

class ComposerAutoloaderInitf24884a77da23cbbf76a18ffb96cb934
class ComposerAutoloaderInit4b3aab3ab049d415ed77efda14e5d143
{
private static $loader;

Expand All @@ -22,15 +22,15 @@ public static function getLoader()
return self::$loader;
}

spl_autoload_register(array('ComposerAutoloaderInitf24884a77da23cbbf76a18ffb96cb934', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit4b3aab3ab049d415ed77efda14e5d143', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
spl_autoload_unregister(array('ComposerAutoloaderInitf24884a77da23cbbf76a18ffb96cb934', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit4b3aab3ab049d415ed77efda14e5d143', 'loadClassLoader'));

$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require __DIR__ . '/autoload_static.php';

call_user_func(\Composer\Autoload\ComposerStaticInitf24884a77da23cbbf76a18ffb96cb934::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit4b3aab3ab049d415ed77efda14e5d143::getInitializer($loader));
} else {
$classMap = require __DIR__ . '/autoload_classmap.php';
if ($classMap) {
Expand Down
Loading

0 comments on commit 6eae847

Please sign in to comment.