Skip to content

Commit

Permalink
[TASK] Fixed merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
hojalatheef committed Oct 22, 2024
2 parents 5204ad5 + 48ee51f commit 61a49cb
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,14 @@ nbproject
.sass-cache
.session
*.log

# Ignore composer stuff
/composer.lock
bin/*
vendor/*
.build
.Build
composer.lock

# Ignore testing stuff
/.Build
Expand Down
2 changes: 1 addition & 1 deletion Classes/ViewHelpers/VideoPublicUrlViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static function renderStatic(
$file = $fileReference->getOriginalFile();
$helper = self::getOnlineMediaHelper($file);
if ($helper instanceof OnlineMediaHelperInterface) {
$publicUrl = $helper->getPublicUrl($file);
$publicUrl = $helper->getPublicUrl($file) ?? '';
}

return $publicUrl;
Expand Down
24 changes: 24 additions & 0 deletions Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.. include:: /Includes.rst.txt


.. _changelog:

=========
ChangeLog
=========

Version 3.2.0
=============

* [TASK] Fixed Broken badge url
* [TASK] Documentation ChangeLog page added
* [BUGFIX] Prevent TypeError when returning public

Version 3.1.0
=============

* [FEATURE] Add VH argument fallbackThumbnailFile
* [TASK] Remove TypoScript access from VH
* [BUGFIX] Prevent duplicate EXT: parsing
* [DOCS] Please read update instructions before updating. Maybe you have to update your templates!!!

1 change: 1 addition & 0 deletions Documentation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ This extension provides more privacy when embedding videos in frontend.
Installation/Index
Configuration/Index
Update/Index
ChangeLog/Index
Links

.. Meta Menu
Expand Down
7 changes: 6 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Developer"
"role": "Lead TYPO3 Developer"
},
{
"name": "Hoja Mustaffa Abdul Latheef",
"email": "[email protected]",
"role": "Senior TYPO3 Developer"
}
],
"homepage": "https://jweiland.net",
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'description' => 'This extension provides more privacy when embedding videos in frontend.',
'category' => 'plugin',
'state' => 'stable',
'author' => 'Stefan Froemken',
'author' => 'Stefan Froemken, Hoja Mustaffa Abdul Latheef',
'author_email' => '[email protected]',
'author_company' => 'jweiland.net',
'version' => '4.0.0',
Expand Down

0 comments on commit 61a49cb

Please sign in to comment.