Open-source Unity development tooling collected as three independently installable UPM packages. Each package has its own package ID, semantic version, README, changelog, and release line; package.json is the version source of truth.
| Package | Version | Purpose | Declared Unity floor |
|---|---|---|---|
com.foxsterdev.devaccelerationsystem |
1.0.2 |
Editor-side compilation checks across build targets and define-symbol combinations. | 2020.3 |
com.foxsterdev.thebestlogger |
4.4.1 |
Configurable runtime logging, capture, target isolation, and stability integrations. | 2022.3 |
com.foxsterdev.loqui |
0.3.1 |
Fallback-first localization with catalog, TMP, and editor tooling. | 2022.3 |
- Install Dev Acceleration System to compile-check representative targets and scripting defines before a full build.
- Install TheBestLogger for a configurable Unity logging pipeline.
- Install Loqui for localizable text whose code literal is always a safe fallback.
The versions above are release candidates in the current source tree. Their package-specific tags have not been authorized or published, so the Git URLs below are a release recipe, not yet installable public URLs. The historical repository-wide tag 4.4.0 is retained only as an old snapshot and is not a clean standalone-package release.
{
"dependencies": {
"com.foxsterdev.devaccelerationsystem": "https://github.com/FoxsterDev/DevAccelerationSystem.git?path=/DevAccelerationSystem/Assets/DevAccelerationSystem#com.foxsterdev.devaccelerationsystem/1.0.2",
"com.foxsterdev.thebestlogger": "https://github.com/FoxsterDev/DevAccelerationSystem.git?path=/DevAccelerationSystem/Assets/TheBestLogger#com.foxsterdev.thebestlogger/4.4.1",
"com.foxsterdev.loqui": "https://github.com/FoxsterDev/DevAccelerationSystem.git?path=/DevAccelerationSystem/Assets/Loqui#com.foxsterdev.loqui/0.3.1"
}
}Install only the package you need. Before the release tags exist, use a reviewed commit SHA for a reproducible internal pin; do not use master for a production pin.
OpenUPM publication has not been performed. The repository is prepared for it, but registry submission and release tags require maintainer authorization. See release policy.
The declared unity value in each package manifest is the compatibility floor, not proof of a tested matrix. The modernization target is Unity 2022.3 LTS, Unity 6000.0 LTS, and Unity 6000.3 LTS; actual verification evidence is recorded separately. See compatibility policy and validation.
Package roots intentionally remain under DevAccelerationSystem/Assets/ for the current release line, so existing Git UPM URLs remain valid. This is valid for OpenUPM and is documented in ADR-001. A future major release may move roots only with an explicit migration path.
Run the license-free repository gate from the repository root:
python3 scripts/validate_repo.pyFor Unity-specific validation and release prerequisites, see validation, contributing, troubleshooting, and the release checklist.