Changeset 3333216
- Timestamp:
- 07/24/2025 01:24:38 AM (8 months ago)
- Location:
- api-for-htmx/trunk
- Files:
-
- 6 edited
-
CHANGELOG.md (modified) (1 diff)
-
README.md (modified) (1 diff)
-
README.txt (modified) (1 diff)
-
api-for-htmx.php (modified) (2 diffs)
-
package.json (modified) (1 diff)
-
src/Assets.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
api-for-htmx/trunk/CHANGELOG.md
r3327812 r3333216 1 1 # Changelog 2 3 # 2.0.6 / 2025-07-23 4 - **FIX:** Updated Datastar.js enqueue to use `wp_enqueue_script_module()` for proper ES module support (WordPress 6.5+). Thanks @eduwass for the report. 2 5 3 6 # 2.0.5 / 2025-07-11 -
api-for-htmx/trunk/README.md
r3327812 r3333216 1382 1382 This plugin is licensed under the GPLv2 or later. 1383 1383 1384 You can find the full license text in the ` license.txt` file.1384 You can find the full license text in the `LICENSE` file. -
api-for-htmx/trunk/README.txt
r3327812 r3333216 2 2 Contributors: tcattd 3 3 Tags: hypermedia, ajax, htmx, hyperscript, alpinejs, datastar 4 Stable tag: 2.0. 55 Requires at least: 6. 44 Stable tag: 2.0.6 5 Requires at least: 6.5 6 6 Tested up to: 6.6 7 7 Requires PHP: 8.1 -
api-for-htmx/trunk/api-for-htmx.php
r3327812 r3333216 5 5 * Plugin URI: https://github.com/EstebanForge/Hypermedia-API-WordPress 6 6 * Description: Adds API endpoints and integration for hypermedia libraries like HTMX, AlpineJS, and Datastar. 7 * Version: 2.0. 57 * Version: 2.0.6 8 8 * Author: Esteban Cuevas 9 9 * Author URI: https://actitud.xyz … … 12 12 * Text Domain: api-for-htmx 13 13 * Domain Path: /languages 14 * Requires at least: 6. 414 * Requires at least: 6.5 15 15 * Tested up to: 6.9 16 16 * Requires PHP: 8.2. -
api-for-htmx/trunk/package.json
r3327812 r3333216 3 3 "author": "Esteban Cuevas", 4 4 "license": "GPL-2.0-or-later", 5 "version": "2.0. 5",5 "version": "2.0.6", 6 6 "description": "WordPress plugin providing API endpoints and integration for hypermedia libraries like HTMX, AlpineJS, and Datastar.", 7 7 "keywords": [], -
api-for-htmx/trunk/src/Assets.php
r3327812 r3333216 320 320 $ver = apply_filters('hmapi/assets/datastar_version', $ver, $load_from_cdn, $asset, $is_library_mode); 321 321 322 wp_enqueue_script ('hmapi-datastar', $url, [], $ver, true);322 wp_enqueue_script_module('hmapi-datastar', $url, [], $ver); 323 323 $datastar_loaded = true; 324 324 }
Note: See TracChangeset
for help on using the changeset viewer.