🐛 Attempt to fix load crash on UC Browser
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wordpress",
|
||||
"version": "3.1.0",
|
||||
"version": "3.1.1",
|
||||
"main": "index.js",
|
||||
"repository": "https://github.com/baptisteArno/typebot.io",
|
||||
"author": "baptisteArno",
|
||||
@ -11,7 +11,7 @@
|
||||
},
|
||||
"scripts": {
|
||||
"deploy": "pnpm copy && pnpm commit",
|
||||
"copy": "svn copy ./trunk ./tags/3.1.0",
|
||||
"commit": "svn ci -m 'Fix admin critical bug and introduce excluded pages'"
|
||||
"copy": "svn copy ./trunk ./tags/3.1.1",
|
||||
"commit": "svn ci -m 'Fix excluded pages when empty'"
|
||||
}
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ Requires at least: 5.0
|
||||
Tested up to: 6.0
|
||||
License: GPL 2.0
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
||||
Stable Tag: 3.1.0
|
||||
Stable Tag: 3.1.1
|
||||
|
||||
Build beautiful conversational forms
|
||||
|
||||
@ -26,6 +26,9 @@ This plugin relies on Typebot which is a tool that allows you to create conversa
|
||||
3. Activate your Typebot with the "Typebot" admin button located in the sidebar
|
||||
|
||||
== Changelog ==
|
||||
= 3.1.1 =
|
||||
* Fix excluded pages when empty
|
||||
|
||||
= 3.1.0 =
|
||||
* Breaking change! You will need to import the new code snippet again.
|
||||
* Fix wp admin crash
|
||||
|
@ -45,6 +45,8 @@ class Typebot_Public
|
||||
}
|
||||
$arr_js = substr($arr_js, 0, -1) . '];';
|
||||
echo $arr_js;
|
||||
} else {
|
||||
echo 'const typebotExcludePaths = null;';
|
||||
}
|
||||
if (get_option('init_snippet') && get_option('init_snippet') !== '') {
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Plugin Name: Typebot
|
||||
* Description: Convert more with conversational forms
|
||||
* Version: 3.1.0
|
||||
* Version: 3.1.1
|
||||
* Author: Typebot
|
||||
* Author URI: http://typebot.io/
|
||||
* License: GPL-2.0+
|
||||
@ -16,7 +16,7 @@ if (!defined('WPINC')) {
|
||||
die();
|
||||
}
|
||||
|
||||
define('TYPEBOT_VERSION', '3.1.0');
|
||||
define('TYPEBOT_VERSION', '3.1.1');
|
||||
|
||||
function activate_typebot()
|
||||
{
|
||||
|
Reference in New Issue
Block a user