d8376d6cdf
Universal: PR Check / Branch Policy (pull_request) Successful in 2s
Universal: PR Check / Validate PR (pull_request) Failing after 7s
RC Revert / Rename rc/ back to dev/ (pull_request) Has been skipped
Branch Cleanup / Delete merged branch (pull_request) Failing after 2s
Universal: PR Check / Secret Scan (pull_request) Successful in 16s
Generic: Project CI / Lint & Validate (pull_request) Successful in 48s
Joomla: Metadata Validation / Validate Joomla Metadata (pull_request) Failing after 52s
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || github.ref_name }}) (push) Failing after 5s
Generic: Project CI / Tests (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Universal: PR Check / Report Issues (pull_request) Has been cancelled
#95 — ACL + Options: - Add access.xml (core actions + mokoog.batch / mokoog.import custom actions) - Add config.xml (Permissions tab + note pointing settings to the system plugin) - Declare both in the manifest; Batch/ImportExport controllers now check the custom actions with a fallback to the prior core checks (no lockout) #103 — CSV import is now reachable: - Add an Import toolbar button that toggles a multipart file-upload form (jform[csv_file]) posting to importexport.import with a CSRF token #104 — Dead code + disk leak: - Delete unused ImageGenerator class and JsonLdBuilder::buildOrganization() - Add ImageHelper::pruneOldFiles() (deletes generated images older than 30d) and call it on content save so the generated-image cache is bounded #107 — Packaging: - Declare language/en-US in the component manifest (was never installed) - Remove undeclared empty stub dirs src/Field, src/Service
85 lines
2.6 KiB
XML
85 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
* @package MokoSuiteOpenGraph
|
|
* @subpackage com_mokoog
|
|
* @author Moko Consulting <hello@mokoconsulting.tech>
|
|
* @copyright Copyright (C) 2026 Moko Consulting. All rights reserved.
|
|
* @license GNU General Public License version 3 or later; see LICENSE
|
|
-->
|
|
<extension type="component" method="upgrade">
|
|
<name>com_mokoog</name>
|
|
<version>01.06.05</version>
|
|
<creationDate>2026-05-23</creationDate>
|
|
<author>Moko Consulting</author>
|
|
<authorEmail>hello@mokoconsulting.tech</authorEmail>
|
|
<authorUrl>https://mokoconsulting.tech</authorUrl>
|
|
<copyright>Copyright (C) 2026 Moko Consulting. All rights reserved.</copyright>
|
|
<license>GPL-3.0-or-later</license>
|
|
<description>COM_MOKOOG_DESCRIPTION</description>
|
|
|
|
<namespace path="src">Joomla\Component\MokoOG\Administrator</namespace>
|
|
|
|
<scriptfile>script.php</scriptfile>
|
|
|
|
<install>
|
|
<sql>
|
|
<file driver="mysqli" charset="utf8">sql/install.mysql.sql</file>
|
|
</sql>
|
|
</install>
|
|
<uninstall>
|
|
<sql>
|
|
<file driver="mysqli" charset="utf8">sql/uninstall.mysql.sql</file>
|
|
</sql>
|
|
</uninstall>
|
|
<update>
|
|
<schemas>
|
|
<schemapath type="mysqli">sql/updates/mysql</schemapath>
|
|
</schemas>
|
|
</update>
|
|
|
|
<administration>
|
|
<files folder="services">
|
|
<filename>provider.php</filename>
|
|
</files>
|
|
<files folder="src">
|
|
<folder>ContentType</folder>
|
|
<folder>Controller</folder>
|
|
<folder>Extension</folder>
|
|
<folder>Model</folder>
|
|
<folder>Table</folder>
|
|
<folder>View</folder>
|
|
</files>
|
|
<files folder="tmpl">
|
|
<folder>tag</folder>
|
|
<folder>tags</folder>
|
|
</files>
|
|
<files folder="sql">
|
|
<file>install.mysql.sql</file>
|
|
<file>uninstall.mysql.sql</file>
|
|
<folder>updates</folder>
|
|
</files>
|
|
<files folder="forms">
|
|
<file>tag.xml</file>
|
|
<file>filter_tags.xml</file>
|
|
</files>
|
|
<files folder="language">
|
|
<folder>en-GB</folder>
|
|
<folder>en-US</folder>
|
|
</files>
|
|
<files>
|
|
<filename>access.xml</filename>
|
|
<filename>config.xml</filename>
|
|
</files>
|
|
<menu img="class:bookmark">COM_MOKOOG</menu>
|
|
<submenu>
|
|
<menu link="option=com_mokoog&view=tags">COM_MOKOOG_SUBMENU_TAGS</menu>
|
|
</submenu>
|
|
</administration>
|
|
|
|
<api>
|
|
<files folder="api">
|
|
<folder>src</folder>
|
|
</files>
|
|
</api>
|
|
</extension>
|