From 44eebc55f948c25eebfac77c647285753a1ece5c Mon Sep 17 00:00:00 2001 From: akbansa Date: Mon, 5 Jan 2026 15:57:32 +0530 Subject: [PATCH 1/2] add Gumlet support in readme --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- composer.json | 7 ++++--- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 342a87e..f165c36 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # oEmbed Changelog +## 3.1.7 - 2025-01-05 + +### Added + +- Added support for Gumlet video embed provider +- Created GumletAdapter for handling Gumlet-specific video embeds + ## 3.1.6 - 2025-08-08 ### Fixed diff --git a/README.md b/README.md index 128b538..657c1d5 100755 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@

-A simple plugin to extract media information from websites, like youtube videos, twitter statuses or blog articles. +A simple plugin to extract media information from websites, like youtube videos, twitter statuses, gumlet videos or blog articles. ## Requirements @@ -42,7 +42,7 @@ If use are looking for CraftCMS 2.5 support use previous project [version 1.0.4] ## Quick FYI on URL issues -Many websites, such as Vimeo, are restricting access to standard URLs (e.g. www.vimeo.com) and sometimes require using the embed URL (e.g., player.vimeo.com) to retrieve oEmbed data. +Many websites, such as Vimeo and Gumlet, are restricting access to standard URLs (e.g. www.gumlet.tv, www.vimeo.com) and sometimes require using the embed URL (e.g., player.vimeo.com, play.gumlet.io) to retrieve oEmbed data. You can typically find the embed URL through the "share" options on video and oEmbed-supported sites. While the plugin provides general rich content as a fallback, its true potential comes from utilizing the oEmbed protocol and the associated metadata from the content provider. diff --git a/composer.json b/composer.json index de544e2..141fccd 100755 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { "name": "wrav/oembed", - "description": "A simple plugin to extract media information from websites, like youtube videos, twitter statuses or blog articles.", + "description": "A simple plugin to extract media information from websites, like youtube videos, twitter statuses, gumlet videos or blog articles.", "type": "craft-plugin", - "version": "3.1.6", + "version": "3.1.7", "keywords": [ "craft", "cms", @@ -16,7 +16,8 @@ "vimeo", "instagram", "twitter", - "facebook" + "facebook", + "gumlet" ], "support": { "docs": "https://github.com/wrav/oembed/blob/master/README.md", From 3cb6e2f5802c98fedcbceb6001e7c3ae4cc64065 Mon Sep 17 00:00:00 2001 From: akbansa Date: Mon, 5 Jan 2026 16:00:13 +0530 Subject: [PATCH 2/2] fix changelog --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f165c36..424994e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,6 @@ ### Added - Added support for Gumlet video embed provider -- Created GumletAdapter for handling Gumlet-specific video embeds ## 3.1.6 - 2025-08-08