d18c10996a
- Add release_names.json mapping version ranges to codenames - Add release_name property to Settings in app/config.py - Update build metadata script to include codename in RUNTIME_INFO - Display release codename in status dashboard and page footer - Inject release_name globally via template response wrapper - Update ROADMAP.md with codenames for all milestone releases - Add docs/ReleaseNaming.md with naming guide and best practices - Add comprehensive tests for release name resolution Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
37 lines
1.4 KiB
JSON
37 lines
1.4 KiB
JSON
{
|
|
"_description": "Maps version patterns to release codenames. Used by the application at runtime and in build metadata.",
|
|
"_format": "Each key is a version string (e.g., '0.5.0') or a minor version prefix (e.g., '0.5'). The value is an object with 'codename' and optionally 'description' and 'milestone'.",
|
|
"releases": {
|
|
"0.5": {
|
|
"codename": "Foundation",
|
|
"description": "Core platform with multi-provider storage, AI extraction, and web UI",
|
|
"milestone": "v0.5.0 - Core Platform"
|
|
},
|
|
"0.6": {
|
|
"codename": "Clarity",
|
|
"description": "Enhanced search, filtering, and improved UI/UX",
|
|
"milestone": "v0.6.0 - Search & UX"
|
|
},
|
|
"0.7": {
|
|
"codename": "Conductor",
|
|
"description": "Workflow automation, custom pipelines, and rule-based processing",
|
|
"milestone": "v0.7.0 - Workflow Automation"
|
|
},
|
|
"1.0": {
|
|
"codename": "Summit",
|
|
"description": "Enterprise-ready with multi-tenancy, RBAC, and horizontal scaling",
|
|
"milestone": "v1.0.0 - Enterprise"
|
|
},
|
|
"1.1": {
|
|
"codename": "Bridge",
|
|
"description": "Collaboration features, document sharing, and analytics",
|
|
"milestone": "v1.1.0 - Collaboration"
|
|
},
|
|
"2.0": {
|
|
"codename": "Horizon",
|
|
"description": "On-premise AI, advanced document management, and platform expansion",
|
|
"milestone": "v2.0.0 - Next Generation"
|
|
}
|
|
}
|
|
}
|