diff --git a/.mokogitea/workflows/issue-branch.yml b/.mokogitea/workflows/issue-branch.yml
index eb67f8f..355c4ed 100644
--- a/.mokogitea/workflows/issue-branch.yml
+++ b/.mokogitea/workflows/issue-branch.yml
@@ -5,7 +5,7 @@
# FILE INFORMATION
# DEFGROUP: MokoGitea.Workflow
# INGROUP: mokocli.Automation
-# VERSION: 01.00.00
+# VERSION: 01.02.38
# BRIEF: Auto-create feature branch when an issue is opened
name: "Universal: Issue Branch"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f984fc6..4511090 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [1.2.0] - Unreleased
### Added
+- **Admin menu short-name constant** — the Administrator → Components menu now shows a compact label via `COM_MOKOSUITESTORELOCATOR_SHORT` ("Store Locator"); defined in the admin sys.ini (#75) — also renamed the `COM_MOKOJOOMSTORELOCATOR` language-key stem to `COM_MOKOSUITESTORELOCATOR`.
- Multi-category support with parent/child hierarchy (#1)
- Categories admin CRUD — list, edit, color picker, custom marker icon
- Location-category junction table (many-to-many)
@@ -51,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- SQL migration compatibility: removed `DROP COLUMN IF EXISTS` (MySQL 8.0.13+ only) in favor of plain `DROP COLUMN`
+- Honest installer success: package postflight now verifies every bundled child extension (component, modules, plugin) actually landed in `#__extensions` before showing the license/next-steps message; if any is missing it shows an error and suppresses the success message instead of reporting a false success. Fails open so a transient DB/IO glitch never fakes a failure.
## [1.1.0] - 2026-06-23
diff --git a/CLAUDE.md b/CLAUDE.md
index 100d18d..d524c63 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code when working with this repository.
## Project Overview
-**MokoSuiteStoreLocator** -- A Joomla 5/6 package providing a store locator listing component with coordinating map and search modules.
+**MokoSuiteStoreLocator** -- A Joomla 6 package providing a store locator listing component with coordinating map and search modules.
| Field | Value |
|---|---|
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index cd89cde..9fe3a3a 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -14,7 +14,7 @@
DEFGROUP:
INGROUP: Project.Documentation
REPO:
- VERSION: 01.02.00
+ VERSION: 01.02.38
PATH: ./CODE_OF_CONDUCT.md
BRIEF: Reference + packaging repo for Moko Consulting Developer GPT Other Default
-->
diff --git a/GOVERNANCE.md b/GOVERNANCE.md
index 095cdf2..fbb8627 100644
--- a/GOVERNANCE.md
+++ b/GOVERNANCE.md
@@ -19,12 +19,12 @@
DEFGROUP: mokoconsulting-tech.Template-Joomla
INGROUP: MokoStandards.Governance
REPO: https://github.com/mokoconsulting-tech/Template-Joomla
- VERSION: 01.02.00
+ VERSION: 01.02.38
PATH: /GOVERNANCE.md
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://git.mokoconsulting.tech/MokoConsulting/.mokogitea/wiki) v04.00.04.
+[MokoStandards](https://github.com/mokoconsulting-tech/MokoStandards) 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/README.md b/README.md
index 51dcca5..a5778c6 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# MokoSuiteStoreLocator
-A Joomla 5/6 package providing a store locator listing component with coordinating map and search modules.
+A Joomla 6 package providing a store locator listing component with coordinating map and search modules.
## Package Contents
@@ -13,8 +13,8 @@ A Joomla 5/6 package providing a store locator listing component with coordinati
## Requirements
-- Joomla 5.x or 6.x
-- PHP 8.2+
+- Joomla 6
+- PHP 8.3+
- MySQL 8.0+ / MariaDB 10.4+
## Installation
diff --git a/SECURITY.md b/SECURITY.md
index 1cf7776..e896ea1 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -23,7 +23,7 @@ DEFGROUP: [PROJECT_NAME]
INGROUP: [PROJECT_NAME].Documentation
REPO: [REPOSITORY_URL]
PATH: /SECURITY.md
-VERSION: 01.02.00
+VERSION: 01.02.38
BRIEF: Security vulnerability reporting and handling policy
-->
diff --git a/composer.json b/composer.json
index 10afe3a..1f03461 100644
--- a/composer.json
+++ b/composer.json
@@ -12,7 +12,7 @@
}
],
"require": {
- "php": ">=8.1"
+ "php": ">=8.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
diff --git a/source/packages/com_mokosuitestorelocator/admin/forms/category.xml b/source/packages/com_mokosuitestorelocator/admin/forms/category.xml
index 2453fab..cefd57c 100644
--- a/source/packages/com_mokosuitestorelocator/admin/forms/category.xml
+++ b/source/packages/com_mokosuitestorelocator/admin/forms/category.xml
@@ -26,11 +26,11 @@
| - + | - + |
diff --git a/source/packages/com_mokosuitestorelocator/admin/tmpl/category/edit.php b/source/packages/com_mokosuitestorelocator/admin/tmpl/category/edit.php
index 4eb2923..23a7e68 100644
--- a/source/packages/com_mokosuitestorelocator/admin/tmpl/category/edit.php
+++ b/source/packages/com_mokosuitestorelocator/admin/tmpl/category/edit.php
@@ -36,7 +36,7 @@ HTMLHelper::_('behavior.keepalive');
-
+
form->renderField('color'); ?>
diff --git a/source/packages/com_mokosuitestorelocator/admin/tmpl/import/default.php b/source/packages/com_mokosuitestorelocator/admin/tmpl/import/default.php
index b311f27..a40e6bb 100644
--- a/source/packages/com_mokosuitestorelocator/admin/tmpl/import/default.php
+++ b/source/packages/com_mokosuitestorelocator/admin/tmpl/import/default.php
@@ -22,12 +22,12 @@ use Joomla\CMS\Session\Session;
-
-
+
+
@@ -35,7 +35,7 @@ use Joomla\CMS\Session\Session;
|
|---|