Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Nov 11, 2024
1 parent a7a3e4a commit 2d17711
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
- 🦺 Offline: Download only used images
- 🦺 Debrid streaming: Fixed MPV --title flag
- 🦺 Debrid streaming: Fixed stream cancellation
- ⚡️ Media streaming: Custom FFmpeg hardware acceleration options
- 🏗️ Moved filename parser to separate package

## v2.2.2
Expand Down
3 changes: 1 addition & 2 deletions seanime-web/src/app/(main)/debrid/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { useDebridCancelDownload, useDebridDeleteTorrent, useDebridDownloadTorre
import { CustomLibraryBanner } from "@/app/(main)/(library)/_containers/custom-library-banner"
import { useWebsocketMessageListener } from "@/app/(main)/_hooks/handle-websockets"
import { useServerStatus } from "@/app/(main)/_hooks/use-server-status"
import { BetaBadge } from "@/components/shared/beta-badge"
import { ConfirmationDialog, useConfirmationDialog } from "@/components/shared/confirmation-dialog"
import { LuffyError } from "@/components/shared/luffy-error"
import { PageWrapper } from "@/components/shared/page-wrapper"
Expand Down Expand Up @@ -108,7 +107,7 @@ function Content() {
<>
<div className="flex items-center w-full">
<div>
<h2>{getServiceName(serverStatus?.debridSettings?.provider!)} <BetaBadge /></h2>
<h2>{getServiceName(serverStatus?.debridSettings?.provider!)}</h2>
<p className="text-[--muted]">
See your debrid service torrents
</p>
Expand Down
3 changes: 1 addition & 2 deletions seanime-web/src/app/(main)/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import { MediastreamSettings } from "@/app/(main)/settings/_containers/mediastre
import { ServerSettings } from "@/app/(main)/settings/_containers/server-settings"
import { TorrentstreamSettings } from "@/app/(main)/settings/_containers/torrentstream-settings"
import { UISettings } from "@/app/(main)/settings/_containers/ui-settings"
import { BetaBadge } from "@/components/shared/beta-badge"
import { PageWrapper } from "@/components/shared/page-wrapper"
import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "@/components/ui/accordion"
import { cn } from "@/components/ui/core/styling"
Expand Down Expand Up @@ -562,7 +561,7 @@ export default function Page() {

<TabsContent value="debrid" className="space-y-6">

<h3>Debrid Service <BetaBadge /></h3>
<h3>Debrid Service</h3>

<DebridSettings />

Expand Down

0 comments on commit 2d17711

Please sign in to comment.