diff --git a/README.md b/README.md index 131ef930f..67b172402 100644 --- a/README.md +++ b/README.md @@ -95,8 +95,6 @@ You can access the different views by reaching the ontime server, in your browse For the backstage views ------------------------------------------------------------- IP.ADDRESS:4001/timer > Presenter / Stage timer view -IP.ADDRESS:4001/minimal > Simple timer view -IP.ADDRESS:4001/clock > Simple clock view IP.ADDRESS:4001/backstage > Stage Manager / Backstage view IP.ADDRESS:4001/countdown > Countdown to anything IP.ADDRESS:4001/studio > Studio Clock diff --git a/apps/client/index.html b/apps/client/index.html index 7332b74e4..d93477afc 100644 --- a/apps/client/index.html +++ b/apps/client/index.html @@ -16,7 +16,7 @@ diff --git a/apps/client/src/AppRouter.tsx b/apps/client/src/AppRouter.tsx index 926c91849..ef5777b4d 100644 --- a/apps/client/src/AppRouter.tsx +++ b/apps/client/src/AppRouter.tsx @@ -23,23 +23,17 @@ const Cuesheet = React.lazy(() => import('./views/cuesheet/ProtectedCuesheet')); const Operator = React.lazy(() => import('./features/operator/OperatorExport')); const TimerView = React.lazy(() => import('./views/timer/Timer')); -const MinimalTimerView = React.lazy(() => import('./features/viewers/minimal-timer/MinimalTimer')); -const ClockView = React.lazy(() => import('./features/viewers/clock/Clock')); const Countdown = React.lazy(() => import('./views/countdown/Countdown')); const Backstage = React.lazy(() => import('./views/backstage/Backstage')); const Timeline = React.lazy(() => import('./views/timeline/TimelinePage')); -const Lower = React.lazy(() => import('./features/viewers/lower-thirds/LowerThird')); const StudioClock = React.lazy(() => import('./views/studio/Studio')); const ProjectInfo = React.lazy(() => import('./views/project-info/ProjectInfo')); const STimer = withPreset(withData(TimerView)); -const SMinimalTimer = withPreset(withData(MinimalTimerView)); -const SClock = withPreset(withData(ClockView)); const SCountdown = withPreset(withData(Countdown)); const SBackstage = withPreset(withData(Backstage)); const SProjectInfo = withPreset(ProjectInfo); // NOTE: ProjectInfo does not use the viewWrapper since it has no options -const SLowerThird = withPreset(withData(Lower)); const SStudio = withPreset(withData(StudioClock)); const STimeline = withPreset(withData(Timeline)); const PCuesheet = withPreset(Cuesheet); @@ -86,22 +80,6 @@ export default function AppRouter() { } /> - - - - } - /> - - - - } - /> } /> - {/*/!* Lower third cannot have a loading screen *!/*/} - } /> Enter custom path