- Introduced a new PATCH endpoint `/api/exercises/bulk-metadata` to allow bulk updates of visibility and status for exercises, supporting up to 500 IDs. - Enhanced the ExercisesListPage to include a bulk update modal for managing exercise visibility and status. - Updated frontend API utility to handle bulk patch requests. - Bumped application version to 0.8.29 and updated changelog to reflect these changes.
21 lines
698 B
JavaScript
21 lines
698 B
JavaScript
// Shinkan Jinkendo Frontend Version
|
|
|
|
export const APP_VERSION = "0.8.29"
|
|
export const BUILD_DATE = "2026-05-05"
|
|
|
|
export const PAGE_VERSIONS = {
|
|
LoginPage: "1.0.0",
|
|
Dashboard: "1.0.0",
|
|
AccountSettingsPage: "1.0.0",
|
|
ExercisesPage: "1.2.0", // Massenänderung Sichtbarkeit/Status auf der Liste
|
|
ClubsPage: "1.1.0",
|
|
SkillsPage: "1.0.0",
|
|
TrainingPlanningPage: "1.3.1",
|
|
TrainingFrameworkProgramsListPage: "1.1.0",
|
|
TrainingFrameworkProgramEditPage: "1.5.0",
|
|
TrainingUnitRunPage: "1.1.0",
|
|
TrainingCoachPage: "1.0.0",
|
|
AdminCatalogsPage: "2.2.0", // Updated: Frontend API Calls & Field Names für renamed tables
|
|
TrainerContextsPage: "1.0.0", // New: Trainer-Kontext-Verwaltung
|
|
}
|