Skip to content

Commit b0e1c04

Browse files
committed
new version
1 parent 3a56bc2 commit b0e1c04

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [4.4.12] - 2024-07-24
8+
### Fixed
9+
- X.com (Twitter) [#540]
10+
- Updated oembed resources.
11+
712
## [4.4.11] - 2024-06-10
813
### Fixed
914
- Updated oEmbed entry points [#537]
@@ -233,7 +238,9 @@ Full library refactoring.
233238
[#527]: https://github.com/oscarotero/Embed/issues/527
234239
[#529]: https://github.com/oscarotero/Embed/issues/529
235240
[#537]: https://github.com/oscarotero/Embed/issues/537
241+
[#540]: https://github.com/oscarotero/Embed/issues/540
236242

243+
[4.4.12]: https://github.com/oscarotero/Embed/compare/v4.4.11...v4.4.12
237244
[4.4.11]: https://github.com/oscarotero/Embed/compare/v4.4.10...v4.4.11
238245
[4.4.10]: https://github.com/oscarotero/Embed/compare/v4.4.9...v4.4.10
239246
[4.4.9]: https://github.com/oscarotero/Embed/compare/v4.4.8...v4.4.9

src/resources/oembed.php

+14-5
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@
3737
'https://live.amcharts.com/oembed' => [
3838
'|^https?://live\\.amcharts\\.com/.*$|i',
3939
],
40-
'https://api.amtraker.com/v2/oembed' => [
40+
'https://api.amtraker.com/v3/oembed' => [
4141
'|^https?://amtraker\\.com/trains/.*$|i',
42-
'|^https?://beta\\.amtraker\\.com/trains/.*$|i',
42+
'|^https?://amtraker\\.com/trains/.*/.*$|i',
43+
'|^https?://.*\\.amtraker\\.com/trains/.*$|i',
44+
'|^https?://.*\\.amtraker\\.com/trains/.*/.*$|i',
4345
],
4446
'https://animatron.com/oembed/json' => [
4547
'|^https?://www\\.animatron\\.com/project/.*$|i',
@@ -517,6 +519,9 @@
517519
'http://api.inphood.com/oembed' => [
518520
'|^https?://.*\\.inphood\\.com/.*$|i',
519521
],
522+
'https://widgets.insighttimer.com/services/oembed' => [
523+
'|^https?://insighttimer\\.com/.*$|i',
524+
],
520525
'https://graph.facebook.com/v16.0/instagram_oembed' => [
521526
'|^https?://instagram\\.com/.*/p/.*,$|i',
522527
'|^https?://www\\.instagram\\.com/.*/p/.*,$|i',
@@ -538,6 +543,9 @@
538543
'https://issuu.com/oembed' => [
539544
'|^https?://issuu\\.com/.*/docs/.*$|i',
540545
],
546+
'https://samay.itabtechinfosys.com/oembed/' => [
547+
'|^https?://samay\\.itabtechinfosys\\.com/.*$|i',
548+
],
541549
'https://create.storage.api.itemis.io/api/embed' => [
542550
'|^https?://play\\.itemis\\.io/.*$|i',
543551
],
@@ -911,6 +919,9 @@
911919
'https://embed.sendtonews.com/services/oembed' => [
912920
'|^https?://embed\\.sendtonews\\.com/oembed/.*$|i',
913921
],
922+
'https://shared-file-kappa.vercel.app/file/api/oembed' => [
923+
'|^https?://shared\\-file\\-kappa\\.vercel\\.app/file/.*$|i',
924+
],
914925
'https://shopshare.tv/api/shopcast/oembed' => [
915926
'|^https?://shopshare\\.tv/shopboard/.*$|i',
916927
'|^https?://shopshare\\.tv/shopcast/.*$|i',
@@ -1098,9 +1109,6 @@
10981109
'|^https?://twitter\\.com/.*$|i',
10991110
'|^https?://twitter\\.com/.*/status/.*$|i',
11001111
'|^https?://.*\\.twitter\\.com/.*/status/.*$|i',
1101-
'|^https?://x\\.com/.*$|i',
1102-
'|^https?://x\\.com/.*/status/.*$|i',
1103-
'|^https?://.*\\.x\\.com/.*/status/.*$|i',
11041112
],
11051113
'https://play.typecast.ai/oembed' => [
11061114
'|^https?://play\\.typecast\\.ai/s/.*$|i',
@@ -1230,6 +1238,7 @@
12301238
'|^https?://.*\\.youtube\\.com/playlist\\?list\\=.*$|i',
12311239
'|^https?://youtube\\.com/playlist\\?list\\=.*$|i',
12321240
'|^https?://.*\\.youtube\\.com/shorts.*$|i',
1241+
'|^https?://youtube\\.com/shorts.*$|i',
12331242
'|^https?://.*\\.youtube\\.com/embed/.*$|i',
12341243
],
12351244
'https://www.yumpu.com/services/oembed' => [

0 commit comments

Comments
 (0)