version: Bump to 0.2.0 + Changelog (Admin-Kataloge)
CRITICAL FIX: Versions-Bump nachgeholt (war Pflicht laut ARCHITECTURE.md §2.5) Backend: - APP_VERSION: 0.1.0 → 0.2.0 - BUILD_DATE: 2026-04-21 → 2026-04-23 - DB_SCHEMA_VERSION: 20260421 → 20260422 (Migration 007) - MODULE_VERSIONS: catalogs 1.0.0 (neu), exercises 0.2.0 Frontend: - version.js neu erstellt - PAGE_VERSIONS: ExercisesPage 1.1.0, AdminCatalogsPage 1.0.0 Changelog: - Admin-Kataloge Feature komplett dokumentiert - Migration 007, Frontend-Integration, Formular-Standardisierung Deployment sollte jetzt korrekte Version zeigen + Katalog-Endpoints funktionieren.
This commit is contained in:
parent
c7cda03201
commit
0c7caea847
|
|
@ -1,8 +1,8 @@
|
||||||
# Shinkan Jinkendo Version Information
|
# Shinkan Jinkendo Version Information
|
||||||
|
|
||||||
APP_VERSION = "0.1.0"
|
APP_VERSION = "0.2.0"
|
||||||
BUILD_DATE = "2026-04-21"
|
BUILD_DATE = "2026-04-23"
|
||||||
DB_SCHEMA_VERSION = "20260421"
|
DB_SCHEMA_VERSION = "20260422"
|
||||||
|
|
||||||
MODULE_VERSIONS = {
|
MODULE_VERSIONS = {
|
||||||
"auth": "1.0.0",
|
"auth": "1.0.0",
|
||||||
|
|
@ -11,16 +11,30 @@ MODULE_VERSIONS = {
|
||||||
"groups": "0.1.0",
|
"groups": "0.1.0",
|
||||||
"skills": "0.1.0",
|
"skills": "0.1.0",
|
||||||
"methods": "0.1.0",
|
"methods": "0.1.0",
|
||||||
"exercises": "0.1.0",
|
"exercises": "0.2.0", # Updated: Katalog-Integration
|
||||||
"training_units": "0.1.0",
|
"training_units": "0.1.0",
|
||||||
"training_programs": "0.1.0",
|
"training_programs": "0.1.0",
|
||||||
"planning": "0.1.0",
|
"planning": "0.1.0",
|
||||||
"import_wiki": "0.1.0",
|
"import_wiki": "0.1.0",
|
||||||
"admin": "1.0.0",
|
"admin": "1.0.0",
|
||||||
"membership": "1.0.0",
|
"membership": "1.0.0",
|
||||||
|
"catalogs": "1.0.0", # NEW: Admin-Kataloge
|
||||||
}
|
}
|
||||||
|
|
||||||
CHANGELOG = [
|
CHANGELOG = [
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"date": "2026-04-23",
|
||||||
|
"changes": [
|
||||||
|
"Feature: Admin-verwaltbare Kataloge (Focus Areas, Training Styles, Training Characters, Skill Categories)",
|
||||||
|
"Feature: Trainer-Fokusbereich-Zuordnung für rollenbasierte Filterung",
|
||||||
|
"Migration 007: Katalog-Tabellen + Seed-Daten",
|
||||||
|
"Frontend: AdminCatalogsPage mit 5 Tabs (CRUD für alle Kataloge)",
|
||||||
|
"Frontend: ExercisesPage nutzt Katalog-Dropdowns (kein Hard-Coding mehr)",
|
||||||
|
"Frontend: Trainingsstil-Dropdown hinzugefügt (fehlte komplett)",
|
||||||
|
"Standardisierung: Alle Formulare mit Labels oben, volle Breite, linksbündig",
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"date": "2026-04-21",
|
"date": "2026-04-21",
|
||||||
|
|
|
||||||
15
frontend/src/version.js
Normal file
15
frontend/src/version.js
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
// Shinkan Jinkendo Frontend Version
|
||||||
|
|
||||||
|
export const APP_VERSION = "0.2.0"
|
||||||
|
export const BUILD_DATE = "2026-04-23"
|
||||||
|
|
||||||
|
export const PAGE_VERSIONS = {
|
||||||
|
LoginPage: "1.0.0",
|
||||||
|
Dashboard: "1.0.0",
|
||||||
|
ProfilePage: "1.0.0",
|
||||||
|
ExercisesPage: "1.1.0", // Updated: Katalog-Integration
|
||||||
|
ClubsPage: "1.0.0",
|
||||||
|
SkillsPage: "1.0.0",
|
||||||
|
TrainingPlanningPage: "1.0.0",
|
||||||
|
AdminCatalogsPage: "1.0.0", // NEW
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user