Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .env.dvr-process.example

This file was deleted.

2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,4 @@ CHAT_ALLOWED_DOMAINS=

# Container images for the generated provisioning scripts, built from docker/.
#STREAM_IMAGE_FFMPEG_HLS=
#STREAM_IMAGE_DVR_UPLOADER=
#STREAM_IMAGE_ARCHIVE_UPLOADER=
2 changes: 1 addition & 1 deletion .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.2'
php-version: '8.5'
- uses: shogo82148/actions-setup-mysql@v1
with:
mysql-version: '8.0'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.7-labs
FROM dunglas/frankenphp:php8.4 as base
FROM dunglas/frankenphp:php8.5 as base
WORKDIR /app

ENV COMPOSER_MEMORY_LIMIT=-1
Expand Down
182 changes: 0 additions & 182 deletions app/Console/Commands/ExtractDvrSegments.php

This file was deleted.

125 changes: 0 additions & 125 deletions app/Http/Controllers/Api/SrsDvrController.php

This file was deleted.

2 changes: 2 additions & 0 deletions app/Http/Controllers/Manage/SourceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public function create(): Response
'name' => '',
'slug' => '',
'priority' => 0,
'is_featured' => false,
'description' => '',
],
]);
Expand Down Expand Up @@ -96,6 +97,7 @@ public function edit(Source $source): Response
'slug' => $source->slug,
'status' => $source->status?->value,
'priority' => $source->priority,
'is_featured' => (bool) $source->is_featured,
'description' => $source->description,
'rtmp_url' => $source->getRtmpServerUrl(),
'stream_key' => $source->getObsStreamKey(),
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ScheduleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function index()

return Inertia::render('Schedule', [
'days' => $days,
'primaryChannel' => Source::ordered()->first()?->name,
'primaryChannel' => Source::featured()?->name,
'currentTime' => now()->toIso8601String(),
]);
}
Expand Down
Loading
Loading