diff --git a/admin/system.php b/admin/system.php index 8d81a30d..aeef3b8d 100644 --- a/admin/system.php +++ b/admin/system.php @@ -15,7 +15,7 @@ function tangible_template_system( $arg = false ) { (include __DIR__.'/../module-loader.php')(new class extends \stdClass { public $name = 'tangible_template_system'; - public $version = '20241023'; + public $version = '20241119'; public $url; public $path; diff --git a/core.php b/core.php index cb3191dd..05d2b753 100644 --- a/core.php +++ b/core.php @@ -24,7 +24,7 @@ class template_system { } template_system::$state = (object) [ - 'version' => '20241023', // Automatically updated with npm run version + 'version' => '20241119', // Automatically updated with npm run version 'path' => __DIR__, 'url' => untrailingslashit( plugins_url( '/', __FILE__ ) ), ]; diff --git a/framework/date/index.php b/framework/date/index.php index b50dece2..8fa7b787 100644 --- a/framework/date/index.php +++ b/framework/date/index.php @@ -22,7 +22,7 @@ function date( $arg = false ) { (include __DIR__ . '/module-loader.php')(new class { public $name = 'tangible_date'; - public $version = '20241023'; + public $version = '20241119'; function load() { require_once __DIR__ . '/DateCreator.php'; diff --git a/framework/index.php b/framework/index.php index 09afb581..8113bb18 100644 --- a/framework/index.php +++ b/framework/index.php @@ -12,7 +12,7 @@ class framework { (include __DIR__ . '/module-loader.php')(new class { public $name = 'tangible_framework'; - public $version = '20241023'; + public $version = '20241119'; function load() { diff --git a/framework/plugin.php b/framework/plugin.php index 80e0910b..1a9981de 100644 --- a/framework/plugin.php +++ b/framework/plugin.php @@ -2,7 +2,7 @@ /** * Plugin Name: Tangible Framework * Description: Framework module shared by Tangible plugins - * Version: 2024.10.23 + * Version: 2024.11.19 * GitHub URI: TangibleInc/framework */ use tangible\framework; diff --git a/integrations/gutenberg/enqueue.php b/integrations/gutenberg/enqueue.php index 11b42db4..019a15e4 100644 --- a/integrations/gutenberg/enqueue.php +++ b/integrations/gutenberg/enqueue.php @@ -57,7 +57,7 @@ template_system\enqueue_codemirror_v5(); $js_deps []= 'tangible-codemirror-v5'; wp_enqueue_style( 'tangible-codemirror-v5' ); - } + } $url = template_system::$state->url . '/integrations/gutenberg/build'; $version = template_system::$state->version; diff --git a/logic/module.php b/logic/module.php index b87f7c0c..02cfbf2b 100644 --- a/logic/module.php +++ b/logic/module.php @@ -3,7 +3,7 @@ (include __DIR__ . '/module-loader.php')(new class { public $name = 'tangible_logic'; - public $version = '20241023'; + public $version = '20241119'; function load() { require_once __DIR__ . '/index.php'; diff --git a/logic/package.json b/logic/package.json index 5bddc6d2..cb00815b 100644 --- a/logic/package.json +++ b/logic/package.json @@ -2,7 +2,7 @@ "name": "@tangible/logic", "type": "module", "private": true, - "version": "2024.10.23", + "version": "2024.11.19", "description": "Build and evaluate conditional rules", "homepage": "https://github.com/tangibleinc/logic", "repository": { diff --git a/package.json b/package.json index 5386f1b0..bc203705 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@tangible/template-system", "description": "Template System module", - "version": "2024.10.23", + "version": "2024.11.19", "type": "module", "engines": { "node": ">=18" diff --git a/plugin.php b/plugin.php index fec65258..33406295 100644 --- a/plugin.php +++ b/plugin.php @@ -2,7 +2,7 @@ /** * Plugin Name: Tangible Template System * Description: Template system shared by Tangible Blocks and Loops & Logic - * Version: 2024.10.23 + * Version: 2024.11.19 * GitHub URI: TangibleInc/template-system */ use tangible\framework;