From f8018a7a4c0ef7e631ac1e6c5e298e69b613fc70 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <1+jmiller@noreply.git.mokoconsulting.tech> Date: Sun, 28 Jun 2026 19:00:25 +0000 Subject: [PATCH 01/13] feat: add license key warning on install/update --- source/script.php | 74 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 source/script.php diff --git a/source/script.php b/source/script.php new file mode 100644 index 0000000..267cb11 --- /dev/null +++ b/source/script.php @@ -0,0 +1,74 @@ +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('%MokoSuiteRealty%') + . ' OR ' . $db->quoteName('location') . ' LIKE ' . $db->quote('%MokoSuiteRealty%') . ')') + ->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) + { + // Silent β€” avoid breaking install if update_sites query fails + } + } +} From a45eb950d54d062a42a62bb585c92b1dc3bb2ce8 Mon Sep 17 00:00:00 2001 From: "gitea-actions[bot]" Date: Sun, 28 Jun 2026 19:02:51 +0000 Subject: [PATCH 02/13] chore(version): auto-bump patch 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_mokosuiterealty/mokosuiterealty.xml | 2 +- source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml | 2 +- .../plg_webservices_mokosuiterealty/mokosuiterealty.xml | 2 +- source/pkg_mokosuiterealty.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 f30836c..20c0688 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_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index 62e5676..f383c5e 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.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\MokoSuiteRealty servicessrctmpl diff --git a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml index a65b01d..8d3b7db 100644 --- a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.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_MOKOSUITEREALTY_DESC Moko\Plugin\System\MokoSuiteRealty diff --git a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml index e908882..c1bb3a8 100644 --- a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml @@ -3,7 +3,7 @@ Web Services - MokoSuite Realty mokosuiterealty Moko Consulting - 01.00.32 + 01.00.33 GPL-3.0-or-later Moko\Plugin\WebServices\MokoSuiteRealty srcservices diff --git a/source/pkg_mokosuiterealty.xml b/source/pkg_mokosuiterealty.xml index 0c7c426..96db6b2 100644 --- a/source/pkg_mokosuiterealty.xml +++ b/source/pkg_mokosuiterealty.xml @@ -2,7 +2,7 @@ Package - MokoSuite Realty mokosuiterealty - 01.00.32 + 01.00.33 2026-06-21 Moko Consulting hello@mokoconsulting.tech From c96de712273e0cf1c7efe6b79221f06ed73ee4d4 Mon Sep 17 00:00:00 2001 From: "gitea-actions[bot]" Date: Sun, 28 Jun 2026 19:03:10 +0000 Subject: [PATCH 03/13] chore(version): pre-release bump to 01.00.34-dev [skip ci] --- .mokogitea/workflows/issue-branch.yml | 2 +- CODE_OF_CONDUCT.md | 2 +- GOVERNANCE.md | 2 +- SECURITY.md | 2 +- source/packages/com_mokosuiterealty/mokosuiterealty.xml | 2 +- source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml | 2 +- .../plg_webservices_mokosuiterealty/mokosuiterealty.xml | 2 +- source/pkg_mokosuiterealty.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml index 8c665ee..c1ca9f4 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.33 +# VERSION: 01.00.34 # 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 e6459fd..6fb756a 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.33 + VERSION: 01.00.34 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 20c0688..63fb904 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.33 + VERSION: 01.00.34 PATH: /GOVERNANCE.md BRIEF: Project governance rules, roles, and decision process for Template-Joomla --> diff --git a/SECURITY.md b/SECURITY.md index 11cf069..a4e6127 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.33 +VERSION: 01.00.34 BRIEF: Security vulnerability reporting and handling policy --> diff --git a/source/packages/com_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index f383c5e..b750f39 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.xml @@ -5,7 +5,7 @@ 2026-06-23 Copyright (C) 2026 Moko Consulting. GPL-3.0-or-later - 01.00.33 + 01.00.34 Moko\Component\MokoSuiteRealty servicessrctmpl diff --git a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml index 8d3b7db..ec3fc39 100644 --- a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml @@ -8,7 +8,7 @@ GPL-3.0-or-later hello@mokoconsulting.tech https://mokoconsulting.tech - 01.00.33 + 01.00.34 8.3 PLG_SYSTEM_MOKOSUITEREALTY_DESC Moko\Plugin\System\MokoSuiteRealty diff --git a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml index c1bb3a8..1322baf 100644 --- a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml @@ -3,7 +3,7 @@ Web Services - MokoSuite Realty mokosuiterealty Moko Consulting - 01.00.33 + 01.00.34 GPL-3.0-or-later Moko\Plugin\WebServices\MokoSuiteRealty srcservices diff --git a/source/pkg_mokosuiterealty.xml b/source/pkg_mokosuiterealty.xml index 96db6b2..672639b 100644 --- a/source/pkg_mokosuiterealty.xml +++ b/source/pkg_mokosuiterealty.xml @@ -2,7 +2,7 @@ Package - MokoSuite Realty mokosuiterealty - 01.00.33 + 01.00.34 2026-06-21 Moko Consulting hello@mokoconsulting.tech From 5aa4b04c528b03aca38dc3c09f2fe83418984a87 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sun, 5 Jul 2026 22:52:16 +0000 Subject: [PATCH 04/13] =?UTF-8?q?chore(docs):=20normalize=20refs=20?= =?UTF-8?q?=E2=80=94=20MokoStandards->org=20wiki,=20moko-platform->mokocli?= =?UTF-8?q?,=20residual=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 29d8b94..797012a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -41,8 +41,8 @@ Joomla **package** (`pkg_mokosuiterealty`) β€” Layer 2 add-on extending MokoSuit - **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 upstream references**: never reference competitor products 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 63fb904..22d8bfc 100644 --- a/GOVERNANCE.md +++ b/GOVERNANCE.md @@ -24,7 +24,7 @@ BRIEF: Project governance rules, roles, and decision process for Template-Joomla --> -[![MokoStandards](https://img.shields.io/badge/MokoStandards-04.00.04-blue)](https://github.com/mokoconsulting-tech/MokoStandards) +[![MokoStandards](https://git.mokoconsulting.tech/MokoConsulting/.mokogitea/wiki)](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 06a60bf4ef04d26d6d6d4b50f1ead99c06320281 Mon Sep 17 00:00:00 2001 From: "gitea-actions[bot]" Date: Sun, 5 Jul 2026 23:06:29 +0000 Subject: [PATCH 05/13] chore(version): auto-bump patch 01.00.35-dev [skip ci] --- .mokogitea/workflows/issue-branch.yml | 2 +- CODE_OF_CONDUCT.md | 2 +- GOVERNANCE.md | 2 +- SECURITY.md | 2 +- source/packages/com_mokosuiterealty/mokosuiterealty.xml | 2 +- source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml | 2 +- .../plg_webservices_mokosuiterealty/mokosuiterealty.xml | 2 +- source/pkg_mokosuiterealty.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml index c1ca9f4..05921d6 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.34 +# VERSION: 01.00.35 # 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 6fb756a..32e6ab1 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.34 + VERSION: 01.00.35 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 22d8bfc..91edfd0 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.34 + VERSION: 01.00.35 PATH: /GOVERNANCE.md BRIEF: Project governance rules, roles, and decision process for Template-Joomla --> diff --git a/SECURITY.md b/SECURITY.md index a4e6127..7f3a373 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.34 +VERSION: 01.00.35 BRIEF: Security vulnerability reporting and handling policy --> diff --git a/source/packages/com_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index b750f39..63cdc10 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.xml @@ -5,7 +5,7 @@ 2026-06-23 Copyright (C) 2026 Moko Consulting. GPL-3.0-or-later - 01.00.34 + 01.00.35 Moko\Component\MokoSuiteRealty servicessrctmpl diff --git a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml index ec3fc39..72415e2 100644 --- a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml @@ -8,7 +8,7 @@ GPL-3.0-or-later hello@mokoconsulting.tech https://mokoconsulting.tech - 01.00.34 + 01.00.35 8.3 PLG_SYSTEM_MOKOSUITEREALTY_DESC Moko\Plugin\System\MokoSuiteRealty diff --git a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml index 1322baf..fd39787 100644 --- a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml @@ -3,7 +3,7 @@ Web Services - MokoSuite Realty mokosuiterealty Moko Consulting - 01.00.34 + 01.00.35 GPL-3.0-or-later Moko\Plugin\WebServices\MokoSuiteRealty srcservices diff --git a/source/pkg_mokosuiterealty.xml b/source/pkg_mokosuiterealty.xml index 672639b..f1a56e5 100644 --- a/source/pkg_mokosuiterealty.xml +++ b/source/pkg_mokosuiterealty.xml @@ -2,7 +2,7 @@ Package - MokoSuite Realty mokosuiterealty - 01.00.34 + 01.00.35 2026-06-21 Moko Consulting hello@mokoconsulting.tech From 90a68d9d428bae33a8c25318910802351b9c5a14 Mon Sep 17 00:00:00 2001 From: "gitea-actions[bot]" Date: Sun, 5 Jul 2026 23:06:47 +0000 Subject: [PATCH 06/13] chore(version): pre-release bump to 01.00.36-dev [skip ci] --- .mokogitea/workflows/issue-branch.yml | 2 +- CODE_OF_CONDUCT.md | 2 +- GOVERNANCE.md | 2 +- SECURITY.md | 2 +- source/packages/com_mokosuiterealty/mokosuiterealty.xml | 2 +- source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml | 2 +- .../plg_webservices_mokosuiterealty/mokosuiterealty.xml | 2 +- source/pkg_mokosuiterealty.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml index 05921d6..4662a2a 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.35 +# VERSION: 01.00.36 # 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 32e6ab1..21d7051 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.35 + VERSION: 01.00.36 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 91edfd0..0bee2b3 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.35 + VERSION: 01.00.36 PATH: /GOVERNANCE.md BRIEF: Project governance rules, roles, and decision process for Template-Joomla --> diff --git a/SECURITY.md b/SECURITY.md index 7f3a373..3985bce 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.35 +VERSION: 01.00.36 BRIEF: Security vulnerability reporting and handling policy --> diff --git a/source/packages/com_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index 63cdc10..19c6c77 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.xml @@ -5,7 +5,7 @@ 2026-06-23 Copyright (C) 2026 Moko Consulting. GPL-3.0-or-later - 01.00.35 + 01.00.36 Moko\Component\MokoSuiteRealty servicessrctmpl diff --git a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml index 72415e2..b9b841e 100644 --- a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml @@ -8,7 +8,7 @@ GPL-3.0-or-later hello@mokoconsulting.tech https://mokoconsulting.tech - 01.00.35 + 01.00.36 8.3 PLG_SYSTEM_MOKOSUITEREALTY_DESC Moko\Plugin\System\MokoSuiteRealty diff --git a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml index fd39787..6bf398c 100644 --- a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml @@ -3,7 +3,7 @@ Web Services - MokoSuite Realty mokosuiterealty Moko Consulting - 01.00.35 + 01.00.36 GPL-3.0-or-later Moko\Plugin\WebServices\MokoSuiteRealty srcservices diff --git a/source/pkg_mokosuiterealty.xml b/source/pkg_mokosuiterealty.xml index f1a56e5..7cecec4 100644 --- a/source/pkg_mokosuiterealty.xml +++ b/source/pkg_mokosuiterealty.xml @@ -2,7 +2,7 @@ Package - MokoSuite Realty mokosuiterealty - 01.00.35 + 01.00.36 2026-06-21 Moko Consulting hello@mokoconsulting.tech From f673e130dde30a5c277fc66dad68d2806658e1d4 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Mon, 6 Jul 2026 11:19:33 -0500 Subject: [PATCH 07/13] fix: honest installer success (gate license/next-steps on child install) The package postflight showed the "License Key Required" / next-steps message even when a bundled child extension failed to sub-install (Joomla only logs those failures). Add a fail-open manifest verifier (missingChildExtensions) that confirms every declared child landed in #__extensions and enqueues an error + returns before the license path when any are missing. Fails open so a transient glitch never fakes a failure. Claude-Session: https://claude.ai/code/session_01B9aZHSWbiiZykJD88pYx8R --- CHANGELOG.md | 3 ++ source/script.php | 95 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index eeabb81..a78983c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ ## [Unreleased] +### Fixed +- **Honest install success** β€” the package installer no longer shows the license / next-steps message when a bundled child extension failed to install. A fail-open manifest verifier confirms every child extension landed in `#__extensions` and reports any that are missing. + ### Added - **Package Manifest** β€” `pkg_mokosuiterealty.xml` with dlid and updateservers - **Plugin Manifest** β€” `mokosuiterealty.xml` with config fieldsets (listing defaults, search settings) diff --git a/source/script.php b/source/script.php index 267cb11..38a6923 100644 --- a/source/script.php +++ b/source/script.php @@ -19,9 +19,104 @@ class Pkg_MokoSuiteRealtyInstallerScript { public function postflight(string $type, InstallerAdapter $adapter): void { + // Be honest about success. Joomla's package installer only LOGS a failed child + // sub-install but still runs this postflight, so don't show the license / + // next-steps message if a bundled extension is actually missing. Fails open + // (see missingChildExtensions) so a query/IO glitch never fakes a failure. + $missing = $this->missingChildExtensions($adapter); + + if (!empty($missing)) + { + Factory::getApplication()->enqueueMessage( + '

MokoSuiteRealty did not install correctly.

' + . '

The following bundled extensions are missing: ' + . htmlspecialchars(implode(', ', $missing), ENT_QUOTES) . '

' + . '

Please uninstall MokoSuiteRealty and reinstall the full package.

', + 'error' + ); + + return; + } + $this->warnMissingLicenseKey(); } + /** + * Verify every child extension declared in the package manifest actually landed in + * #__extensions. Returns readable labels of any that are missing. + * + * Matching per Joomla's #__extensions uniqueness: type = "type"; element = + * "id" (for plugins, strip a leading plg__); plugins also match + * folder = "group". + * + * FAILS OPEN: any error returns [] so a transient glitch never fakes a failure. + */ + private function missingChildExtensions($adapter): array + { + try + { + $manifest = $adapter->getParent()->getManifest(); + + if (!$manifest || !isset($manifest->files) || !isset($manifest->files->file)) + { + return []; + } + + $db = Factory::getDbo(); + $missing = []; + + foreach ($manifest->files->file as $file) + { + $attrs = $file->attributes(); + $id = isset($attrs['id']) ? (string) $attrs['id'] : ''; + $exType = isset($attrs['type']) ? (string) $attrs['type'] : ''; + + if ($id === '' || $exType === '') + { + continue; + } + + $group = isset($attrs['group']) ? (string) $attrs['group'] : ''; + $element = $id; + + // Plugin element in #__extensions is the id minus any leading plg__. + if ($exType === 'plugin' && $group !== '') + { + $prefix = 'plg_' . $group . '_'; + + if (strpos($element, $prefix) === 0) + { + $element = substr($element, \strlen($prefix)); + } + } + + $query = $db->getQuery(true) + ->select('COUNT(*)') + ->from($db->quoteName('#__extensions')) + ->where($db->quoteName('element') . ' = ' . $db->quote($element)) + ->where($db->quoteName('type') . ' = ' . $db->quote($exType)); + + if ($exType === 'plugin' && $group !== '') + { + $query->where($db->quoteName('folder') . ' = ' . $db->quote($group)); + } + + if ((int) $db->setQuery($query)->loadResult() === 0) + { + $label = trim((string) $file); + $missing[] = $label !== '' ? preg_replace('/\.zip$/i', '', $label) : $id; + } + } + + return $missing; + } + catch (\Throwable $e) + { + // Fail open β€” never fake a failure on a glitch. + return []; + } + } + private function warnMissingLicenseKey(): void { try From e4e317f1956251347be9155b11aedc0f87e46b07 Mon Sep 17 00:00:00 2001 From: "gitea-actions[bot]" Date: Mon, 6 Jul 2026 16:20:05 +0000 Subject: [PATCH 08/13] chore(version): pre-release bump to 01.00.37-dev [skip ci] --- .mokogitea/workflows/issue-branch.yml | 2 +- CODE_OF_CONDUCT.md | 2 +- GOVERNANCE.md | 2 +- SECURITY.md | 2 +- source/packages/com_mokosuiterealty/mokosuiterealty.xml | 2 +- source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml | 2 +- .../plg_webservices_mokosuiterealty/mokosuiterealty.xml | 2 +- source/pkg_mokosuiterealty.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml index 4662a2a..4fad36e 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.36 +# VERSION: 01.00.37 # 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 21d7051..a07fd97 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.36 + VERSION: 01.00.37 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 0bee2b3..bf91bd9 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.36 + VERSION: 01.00.37 PATH: /GOVERNANCE.md BRIEF: Project governance rules, roles, and decision process for Template-Joomla --> diff --git a/SECURITY.md b/SECURITY.md index 3985bce..de65260 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.36 +VERSION: 01.00.37 BRIEF: Security vulnerability reporting and handling policy --> diff --git a/source/packages/com_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index 19c6c77..6c74987 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.xml @@ -5,7 +5,7 @@ 2026-06-23 Copyright (C) 2026 Moko Consulting. GPL-3.0-or-later - 01.00.36 + 01.00.37 Moko\Component\MokoSuiteRealty servicessrctmpl diff --git a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml index b9b841e..b7a0f85 100644 --- a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml @@ -8,7 +8,7 @@ GPL-3.0-or-later hello@mokoconsulting.tech https://mokoconsulting.tech - 01.00.36 + 01.00.37 8.3 PLG_SYSTEM_MOKOSUITEREALTY_DESC Moko\Plugin\System\MokoSuiteRealty diff --git a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml index 6bf398c..1ac8983 100644 --- a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml @@ -3,7 +3,7 @@ Web Services - MokoSuite Realty mokosuiterealty Moko Consulting - 01.00.36 + 01.00.37 GPL-3.0-or-later Moko\Plugin\WebServices\MokoSuiteRealty srcservices diff --git a/source/pkg_mokosuiterealty.xml b/source/pkg_mokosuiterealty.xml index 7cecec4..b675ef3 100644 --- a/source/pkg_mokosuiterealty.xml +++ b/source/pkg_mokosuiterealty.xml @@ -2,7 +2,7 @@ Package - MokoSuite Realty mokosuiterealty - 01.00.36 + 01.00.37 2026-06-21 Moko Consulting hello@mokoconsulting.tech From d35375c7f187fe45df6af3d07a9fa27708149d9b Mon Sep 17 00:00:00 2001 From: Jonathan Miller <1+jmiller@noreply.git.mokoconsulting.tech> Date: Mon, 6 Jul 2026 22:44:12 +0000 Subject: [PATCH 09/13] feat(menu): add COM_MOKOSUITEREALTY_SHORT short-name constant (#13) Claude-Session: https://claude.ai/code/session_01B9aZHSWbiiZykJD88pYx8R --- .../admin/language/en-GB/com_mokosuiterealty.sys.ini | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 source/packages/com_mokosuiterealty/admin/language/en-GB/com_mokosuiterealty.sys.ini diff --git a/source/packages/com_mokosuiterealty/admin/language/en-GB/com_mokosuiterealty.sys.ini b/source/packages/com_mokosuiterealty/admin/language/en-GB/com_mokosuiterealty.sys.ini new file mode 100644 index 0000000..ccc45f2 --- /dev/null +++ b/source/packages/com_mokosuiterealty/admin/language/en-GB/com_mokosuiterealty.sys.ini @@ -0,0 +1,3 @@ +COM_MOKOSUITEREALTY="MokoSuite Realty" +COM_MOKOSUITEREALTY_SHORT="Realty" +COM_MOKOSUITEREALTY_XML_DESCRIPTION="MokoSuite Realty component." From c0e5ff04aa6eeac6d09aa0504f1aa7bb0b1bf843 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <1+jmiller@noreply.git.mokoconsulting.tech> Date: Mon, 6 Jul 2026 22:44:29 +0000 Subject: [PATCH 10/13] feat(menu): use COM_MOKOSUITEREALTY_SHORT + wire admin language (#13) Claude-Session: https://claude.ai/code/session_01B9aZHSWbiiZykJD88pYx8R --- source/packages/com_mokosuiterealty/mokosuiterealty.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/packages/com_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index 6c74987..fdebe62 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.xml @@ -9,6 +9,9 @@ Moko\Component\MokoSuiteRealty servicessrctmpl - COM_MOKOSUITEREALTY + COM_MOKOSUITEREALTY_SHORT + + en-GB/com_mokosuiterealty.sys.ini + From f00829601764dadc393befe0f1a8733552eaf6a1 Mon Sep 17 00:00:00 2001 From: "gitea-actions[bot]" Date: Mon, 6 Jul 2026 22:44:56 +0000 Subject: [PATCH 11/13] chore(version): pre-release bump to 01.00.38-dev [skip ci] --- .mokogitea/workflows/issue-branch.yml | 2 +- CODE_OF_CONDUCT.md | 2 +- GOVERNANCE.md | 2 +- SECURITY.md | 2 +- source/packages/com_mokosuiterealty/mokosuiterealty.xml | 2 +- source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml | 2 +- .../plg_webservices_mokosuiterealty/mokosuiterealty.xml | 2 +- source/pkg_mokosuiterealty.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml index 4fad36e..34c70f4 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.37 +# VERSION: 01.00.38 # 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 a07fd97..505af45 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.37 + VERSION: 01.00.38 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 bf91bd9..872a8a5 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.37 + VERSION: 01.00.38 PATH: /GOVERNANCE.md BRIEF: Project governance rules, roles, and decision process for Template-Joomla --> diff --git a/SECURITY.md b/SECURITY.md index de65260..bd2fdcc 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.37 +VERSION: 01.00.38 BRIEF: Security vulnerability reporting and handling policy --> diff --git a/source/packages/com_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index fdebe62..7cc6de4 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.xml @@ -5,7 +5,7 @@ 2026-06-23 Copyright (C) 2026 Moko Consulting. GPL-3.0-or-later - 01.00.37 + 01.00.38 Moko\Component\MokoSuiteRealty servicessrctmpl diff --git a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml index b7a0f85..272095c 100644 --- a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml @@ -8,7 +8,7 @@ GPL-3.0-or-later hello@mokoconsulting.tech https://mokoconsulting.tech - 01.00.37 + 01.00.38 8.3 PLG_SYSTEM_MOKOSUITEREALTY_DESC Moko\Plugin\System\MokoSuiteRealty diff --git a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml index 1ac8983..6f309b8 100644 --- a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml @@ -3,7 +3,7 @@ Web Services - MokoSuite Realty mokosuiterealty Moko Consulting - 01.00.37 + 01.00.38 GPL-3.0-or-later Moko\Plugin\WebServices\MokoSuiteRealty srcservices diff --git a/source/pkg_mokosuiterealty.xml b/source/pkg_mokosuiterealty.xml index b675ef3..72f5f94 100644 --- a/source/pkg_mokosuiterealty.xml +++ b/source/pkg_mokosuiterealty.xml @@ -2,7 +2,7 @@ Package - MokoSuite Realty mokosuiterealty - 01.00.37 + 01.00.38 2026-06-21 Moko Consulting hello@mokoconsulting.tech From fef2ba59aaed31710b7906a9844450563c1bb06f Mon Sep 17 00:00:00 2001 From: "gitea-actions[bot]" Date: Mon, 6 Jul 2026 22:45:15 +0000 Subject: [PATCH 12/13] chore(version): pre-release bump to 01.00.39-dev [skip ci] --- .mokogitea/workflows/issue-branch.yml | 2 +- CODE_OF_CONDUCT.md | 2 +- GOVERNANCE.md | 2 +- SECURITY.md | 2 +- source/packages/com_mokosuiterealty/mokosuiterealty.xml | 2 +- source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml | 2 +- .../plg_webservices_mokosuiterealty/mokosuiterealty.xml | 2 +- source/pkg_mokosuiterealty.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml index 34c70f4..95ae2dc 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.38 +# VERSION: 01.00.39 # 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 505af45..5955902 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.38 + VERSION: 01.00.39 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 872a8a5..41e072d 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.38 + VERSION: 01.00.39 PATH: /GOVERNANCE.md BRIEF: Project governance rules, roles, and decision process for Template-Joomla --> diff --git a/SECURITY.md b/SECURITY.md index bd2fdcc..334fc20 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.38 +VERSION: 01.00.39 BRIEF: Security vulnerability reporting and handling policy --> diff --git a/source/packages/com_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index 7cc6de4..015fa0f 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.xml @@ -5,7 +5,7 @@ 2026-06-23 Copyright (C) 2026 Moko Consulting. GPL-3.0-or-later - 01.00.38 + 01.00.39 Moko\Component\MokoSuiteRealty servicessrctmpl diff --git a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml index 272095c..131c726 100644 --- a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml @@ -8,7 +8,7 @@ GPL-3.0-or-later hello@mokoconsulting.tech https://mokoconsulting.tech - 01.00.38 + 01.00.39 8.3 PLG_SYSTEM_MOKOSUITEREALTY_DESC Moko\Plugin\System\MokoSuiteRealty diff --git a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml index 6f309b8..ac6539a 100644 --- a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml @@ -3,7 +3,7 @@ Web Services - MokoSuite Realty mokosuiterealty Moko Consulting - 01.00.38 + 01.00.39 GPL-3.0-or-later Moko\Plugin\WebServices\MokoSuiteRealty srcservices diff --git a/source/pkg_mokosuiterealty.xml b/source/pkg_mokosuiterealty.xml index 72f5f94..3efaf17 100644 --- a/source/pkg_mokosuiterealty.xml +++ b/source/pkg_mokosuiterealty.xml @@ -2,7 +2,7 @@ Package - MokoSuite Realty mokosuiterealty - 01.00.38 + 01.00.39 2026-06-21 Moko Consulting hello@mokoconsulting.tech From 83bcbab59a7e020330c2f4d0c5b96a71c26f29c2 Mon Sep 17 00:00:00 2001 From: "gitea-actions[bot]" Date: Tue, 7 Jul 2026 10:17:02 +0000 Subject: [PATCH 13/13] chore(version): pre-release bump to 01.00.40-dev [skip ci] --- .mokogitea/workflows/issue-branch.yml | 2 +- CODE_OF_CONDUCT.md | 2 +- GOVERNANCE.md | 2 +- SECURITY.md | 2 +- source/packages/com_mokosuiterealty/mokosuiterealty.xml | 2 +- source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml | 2 +- .../plg_webservices_mokosuiterealty/mokosuiterealty.xml | 2 +- source/pkg_mokosuiterealty.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml index 95ae2dc..efa5e78 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.39 +# VERSION: 01.00.40 # 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 5955902..f4ae23f 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.39 + VERSION: 01.00.40 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 41e072d..718e40e 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.39 + VERSION: 01.00.40 PATH: /GOVERNANCE.md BRIEF: Project governance rules, roles, and decision process for Template-Joomla --> diff --git a/SECURITY.md b/SECURITY.md index 334fc20..bd502f4 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.39 +VERSION: 01.00.40 BRIEF: Security vulnerability reporting and handling policy --> diff --git a/source/packages/com_mokosuiterealty/mokosuiterealty.xml b/source/packages/com_mokosuiterealty/mokosuiterealty.xml index 015fa0f..dbeb545 100644 --- a/source/packages/com_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/com_mokosuiterealty/mokosuiterealty.xml @@ -5,7 +5,7 @@ 2026-06-23 Copyright (C) 2026 Moko Consulting. GPL-3.0-or-later - 01.00.39 + 01.00.40 Moko\Component\MokoSuiteRealty servicessrctmpl diff --git a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml index 131c726..71fdcfa 100644 --- a/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_system_mokosuiterealty/mokosuiterealty.xml @@ -8,7 +8,7 @@ GPL-3.0-or-later hello@mokoconsulting.tech https://mokoconsulting.tech - 01.00.39 + 01.00.40 8.3 PLG_SYSTEM_MOKOSUITEREALTY_DESC Moko\Plugin\System\MokoSuiteRealty diff --git a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml index ac6539a..cddab3f 100644 --- a/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml +++ b/source/packages/plg_webservices_mokosuiterealty/mokosuiterealty.xml @@ -3,7 +3,7 @@ Web Services - MokoSuite Realty mokosuiterealty Moko Consulting - 01.00.39 + 01.00.40 GPL-3.0-or-later Moko\Plugin\WebServices\MokoSuiteRealty srcservices diff --git a/source/pkg_mokosuiterealty.xml b/source/pkg_mokosuiterealty.xml index 3efaf17..36ef50c 100644 --- a/source/pkg_mokosuiterealty.xml +++ b/source/pkg_mokosuiterealty.xml @@ -2,7 +2,7 @@ Package - MokoSuite Realty mokosuiterealty - 01.00.39 + 01.00.40 2026-06-21 Moko Consulting hello@mokoconsulting.tech