Skip to content

Commit afccad4

Browse files
author
Smart Cloud Solutions Inc.
committed
fix(assets): use Mantine asset version for CSS loading
1 parent f5ecc0c commit afccad4

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

readme.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: ai, chrome, seo, language, tools
44
Requires at least: 6.2
55
Tested up to: 6.9
66
Requires PHP: 8.1
7-
Stable tag: 1.3.2
7+
Stable tag: 1.3.3
88
License: MIT
99
License URI: https://mit-license.org/
1010
Text Domain: smartcloud-ai-kit
@@ -199,6 +199,9 @@ AI-Kit Pro includes additional functionality (such as the AI-Kit Chatbot, backen
199199

200200
== Changelog ==
201201

202+
= 1.3.3 =
203+
* Fixed Mantine CSS versioning to use the dedicated Mantine asset version for more accurate cache handling.
204+
202205
= 1.3.2 =
203206
* Updated project dependencies.
204207
* Improved site settings saving so global reCAPTCHA settings are no longer overwritten accidentally.
@@ -371,6 +374,9 @@ Fixed the pre-run language detection/translation flow for AiFeature blocks so it
371374

372375
== Upgrade Notice ==
373376

377+
= 1.3.3 =
378+
This release fixes Mantine CSS versioning so the correct asset-specific version is used, improving cache invalidation for rendered styles.
379+
374380
= 1.3.2 =
375381
This release updates dependencies, fixes site settings persistence so shared global reCAPTCHA settings are preserved correctly, and improves cache handling by versioning CSS files loaded into rendered shadow roots.
376382

smartcloud-ai-kit.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Requires at least: 6.2
77
* Tested up to: 6.9
88
* Requires PHP: 8.1
9-
* Version: 1.3.2
9+
* Version: 1.3.3
1010
* Author: Smart Cloud Solutions Inc.
1111
* Author URI: https://smart-cloud-solutions.com
1212
* License: MIT
@@ -18,7 +18,7 @@
1818

1919
namespace SmartCloud\WPSuite\AiKit;
2020

21-
const VERSION = '1.3.2';
21+
const VERSION = '1.3.3';
2222
const DB_VERSION = '1.3.1';
2323

2424
if (!defined('ABSPATH')) {
@@ -263,7 +263,7 @@ private function enqueueMainRuntimeScript(): void
263263
$constants = array(
264264
'mantineCssHref' => add_query_arg(
265265
'ver',
266-
\SmartCloud\WPSuite\Hub\SMARTCLOUD_WPSUITE_AI_KIT_HUB_VERSION,
266+
\SmartCloud\WPSuite\Hub\VERSION_MANTINE,
267267
SMARTCLOUD_WPSUITE_URL . 'assets/css/mantine-vendor.css'
268268
),
269269
'aiKitUiCssHref' => add_query_arg(

0 commit comments

Comments
 (0)