From 91ab7012979f56dfae067115f0453c9bb5c8d58b Mon Sep 17 00:00:00 2001
From: Jonathan Miller <1+jmiller@noreply.git.mokoconsulting.tech>
Date: Sun, 28 Jun 2026 19:03:11 +0000
Subject: [PATCH 1/6] feat: add license key warning on install/update
---
source/script.php | 70 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 70 insertions(+)
create mode 100644 source/script.php
diff --git a/source/script.php b/source/script.php
new file mode 100644
index 0000000..0701e72
--- /dev/null
+++ b/source/script.php
@@ -0,0 +1,70 @@
+warnMissingLicenseKey();
+ }
+
+ private function warnMissingLicenseKey(): void
+ {
+ try
+ {
+ $db = Factory::getDbo();
+ $app = Factory::getApplication();
+
+ $query = $db->getQuery(true)
+ ->select([$db->quoteName('update_site_id'), $db->quoteName('extra_query')])
+ ->from($db->quoteName('#__update_sites'))
+ ->where('(' . $db->quoteName('name') . ' LIKE ' . $db->quote('%MokoSuiteSupport%')
+ . ' OR ' . $db->quoteName('location') . ' LIKE ' . $db->quote('%MokoSuiteSupport%') . ')')
+ ->setLimit(1);
+ $db->setQuery($query);
+ $site = $db->loadObject();
+
+ if ($site)
+ {
+ $extraQuery = (string) ($site->extra_query ?? '');
+
+ if (!empty($extraQuery) && strpos($extraQuery, 'dlid=') !== false)
+ {
+ parse_str($extraQuery, $parsed);
+
+ if (!empty($parsed['dlid']))
+ {
+ return;
+ }
+ }
+
+ $editUrl = 'index.php?option=com_installer&task=updatesite.edit&update_site_id=' . (int) $site->update_site_id;
+ }
+ else
+ {
+ $editUrl = 'index.php?option=com_installer&view=updatesites';
+ }
+
+ $app->enqueueMessage(
+ 'Moko Consulting License Key Required β '
+ . 'No download key is configured. Updates will not be available until a valid license key is entered. '
+ . 'Enter License Key',
+ 'warning'
+ );
+ }
+ catch (\Throwable $e)
+ {
+ }
+ }
+}
From fd757c7103df73d9ac1efa89211256c65e18268f Mon Sep 17 00:00:00 2001
From: "gitea-actions[bot]"
Date: Sun, 28 Jun 2026 19:12:08 +0000
Subject: [PATCH 2/6] chore(version): auto-bump patch 01.00.30-dev [skip ci]
---
.mokogitea/workflows/issue-branch.yml | 2 +-
CODE_OF_CONDUCT.md | 2 +-
GOVERNANCE.md | 2 +-
SECURITY.md | 2 +-
source/packages/com_mokosuitesupport/mokosuitesupport.xml | 2 +-
.../packages/plg_system_mokosuitesupport/mokosuitesupport.xml | 2 +-
.../plg_webservices_mokosuitesupport/mokosuitesupport.xml | 2 +-
source/pkg_mokosuitesupport.xml | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml
index 2ebc0f5..9a06de1 100644
--- a/.mokogitea/workflows/issue-branch.yml
+++ b/.mokogitea/workflows/issue-branch.yml
@@ -5,7 +5,7 @@
# FILE INFORMATION
# DEFGROUP: Gitea.Workflow
# INGROUP: mokocli.Automation
-# VERSION: 01.00.29
+# VERSION: 01.00.30
# BRIEF: Auto-create feature branch when an issue is opened
name: "Universal: Issue Branch"
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 3cbe33d..7b8a381 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -14,7 +14,7 @@
DEFGROUP: Template-Joomla
INGROUP: Template-Joomla.Documentation
REPO: https://github.com/mokoconsulting-tech/Template-Joomla/
- VERSION: 01.00.29
+ VERSION: 01.00.30
PATH: ./CODE_OF_CONDUCT.md
BRIEF: Community expectations and enforcement guidelines
NOTE: Adapted with attribution from the Contributor Covenant v2.1
diff --git a/GOVERNANCE.md b/GOVERNANCE.md
index 63f0195..fdfc1db 100644
--- a/GOVERNANCE.md
+++ b/GOVERNANCE.md
@@ -19,7 +19,7 @@
DEFGROUP: mokoconsulting-tech.Template-Joomla
INGROUP: MokoStandards.Governance
REPO: https://github.com/mokoconsulting-tech/Template-Joomla
- VERSION: 01.00.29
+ VERSION: 01.00.30
PATH: /GOVERNANCE.md
BRIEF: Project governance rules, roles, and decision process for Template-Joomla
-->
diff --git a/SECURITY.md b/SECURITY.md
index a0c1ea7..f2f7914 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -23,7 +23,7 @@ DEFGROUP: Template-Joomla
INGROUP: Template-Joomla.Documentation
REPO: https://git.mokoconsulting.tech/MokoConsulting/Template-Joomla
PATH: /SECURITY.md
-VERSION: 01.00.29
+VERSION: 01.00.30
BRIEF: Security vulnerability reporting and handling policy
-->
diff --git a/source/packages/com_mokosuitesupport/mokosuitesupport.xml b/source/packages/com_mokosuitesupport/mokosuitesupport.xml
index c6acb25..b40579c 100644
--- a/source/packages/com_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/com_mokosuitesupport/mokosuitesupport.xml
@@ -5,7 +5,7 @@
2026-06-23
Copyright (C) 2026 Moko Consulting.
GPL-3.0-or-later
- 01.00.29
+ 01.00.30
Moko\Component\MokoSuiteSupport
servicessrctmpl
diff --git a/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml b/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
index 9d1f9e7..322cd9b 100644
--- a/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
@@ -8,7 +8,7 @@
GPL-3.0-or-later
hello@mokoconsulting.tech
https://mokoconsulting.tech
- 01.00.29
+ 01.00.30
8.3
PLG_SYSTEM_MOKOSUITESUPPORT_DESC
Moko\Plugin\System\MokoSuiteSupport
diff --git a/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml b/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
index baa417b..526bb06 100644
--- a/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
@@ -3,7 +3,7 @@
Web Services - MokoSuite Support
mokosuitesupport
Moko Consulting
- 01.00.29
+ 01.00.30
GPL-3.0-or-later
Moko\Plugin\WebServices\MokoSuiteSupport
srcservices
diff --git a/source/pkg_mokosuitesupport.xml b/source/pkg_mokosuitesupport.xml
index cc393e5..6e6293e 100644
--- a/source/pkg_mokosuitesupport.xml
+++ b/source/pkg_mokosuitesupport.xml
@@ -2,7 +2,7 @@
Package - MokoSuite Support
mokosuitesupport
- 01.00.29
+ 01.00.30
2026-06-21
Moko Consulting
hello@mokoconsulting.tech
From af47c36c3f09ff5668d72b800dd5d9e2805d8309 Mon Sep 17 00:00:00 2001
From: "gitea-actions[bot]"
Date: Sun, 28 Jun 2026 19:12:18 +0000
Subject: [PATCH 3/6] chore(version): pre-release bump to 01.00.31-dev [skip
ci]
---
.mokogitea/workflows/issue-branch.yml | 2 +-
CODE_OF_CONDUCT.md | 2 +-
GOVERNANCE.md | 2 +-
SECURITY.md | 2 +-
source/packages/com_mokosuitesupport/mokosuitesupport.xml | 2 +-
.../packages/plg_system_mokosuitesupport/mokosuitesupport.xml | 2 +-
.../plg_webservices_mokosuitesupport/mokosuitesupport.xml | 2 +-
source/pkg_mokosuitesupport.xml | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml
index 9a06de1..cdf8759 100644
--- a/.mokogitea/workflows/issue-branch.yml
+++ b/.mokogitea/workflows/issue-branch.yml
@@ -5,7 +5,7 @@
# FILE INFORMATION
# DEFGROUP: Gitea.Workflow
# INGROUP: mokocli.Automation
-# VERSION: 01.00.30
+# VERSION: 01.00.31
# BRIEF: Auto-create feature branch when an issue is opened
name: "Universal: Issue Branch"
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 7b8a381..b8365e6 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -14,7 +14,7 @@
DEFGROUP: Template-Joomla
INGROUP: Template-Joomla.Documentation
REPO: https://github.com/mokoconsulting-tech/Template-Joomla/
- VERSION: 01.00.30
+ VERSION: 01.00.31
PATH: ./CODE_OF_CONDUCT.md
BRIEF: Community expectations and enforcement guidelines
NOTE: Adapted with attribution from the Contributor Covenant v2.1
diff --git a/GOVERNANCE.md b/GOVERNANCE.md
index fdfc1db..4200bca 100644
--- a/GOVERNANCE.md
+++ b/GOVERNANCE.md
@@ -19,7 +19,7 @@
DEFGROUP: mokoconsulting-tech.Template-Joomla
INGROUP: MokoStandards.Governance
REPO: https://github.com/mokoconsulting-tech/Template-Joomla
- VERSION: 01.00.30
+ VERSION: 01.00.31
PATH: /GOVERNANCE.md
BRIEF: Project governance rules, roles, and decision process for Template-Joomla
-->
diff --git a/SECURITY.md b/SECURITY.md
index f2f7914..1bf2839 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -23,7 +23,7 @@ DEFGROUP: Template-Joomla
INGROUP: Template-Joomla.Documentation
REPO: https://git.mokoconsulting.tech/MokoConsulting/Template-Joomla
PATH: /SECURITY.md
-VERSION: 01.00.30
+VERSION: 01.00.31
BRIEF: Security vulnerability reporting and handling policy
-->
diff --git a/source/packages/com_mokosuitesupport/mokosuitesupport.xml b/source/packages/com_mokosuitesupport/mokosuitesupport.xml
index b40579c..aaa8223 100644
--- a/source/packages/com_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/com_mokosuitesupport/mokosuitesupport.xml
@@ -5,7 +5,7 @@
2026-06-23
Copyright (C) 2026 Moko Consulting.
GPL-3.0-or-later
- 01.00.30
+ 01.00.31
Moko\Component\MokoSuiteSupport
servicessrctmpl
diff --git a/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml b/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
index 322cd9b..ba842ab 100644
--- a/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
@@ -8,7 +8,7 @@
GPL-3.0-or-later
hello@mokoconsulting.tech
https://mokoconsulting.tech
- 01.00.30
+ 01.00.31
8.3
PLG_SYSTEM_MOKOSUITESUPPORT_DESC
Moko\Plugin\System\MokoSuiteSupport
diff --git a/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml b/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
index 526bb06..33280c3 100644
--- a/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
@@ -3,7 +3,7 @@
Web Services - MokoSuite Support
mokosuitesupport
Moko Consulting
- 01.00.30
+ 01.00.31
GPL-3.0-or-later
Moko\Plugin\WebServices\MokoSuiteSupport
srcservices
diff --git a/source/pkg_mokosuitesupport.xml b/source/pkg_mokosuitesupport.xml
index 6e6293e..ccca92d 100644
--- a/source/pkg_mokosuitesupport.xml
+++ b/source/pkg_mokosuitesupport.xml
@@ -2,7 +2,7 @@
Package - MokoSuite Support
mokosuitesupport
- 01.00.30
+ 01.00.31
2026-06-21
Moko Consulting
hello@mokoconsulting.tech
From 8ca41177f79801f972f9783cbb9183bceb3002d8 Mon Sep 17 00:00:00 2001
From: Jonathan Miller
Date: Sun, 5 Jul 2026 22:52:35 +0000
Subject: [PATCH 4/6] =?UTF-8?q?chore(docs):=20normalize=20refs=20=E2=80=94?=
=?UTF-8?q?=20MokoStandards->org=20wiki,=20moko-platform->mokocli,=20resid?=
=?UTF-8?q?ual=20MokoGitea/MokoSuite?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Non-workflow docs/config only (CLAUDE.md, README, branch-protection, ISSUE_TEMPLATE/config.yml,
ci-issue-reporter). Workflow files, manifest schema, and Makefile install paths left for the
forge-rebrand gate. Authored-by: Moko Consulting
---
.mokogitea/ISSUE_TEMPLATE/config.yml | 2 +-
.mokogitea/ISSUE_TEMPLATE/feature_request.md | 2 +-
.mokogitea/ISSUE_TEMPLATE/security.md | 2 +-
CLAUDE.md | 4 ++--
CONTRIBUTING.md | 2 +-
GOVERNANCE.md | 4 ++--
automation/ci-issue-reporter.sh | 12 ++++++------
7 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/.mokogitea/ISSUE_TEMPLATE/config.yml b/.mokogitea/ISSUE_TEMPLATE/config.yml
index d4d49ec..71fe271 100644
--- a/.mokogitea/ISSUE_TEMPLATE/config.yml
+++ b/.mokogitea/ISSUE_TEMPLATE/config.yml
@@ -8,7 +8,7 @@ contact_links:
url: https://mokoconsulting.tech/
about: Get help or ask questions through our website
- name: π MokoStandards Documentation
- url: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
+ url: https://git.mokoconsulting.tech/MokoConsulting/.mokogitea/wiki
about: View our coding standards and best practices
- name: π Report a Security Vulnerability
url: https://git.mokoconsulting.tech/mokoconsulting-tech/.github-private/security/advisories/new
diff --git a/.mokogitea/ISSUE_TEMPLATE/feature_request.md b/.mokogitea/ISSUE_TEMPLATE/feature_request.md
index 7b76dc9..984fcbe 100644
--- a/.mokogitea/ISSUE_TEMPLATE/feature_request.md
+++ b/.mokogitea/ISSUE_TEMPLATE/feature_request.md
@@ -37,7 +37,7 @@ If you have ideas about how this could be implemented, share them here:
Add any other context, mockups, or screenshots about the feature request here.
## Relevant Standards
-Does this relate to any standards in [MokoStandards](https://git.mokoconsulting.tech/MokoConsulting/MokoStandards)?
+Does this relate to any standards in [MokoStandards](https://git.mokoconsulting.tech/MokoConsulting/.mokogitea/wiki)?
- [ ] Accessibility (WCAG 2.1 AA)
- [ ] Localization (en_US/en_GB)
- [ ] Security best practices
diff --git a/.mokogitea/ISSUE_TEMPLATE/security.md b/.mokogitea/ISSUE_TEMPLATE/security.md
index f57b284..14d63e0 100644
--- a/.mokogitea/ISSUE_TEMPLATE/security.md
+++ b/.mokogitea/ISSUE_TEMPLATE/security.md
@@ -35,7 +35,7 @@ Use this template only for:
## Standards Reference
-Does this relate to security standards in [MokoStandards](https://git.mokoconsulting.tech/MokoConsulting/MokoStandards)?
+Does this relate to security standards in [MokoStandards](https://git.mokoconsulting.tech/MokoConsulting/.mokogitea/wiki)?
- [ ] SPDX license identifiers
- [ ] Secret management
- [ ] Dependency security
diff --git a/CLAUDE.md b/CLAUDE.md
index 5d12aa6..ad6f408 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -46,8 +46,8 @@ Website Chat Β· Facebook Messenger Β· WhatsApp Business Β· Instagram Direct (pla
- **Never commit** `.claude/`, `.mcp.json`, `TODO.md`, `*.min.css`/`*.min.js`
- **Attribution**: `Authored-by: Moko Consulting`
- **Workflow directory**: `.mokogitea/`
-- **Wiki**: documentation lives in the Gitea wiki, not `docs/` files
-- **Standards**: [MokoStandards](https://git.mokoconsulting.tech/MokoConsulting/MokoCLI/wiki)
+- **Wiki**: documentation lives in the MokoGitea wiki, not `docs/` files
+- **Standards**: [MokoStandards](https://git.mokoconsulting.tech/MokoConsulting/.mokogitea/wiki)
- **Changelog**: `[Unreleased]` only β release system assigns versions
- **No mass email**: use Mailchimp/external services for bulk sending
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c0b4858..d7df945 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -34,7 +34,7 @@ feature/* ββPRββ> dev ββdraft PRββ> (renamed to rc) ββmerge
7. **Merging to main** triggers the stable release pipeline:
- Minor version bump (e.g., `02.09.xx` β `02.10.00`)
- Stability suffix stripped (clean version)
- - Gitea release created with ZIP/tar.gz packages
+ - MokoGitea release created with ZIP/tar.gz packages
- `updates.xml` updated (Joomla extensions)
- `dev` branch recreated from `main`
diff --git a/GOVERNANCE.md b/GOVERNANCE.md
index 4200bca..51f99d3 100644
--- a/GOVERNANCE.md
+++ b/GOVERNANCE.md
@@ -24,7 +24,7 @@
BRIEF: Project governance rules, roles, and decision process for Template-Joomla
-->
-[](https://github.com/mokoconsulting-tech/MokoStandards)
+[](https://github.com/mokoconsulting-tech/MokoStandards)
# Project Governance
@@ -32,7 +32,7 @@
This document defines the governance model for the `Template-Joomla` repository within the
`mokoconsulting-tech` organization. It is automatically maintained by
-[MokoStandards](https://github.com/mokoconsulting-tech/MokoStandards) v04.00.04.
+[MokoStandards](https://git.mokoconsulting.tech/MokoConsulting/.mokogitea/wiki) v04.00.04.
Full governance policy is defined in the MokoStandards source repository:
[docs/policy/GOVERNANCE.md](https://github.com/mokoconsulting-tech/MokoStandards/blob/main/docs/policy/GOVERNANCE.md)
diff --git a/automation/ci-issue-reporter.sh b/automation/ci-issue-reporter.sh
index 65c47ba..42399d0 100644
--- a/automation/ci-issue-reporter.sh
+++ b/automation/ci-issue-reporter.sh
@@ -6,11 +6,11 @@
#
# FILE INFORMATION
# DEFGROUP: Automation.CI
-# INGROUP: moko-platform.Automation
-# REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
+# INGROUP: mokocli.Automation
+# REPO: https://git.mokoconsulting.tech/MokoConsulting/mokocli
# PATH: /automation/ci-issue-reporter.sh
# VERSION: 09.23.00
-# BRIEF: Creates or updates a Gitea issue when a CI gate fails.
+# BRIEF: Creates or updates a MokoGitea issue when a CI gate fails.
# Deduplicates by searching open issues with the "ci-auto" label
# whose title matches the gate. If a matching issue exists, a comment
# is appended instead of opening a duplicate.
@@ -45,8 +45,8 @@ Optional:
--workflow Workflow name for the issue title
--repo owner/repo (default: \$GITHUB_REPOSITORY)
--run-url URL to the CI run (auto-detected from env)
- --token Gitea API token (default: \$GITEA_TOKEN)
- --url Gitea base URL (default: \$GITEA_URL)
+ --token MokoGitea API token (default: \$GITEA_TOKEN)
+ --url MokoGitea base URL (default: \$GITEA_URL)
EOF
exit 1
}
@@ -213,7 +213,7 @@ print(json.dumps({
ISSUE_NUM=$(echo "$RESPONSE" | grep -oP '"number":\s*\K[0-9]+' | head -1)
if [[ -n "$ISSUE_NUM" ]]; then
- # Apply label (separate call β more reliable across Gitea versions)
+ # Apply label (separate call β more reliable across MokoGitea versions)
LABEL_ID=$(curl -sf \
-H "Authorization: token ${GITEA_TOKEN}" \
"${API}/labels" 2>/dev/null \
From 67dfc6355c3a1c8b1e0710e1e6d612148b778c22 Mon Sep 17 00:00:00 2001
From: "gitea-actions[bot]"
Date: Sun, 5 Jul 2026 23:09:44 +0000
Subject: [PATCH 5/6] chore(version): auto-bump patch 01.00.32-dev [skip ci]
---
.mokogitea/workflows/issue-branch.yml | 2 +-
CODE_OF_CONDUCT.md | 2 +-
GOVERNANCE.md | 2 +-
SECURITY.md | 2 +-
source/packages/com_mokosuitesupport/mokosuitesupport.xml | 2 +-
.../packages/plg_system_mokosuitesupport/mokosuitesupport.xml | 2 +-
.../plg_webservices_mokosuitesupport/mokosuitesupport.xml | 2 +-
source/pkg_mokosuitesupport.xml | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml
index cdf8759..1c06144 100644
--- a/.mokogitea/workflows/issue-branch.yml
+++ b/.mokogitea/workflows/issue-branch.yml
@@ -5,7 +5,7 @@
# FILE INFORMATION
# DEFGROUP: Gitea.Workflow
# INGROUP: mokocli.Automation
-# VERSION: 01.00.31
+# VERSION: 01.00.32
# BRIEF: Auto-create feature branch when an issue is opened
name: "Universal: Issue Branch"
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index b8365e6..ef34ec0 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -14,7 +14,7 @@
DEFGROUP: Template-Joomla
INGROUP: Template-Joomla.Documentation
REPO: https://github.com/mokoconsulting-tech/Template-Joomla/
- VERSION: 01.00.31
+ VERSION: 01.00.32
PATH: ./CODE_OF_CONDUCT.md
BRIEF: Community expectations and enforcement guidelines
NOTE: Adapted with attribution from the Contributor Covenant v2.1
diff --git a/GOVERNANCE.md b/GOVERNANCE.md
index 51f99d3..8d59041 100644
--- a/GOVERNANCE.md
+++ b/GOVERNANCE.md
@@ -19,7 +19,7 @@
DEFGROUP: mokoconsulting-tech.Template-Joomla
INGROUP: MokoStandards.Governance
REPO: https://github.com/mokoconsulting-tech/Template-Joomla
- VERSION: 01.00.31
+ VERSION: 01.00.32
PATH: /GOVERNANCE.md
BRIEF: Project governance rules, roles, and decision process for Template-Joomla
-->
diff --git a/SECURITY.md b/SECURITY.md
index 1bf2839..1e05ffc 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -23,7 +23,7 @@ DEFGROUP: Template-Joomla
INGROUP: Template-Joomla.Documentation
REPO: https://git.mokoconsulting.tech/MokoConsulting/Template-Joomla
PATH: /SECURITY.md
-VERSION: 01.00.31
+VERSION: 01.00.32
BRIEF: Security vulnerability reporting and handling policy
-->
diff --git a/source/packages/com_mokosuitesupport/mokosuitesupport.xml b/source/packages/com_mokosuitesupport/mokosuitesupport.xml
index aaa8223..72d33fb 100644
--- a/source/packages/com_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/com_mokosuitesupport/mokosuitesupport.xml
@@ -5,7 +5,7 @@
2026-06-23
Copyright (C) 2026 Moko Consulting.
GPL-3.0-or-later
- 01.00.31
+ 01.00.32
Moko\Component\MokoSuiteSupport
servicessrctmpl
diff --git a/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml b/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
index ba842ab..ba0301e 100644
--- a/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
@@ -8,7 +8,7 @@
GPL-3.0-or-later
hello@mokoconsulting.tech
https://mokoconsulting.tech
- 01.00.31
+ 01.00.32
8.3
PLG_SYSTEM_MOKOSUITESUPPORT_DESC
Moko\Plugin\System\MokoSuiteSupport
diff --git a/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml b/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
index 33280c3..7c90dce 100644
--- a/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
@@ -3,7 +3,7 @@
Web Services - MokoSuite Support
mokosuitesupport
Moko Consulting
- 01.00.31
+ 01.00.32
GPL-3.0-or-later
Moko\Plugin\WebServices\MokoSuiteSupport
srcservices
diff --git a/source/pkg_mokosuitesupport.xml b/source/pkg_mokosuitesupport.xml
index ccca92d..db59edf 100644
--- a/source/pkg_mokosuitesupport.xml
+++ b/source/pkg_mokosuitesupport.xml
@@ -2,7 +2,7 @@
Package - MokoSuite Support
mokosuitesupport
- 01.00.31
+ 01.00.32
2026-06-21
Moko Consulting
hello@mokoconsulting.tech
From 2487c69b5e321fa0d7a68100b08885289694ee06 Mon Sep 17 00:00:00 2001
From: "gitea-actions[bot]"
Date: Sun, 5 Jul 2026 23:09:57 +0000
Subject: [PATCH 6/6] chore(version): pre-release bump to 01.00.33-dev [skip
ci]
---
.mokogitea/workflows/issue-branch.yml | 2 +-
CODE_OF_CONDUCT.md | 2 +-
GOVERNANCE.md | 2 +-
SECURITY.md | 2 +-
source/packages/com_mokosuitesupport/mokosuitesupport.xml | 2 +-
.../packages/plg_system_mokosuitesupport/mokosuitesupport.xml | 2 +-
.../plg_webservices_mokosuitesupport/mokosuitesupport.xml | 2 +-
source/pkg_mokosuitesupport.xml | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml
index 1c06144..8c665ee 100644
--- a/.mokogitea/workflows/issue-branch.yml
+++ b/.mokogitea/workflows/issue-branch.yml
@@ -5,7 +5,7 @@
# FILE INFORMATION
# DEFGROUP: Gitea.Workflow
# INGROUP: mokocli.Automation
-# VERSION: 01.00.32
+# VERSION: 01.00.33
# BRIEF: Auto-create feature branch when an issue is opened
name: "Universal: Issue Branch"
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index ef34ec0..e6459fd 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -14,7 +14,7 @@
DEFGROUP: Template-Joomla
INGROUP: Template-Joomla.Documentation
REPO: https://github.com/mokoconsulting-tech/Template-Joomla/
- VERSION: 01.00.32
+ VERSION: 01.00.33
PATH: ./CODE_OF_CONDUCT.md
BRIEF: Community expectations and enforcement guidelines
NOTE: Adapted with attribution from the Contributor Covenant v2.1
diff --git a/GOVERNANCE.md b/GOVERNANCE.md
index 8d59041..a9eddc3 100644
--- a/GOVERNANCE.md
+++ b/GOVERNANCE.md
@@ -19,7 +19,7 @@
DEFGROUP: mokoconsulting-tech.Template-Joomla
INGROUP: MokoStandards.Governance
REPO: https://github.com/mokoconsulting-tech/Template-Joomla
- VERSION: 01.00.32
+ VERSION: 01.00.33
PATH: /GOVERNANCE.md
BRIEF: Project governance rules, roles, and decision process for Template-Joomla
-->
diff --git a/SECURITY.md b/SECURITY.md
index 1e05ffc..11cf069 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -23,7 +23,7 @@ DEFGROUP: Template-Joomla
INGROUP: Template-Joomla.Documentation
REPO: https://git.mokoconsulting.tech/MokoConsulting/Template-Joomla
PATH: /SECURITY.md
-VERSION: 01.00.32
+VERSION: 01.00.33
BRIEF: Security vulnerability reporting and handling policy
-->
diff --git a/source/packages/com_mokosuitesupport/mokosuitesupport.xml b/source/packages/com_mokosuitesupport/mokosuitesupport.xml
index 72d33fb..c8f6fc0 100644
--- a/source/packages/com_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/com_mokosuitesupport/mokosuitesupport.xml
@@ -5,7 +5,7 @@
2026-06-23
Copyright (C) 2026 Moko Consulting.
GPL-3.0-or-later
- 01.00.32
+ 01.00.33
Moko\Component\MokoSuiteSupport
servicessrctmpl
diff --git a/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml b/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
index ba0301e..1ce0a2f 100644
--- a/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/plg_system_mokosuitesupport/mokosuitesupport.xml
@@ -8,7 +8,7 @@
GPL-3.0-or-later
hello@mokoconsulting.tech
https://mokoconsulting.tech
- 01.00.32
+ 01.00.33
8.3
PLG_SYSTEM_MOKOSUITESUPPORT_DESC
Moko\Plugin\System\MokoSuiteSupport
diff --git a/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml b/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
index 7c90dce..ca43767 100644
--- a/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
+++ b/source/packages/plg_webservices_mokosuitesupport/mokosuitesupport.xml
@@ -3,7 +3,7 @@
Web Services - MokoSuite Support
mokosuitesupport
Moko Consulting
- 01.00.32
+ 01.00.33
GPL-3.0-or-later
Moko\Plugin\WebServices\MokoSuiteSupport
srcservices
diff --git a/source/pkg_mokosuitesupport.xml b/source/pkg_mokosuitesupport.xml
index db59edf..9c4f68c 100644
--- a/source/pkg_mokosuitesupport.xml
+++ b/source/pkg_mokosuitesupport.xml
@@ -2,7 +2,7 @@
Package - MokoSuite Support
mokosuitesupport
- 01.00.32
+ 01.00.33
2026-06-21
Moko Consulting
hello@mokoconsulting.tech