mikuli.cz

:)
git clone https://git.sr.ht/~ashymad/mikuli.cz
Log | Files | Refs

commit 4d2320a8d5ce6ee061cd9abc1a200fc0e574ef7d
parent 9822cc9085840c462124555d097b22f1f2783337
Author: markseu <mark2011@mayberg.se>
Date:   Wed, 28 Sep 2022 23:01:05 +0200

Updated extensions for new folder structure

Diffstat:
Msystem/extensions/install-language.bin | 0
Msystem/extensions/install.php | 8++++----
Msystem/extensions/update-current.ini | 4++--
3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/system/extensions/install-language.bin b/system/extensions/install-language.bin Binary files differ. diff --git a/system/extensions/install.php b/system/extensions/install.php @@ -2,7 +2,7 @@ // Install extension, https://github.com/datenstrom/yellow-extensions/tree/master/source/install class YellowInstall { - const VERSION = "0.8.75"; + const VERSION = "0.8.76"; const PRIORITY = "1"; public $yellow; // access to API @@ -133,9 +133,9 @@ class YellowInstall { if (preg_match("#^(.*\/).*?$#", $zip->getNameIndex(0), $matches)) $pathBase = $matches[1]; $fileData = $zip->getFromName($pathBase.$this->yellow->system->get("updateExtensionFile")); foreach ($this->getExtensionsRequired($fileData) as $extension) { - $fileDataPhp = $zip->getFromName($pathBase."source/$extension/$extension.php"); - $fileDataTxt = $zip->getFromName($pathBase."source/$extension/$extension.txt"); - $fileDataIni = $zip->getFromName($pathBase."source/$extension/extension.ini"); + $fileDataPhp = $zip->getFromName($pathBase."translation/$extension/$extension.php"); + $fileDataTxt = $zip->getFromName($pathBase."translation/$extension/$extension.txt"); + $fileDataIni = $zip->getFromName($pathBase."translation/$extension/extension.ini"); $statusCode = max($statusCode, $this->updateLanguageArchive($fileDataPhp, $fileDataTxt, $fileDataIni, $pathBase, "install")); } $this->yellow->language->load($this->yellow->system->get("coreExtensionDirectory")); diff --git a/system/extensions/update-current.ini b/system/extensions/update-current.ini @@ -54,11 +54,11 @@ media/images/photo.jpg: photo.jpg, create, optional media/thumbnails/photo-100x40.jpg: photo-100x40.jpg, create, optional Extension: Install -Version: 0.8.75 +Version: 0.8.76 Description: Install a brand new, shiny website. DocumentationUrl: https://github.com/datenstrom/yellow-extensions/tree/master/source/install DownloadUrl: https://github.com/datenstrom/yellow-extensions/raw/master/downloads/install.zip -Published: 2022-06-22 14:40:35 +Published: 2022-09-28 21:14:00 Developer: Datenstrom Status: unlisted system/extensions/install.php: install.php, create