Changeset 3432221
- Timestamp:
- 01/04/2026 07:32:57 PM (2 months ago)
- Location:
- hydrogen-calendar-embeds/trunk
- Files:
-
- 2 deleted
- 3 edited
-
blocks/calendar/block.json (modified) (1 diff)
-
hydrogen-calendar-embeds.php (modified) (2 diffs)
-
package-lock.json (deleted)
-
package.json (deleted)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hydrogen-calendar-embeds/trunk/blocks/calendar/block.json
r3432211 r3432221 3 3 "apiVersion": 3, 4 4 "name": "hycal/calendar", 5 "version": "1.0.0",6 5 "title": "Hydrogen Calendar Embeds", 7 6 "category": "embed", -
hydrogen-calendar-embeds/trunk/hydrogen-calendar-embeds.php
r3432211 r3432221 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: 1.0. 06 Version: 1.0.1 7 7 Author: LBell 8 8 Author URI: https://lorenbell.com … … 37 37 } 38 38 39 define('HYCAL_VER', '1.0. 0');39 define('HYCAL_VER', '1.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/readme.txt
r3432211 r3432221 7 7 Tested up to: 6.9 8 8 Requires PHP: 7.4 9 Stable tag: 1.0. 09 Stable tag: 1.0.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 19 19 Nothing is hidden behind a "pro" upgrade. All features are free. 20 20 21 Just add block, pop in your ical address(s), and BAM! a modern, responsive, beautiful calendar. 21 Works with any public ICS/iCal feed: 22 - Google Calendar 23 - iCloud 24 - Outlook 25 - Airbnb 26 - **Pretty much anything that can output an ICS feed** 27 28 Just add the new Hydrogen Calendar Embeds block, copy in your ical address(s), and BAM! a modern, responsive, beautiful calendar. 22 29 23 30 - Need two calendars in one? We got you. 24 31 - Need multiple different calendars on the page? Easy peasy. 25 32 - Prefer another color or style? We've got CSS classes for days. 26 - Need different functionality? It's developer friendly, completely extendable, and customizable.33 - Need different functionality? It's developer friendly, completely extendable, and infinitely customizable. 27 34 28 35 **Highlights:** 29 36 30 37 - Manage events using any external calendar of your choice 31 - Works with any public ICS/iCal feed:32 - Google Calendar33 - iCloud34 - Outlook35 - Airbnb36 - Pretty much anything that can output an ICS feed37 38 - Combine multiple ICS feeds into one calendar 38 39 - Embed multiple calendars on one page … … 54 55 = Shortcode Options (also available via block settings UI) = 55 56 56 ( Migrating from Pretty Google Calendar?Just replace `pretty_google_calendar` with `hydrogen_calendar_embeds`, and swap `gcal=id` with `ics=ics_url` in your shortcodes. All other options remain the same.)57 (**Migrating from Pretty Google Calendar?** Just replace `pretty_google_calendar` with `hydrogen_calendar_embeds`, and swap `gcal=id` with `ics=ics_url` in your shortcodes. All other options remain the same.) 57 58 58 59 Shortcode format is: … … 64 65 `ics="https://example.com/calendar.ics"` 65 66 Public ICS/iCal feed URL(s). Works with any standard ICS feed: Google Calendar, iCloud, Outlook, Nextcloud, Teamup, corporate Exchange servers, and more. Multiple ICS feeds can be comma-separated. The plugin fetches the ICS data server-side to avoid CORS issues. 66 67 Examples:68 - Google Calendar: `[hydrogen_calendar_embeds ics="https://calendar.google.com/calendar/ical/YOUR_ID/public/basic.ics"]`69 - iCloud: `[hydrogen_calendar_embeds ics="https://p123-caldav.icloud.com/published/2/YOUR_ID"]`70 - Outlook: `[hydrogen_calendar_embeds ics="https://outlook.live.com/owa/calendar/YOUR_ID/calendar.ics"]`71 - Any ICS: `[hydrogen_calendar_embeds ics="https://example.com/events.ics"]`72 67 73 68 `cal_ids="identifier,identifier"` … … 179 174 180 175 == Changelog == 181 = 1.0. 0=176 = 1.0.1 = 182 177 * Initial release. 183 178
Note: See TracChangeset
for help on using the changeset viewer.