Changeset 3435345
- Timestamp:
- 01/08/2026 05:08:14 PM (2 months ago)
- Location:
- hydrogen-calendar-embeds/trunk
- Files:
-
- 1 added
- 3 edited
-
docs/css-classes.md (added)
-
hydrogen-calendar-embeds.php (modified) (2 diffs)
-
public/js/helpers.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hydrogen-calendar-embeds/trunk/hydrogen-calendar-embeds.php
r3432230 r3435345 4 4 Plugin URI: https://github.com/lbell/hydrogen-calendar-embeds 5 5 Description: Embed any existing iCalendar (ICS) source into your WordPress site using Gutenberg blocks or shortcodes. 6 Version: 3.0. 06 Version: 3.0.1 7 7 Author: LBell 8 8 Author URI: https://lorenbell.com … … 37 37 } 38 38 39 define('HYCAL_VER', '3.0. 0');39 define('HYCAL_VER', '3.0.1'); 40 40 define('HYCAL_DIR', plugin_dir_path(__FILE__)); // Trailing slash 41 41 define('HYCAL_URL', plugin_dir_url(__FILE__)); -
hydrogen-calendar-embeds/trunk/public/js/helpers.js
r3432211 r3435345 41 41 42 42 // Build proxy URL - FullCalendar's iCalendar plugin will fetch from our proxy 43 const proxyUrl = `${settings["rest_url"]}?url=${encodeURIComponent( 44 icsCals[j] 45 )}`; 43 // Use URL API to properly append query params (handles both pretty and plain permalinks) 44 const proxyUrlObj = new URL(settings["rest_url"]); 45 proxyUrlObj.searchParams.set("url", icsCals[j]); 46 const proxyUrl = proxyUrlObj.toString(); 46 47 47 48 // Use FullCalendar's native iCalendar format -
hydrogen-calendar-embeds/trunk/readme.txt
r3432230 r3435345 7 7 Tested up to: 6.9 8 8 Requires PHP: 7.4 9 Stable tag: 3.0. 09 Stable tag: 3.0.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 174 174 175 175 == Changelog == 176 = 3.0.1 = 177 * Fixed issue with URL encoding in ICS feed proxy URL. 178 176 179 = 3.0.0 = 177 180 * Initial release.
Note: See TracChangeset
for help on using the changeset viewer.