Plugin Directory

Changeset 3432221


Ignore:
Timestamp:
01/04/2026 07:32:57 PM (2 months ago)
Author:
lbell
Message:

v1.0.1

Location:
hydrogen-calendar-embeds/trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • hydrogen-calendar-embeds/trunk/blocks/calendar/block.json

    r3432211 r3432221  
    33  "apiVersion": 3,
    44  "name": "hycal/calendar",
    5   "version": "1.0.0",
    65  "title": "Hydrogen Calendar Embeds",
    76  "category": "embed",
  • hydrogen-calendar-embeds/trunk/hydrogen-calendar-embeds.php

    r3432211 r3432221  
    44Plugin URI: https://github.com/lbell/hydrogen-calendar-embeds
    55Description: Embed any existing iCalendar (ICS) source into your WordPress site using Gutenberg blocks or shortcodes.
    6 Version: 1.0.0
     6Version: 1.0.1
    77Author: LBell
    88Author URI: https://lorenbell.com
     
    3737}
    3838
    39 define('HYCAL_VER', '1.0.0');
     39define('HYCAL_VER', '1.0.1');
    4040define('HYCAL_DIR', plugin_dir_path(__FILE__)); // Trailing slash
    4141define('HYCAL_URL', plugin_dir_url(__FILE__));
  • hydrogen-calendar-embeds/trunk/readme.txt

    r3432211 r3432221  
    77Tested up to: 6.9
    88Requires PHP: 7.4
    9 Stable tag: 1.0.0
     9Stable tag: 1.0.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1919Nothing is hidden behind a "pro" upgrade. All features are free.
    2020
    21 Just add block, pop in your ical address(s), and BAM! a modern, responsive, beautiful calendar.
     21Works 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
     28Just add the new Hydrogen Calendar Embeds block, copy in your ical address(s), and BAM! a modern, responsive, beautiful calendar.
    2229
    2330- Need two calendars in one? We got you.
    2431- Need multiple different calendars on the page? Easy peasy.
    2532- 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.
    2734
    2835**Highlights:**
    2936
    3037- Manage events using any external calendar of your choice
    31 - Works with any public ICS/iCal feed:
    32   - Google Calendar
    33   - iCloud
    34   - Outlook
    35   - Airbnb
    36   - Pretty much anything that can output an ICS feed
    3738- Combine multiple ICS feeds into one calendar
    3839- Embed multiple calendars on one page
     
    5455= Shortcode Options (also available via block settings UI) =
    5556
    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.)
    5758
    5859Shortcode format is:
     
    6465`ics="https://example.com/calendar.ics"`
    6566Public 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"]`
    7267
    7368`cal_ids="identifier,identifier"`
     
    179174
    180175== Changelog ==
    181 = 1.0.0 =
     176= 1.0.1 =
    182177* Initial release.
    183178
Note: See TracChangeset for help on using the changeset viewer.