Updated extensions for new core

This commit is contained in:
markseu 2024-04-09 22:06:26 +02:00
parent 1aea895ea7
commit 1ecd5f1f3d
2 changed files with 16 additions and 16 deletions

View file

@ -228,14 +228,14 @@ system/workers/edit-stack.svg: edit-stack.svg, create, update
content/shared/page-new-default.md: page-new-default.md, create, optional
Extension: Emoji
Version: 0.9.1
Version: 0.9.2
Description: Lots and lots of emoji.
Developer: Anna Svensson
Tag: feature
DownloadUrl: https://github.com/annaesvensson/yellow-emoji/archive/refs/heads/main.zip
DocumentationUrl: https://github.com/annaesvensson/yellow-emoji
DocumentationLanguage: en, de, sv
Published: 2024-04-05 00:26:47
Published: 2024-04-09 19:50:25
Status: available
system/workers/emoji.php: emoji.php, create, update
system/workers/emoji.css: emoji.css, create, update
@ -286,14 +286,14 @@ Status: available
system/workers/french.php: french.php, create, update
Extension: Gallery
Version: 0.9.1
Version: 0.9.2
Description: Image gallery with popup.
Developer: Anna Svensson
Tag: feature
DownloadUrl: https://github.com/annaesvensson/yellow-gallery/archive/refs/heads/main.zip
DocumentationUrl: https://github.com/annaesvensson/yellow-gallery
DocumentationLanguage: en, de, sv
Published: 2024-04-05 00:26:47
Published: 2024-04-09 19:50:53
Status: available
system/workers/gallery.php: gallery.php, create, update
system/workers/gallery.js: gallery.js, create, update
@ -327,14 +327,14 @@ Status: available
system/workers/german.php: german.php, create, update
Extension: Googlecalendar
Version: 0.9.1
Version: 0.9.2
Description: Embed Google calendar.
Developer: Anna Svensson
Tag: feature
DownloadUrl: https://github.com/annaesvensson/yellow-googlecalendar/archive/refs/heads/main.zip
DocumentationUrl: https://github.com/annaesvensson/yellow-googlecalendar
DocumentationLanguage: en, de, sv
Published: 2024-04-05 00:26:47
Published: 2024-04-09 19:50:35
Status: available
system/workers/googlecalendar.php: googlecalendar.php, create, update
system/workers/googlecalendar.js: googlecalendar.js, create, update
@ -353,14 +353,14 @@ Status: available
system/workers/googlemap.php: googlemap.php, create, update
Extension: Help
Version: 0.9.1
Version: 0.9.2
Description: Help for your website.
Developer: Anna Svensson
Tag: feature
DownloadUrl: https://github.com/annaesvensson/yellow-help/archive/refs/heads/main.zip
DocumentationUrl: https://github.com/annaesvensson/yellow-help
DocumentationLanguage: en, de, sv
Published: 2024-04-06 21:13:00
Published: 2024-04-09 21:40:35
Status: available
system/extensions/help.php: help.php, create, update
content/9-help/api-for-developers.md: api-for-developers.md, create, optional, multi-language
@ -384,14 +384,14 @@ media/images/language-en.png: language-en.png, create, optional
media/images/language-sv.png: language-sv.png, create, optional
Extension: Highlight
Version: 0.9.1
Version: 0.9.2
Description: Highlight source code.
Developer: Anna Svensson
Tag: feature
DownloadUrl: https://github.com/annaesvensson/yellow-highlight/archive/refs/heads/main.zip
DocumentationUrl: https://github.com/annaesvensson/yellow-highlight
DocumentationLanguage: en, de, sv
Published: 2024-04-04 16:36:43
Published: 2024-04-09 19:50:39
Status: available
system/workers/highlight.php: highlight.php, create, update
system/workers/highlight.css: highlight.css, create, update
@ -417,14 +417,14 @@ Status: available
system/workers/hungarian.php: hungarian.php, create, update
Extension: Icon
Version: 0.9.1
Version: 0.9.2
Description: Icons and symbols.
Developer: Anna Svensson
Tag: feature
DownloadUrl: https://github.com/annaesvensson/yellow-icon/archive/refs/heads/main.zip
DocumentationUrl: https://github.com/annaesvensson/yellow-icon
DocumentationLanguage: en, de, sv
Published: 2024-04-05 00:26:47
Published: 2024-04-09 19:50:43
Status: available
system/workers/icon.php: icon.php, create, update
system/workers/icon.css: icon.css, create, update
@ -677,14 +677,14 @@ system/layouts/sitemap.html: sitemap.html, create, update, careful
content/sitemap/page.md: page.md, create, optional
Extension: Slider
Version: 0.9.1
Version: 0.9.2
Description: Image gallery with slider.
Developer: Anna Svensson
Tag: feature
DownloadUrl: https://github.com/annaesvensson/yellow-slider/archive/refs/heads/main.zip
DocumentationUrl: https://github.com/annaesvensson/yellow-slider
DocumentationLanguage: en, de, sv
Published: 2024-04-05 00:26:47
Published: 2024-04-09 19:50:47
Status: available
system/workers/slider.php: slider.php, create, update
system/workers/slider.js: slider.js, create, update

View file

@ -1327,7 +1327,7 @@ class YellowLookup {
return substru($key, -8, 8)=="Location" ? $this->findFileFromMediaLocation($this->yellow->system->get($key)) : "";
}
// Return media location from file path
// Return system location from file path, for virtually mapped system files
public function findSystemLocationFromFile($fileName) {
$location = "";
$layoutDirectoryLength = strlenu($this->yellow->system->get("coreLayoutDirectory"));
@ -1349,7 +1349,7 @@ class YellowLookup {
return $location;
}
// Return file path from media location
// Return file path from system location, for virtually mapped system files
public function findFileFromSystemLocation($location) {
$fileName = "";
$assetLocationLength = strlenu($this->yellow->system->get("coreAssetLocation"));