Playing a video meant asking the server to re-encode it, always. That
decision was made nowhere and written down nowhere, so whoever needed it
re-derived it downstream — the player worked out whether it had been handed
a playlist by looking for ".m3u8" in the URL, in two places. A viewer paid
for a transcode of a file their device could have played untouched, and the
app could not tell them which it was.
One negotiation now produces one self-describing StreamSelection — direct
play, remux or transcode; over a playlist, a plain HTTP file, or a local one
— and every renderer consumes that same answer.
Measured against the development server (Jellyfin 10.11.5), 400 items
sampled for codec mix and 40 put through a real PlaybackInfo negotiation
per profile:
Linux / WebKitGTK (h264 only, 2ch) 3/40 — 7% direct play
Android / ExoPlayer (hevc, ac3/eac3, 6ch) 34/40 — 85% direct play
The library is ~80% hevc, which is why the two diverge so hard. The payoff
is overwhelmingly Android, where 85% of plays were starting a transcode
nobody needed. Linux stays near 7% until libmpv decodes the picture — the
h264-only profile is a WebKitGTK constraint, not a JellyTau choice.
DR-219 StreamSelection: url + tagged Transport (hls/progressive/localFile)
+ PlaybackKind (directPlay/directStream/transcode) + the negotiated
rendition + this source's ladder + a needs_transcoding flag derived
in Rust so the rule is answered once. Both enums are serde-tagged
so the frontend matches a discriminant, not a substring. The paths
that never negotiate get the same shape from Rust rather than
assembling one — media_local_selection for a downloaded file,
LiveStreamInfo.transport for a live channel — so there is no second
place where a transport is decided.
DR-220 The ceiling becomes two levels: a durable device default (Settings,
persisted) and a per-playback override the in-player picker sets.
The picker had called itself a "this film, this connection" control
since it was written but wrote the process-wide default, so dropping
one awkward film to 2 Mbps silently capped every video played
afterwards for the rest of the process, with Settings still showing
the old value. The override is cleared whenever playback moves to a
new item, which stops it surviving into an autoplayed next episode.
effective_streaming_quality() is the single resolution point.
DR-221 The quality picker is filled from what this media source can offer.
Rust marks a rung exceeds_source when its ceiling is at or above the
source's own bitrate — such a rung is another way to spell Original
— and the frontend does not draw those. Original is never marked; a
source whose bitrate the server does not report marks nothing, which
keeps every rung offered.
DR-222 Direct play and direct stream are negotiated, with two client-side
overrides on top because the server's answer is right about the file
and wrong about what this app will do with it: undecodable audio
(Jellyfin 10.11.5 honours a DirectPlayProfile's container and video
codec but ignores its audio codec, so it offers direct play for an
E-AC-3 track the webview renders in silence) and a viewer-pinned
audio track the file does not default to. A direct stream is a remux
and is deliberately not counted as transcoding.
DR-223 Dropped on measurement, not deferred. A master playlist from this
server carries exactly one EXT-X-STREAM-INF: Jellyfin builds it from
the single rendition the request asked for rather than publishing a
ladder. So there is no adaptation for hls.js to be preserving and
none mpv would lose — the claim that there was, in
playback-backend-unification.md, does not hold. Recorded rather than
deleted because it is a measurement: a server that does publish a
ladder would change the answer.
DR-224 Every backend consumes the same selection. The queue item carries
the transport, so player_seek_video picks its seek strategy from the
backend's decision instead of the last stream_url.contains(".m3u8")
in the codebase. Items queued by a path that never negotiated carry
None and fall back to needs_transcoding, which is exact rather than
a guess because every transcode this app requests is HLS (DR-140).
The frontend loader decision moves to streamTransport.ts so it can be
tested: the two cases that pin it are the ones that failed against the old
implementation — a progressive stream whose URL contains ".m3u8" must not
get an HLS loader, and an HLS stream whose URL contains none must.
Also verified the URL the direct-play branch builds actually serves playable
bytes: 206, video/mp4, valid ISO-BMFF, and a mid-file range works, so
seeking a direct play works.
The spec is folded into docs/architecture/{01,02,03} and deleted, per the
rule that docs/specs holds only work that has not shipped. DR-121 leaves
read-through-media-cache.md with a pointer; that spec keeps its capture half.
Not verified: real playback on a device. Direct play changes what actually
gets played, and neither fixtures nor curl prove the WebKitGTK and ExoPlayer
paths render it.
12709 lines
490 KiB
Markdown
12709 lines
490 KiB
Markdown
# Code Traceability Matrix
|
|
|
|
**Generated:** 8/21/2026, 10:38:28 PM
|
|
|
|
## Summary
|
|
|
|
- **Total Files Scanned:** 391
|
|
- **Total TRACES Found:** 1067
|
|
- **Requirements Covered:**
|
|
- User Requirements (UR): 78
|
|
- Integration Requirements (IR): 25
|
|
- Development Requirements (DR): 194
|
|
- Jellyfin API Requirements (JA): 35
|
|
|
|
## Requirements by Type
|
|
|
|
### User Requirements (UR)
|
|
```
|
|
UR-002, UR-003, UR-004, UR-005, UR-006, UR-007, UR-008, UR-009, UR-010, UR-011, UR-012, UR-013, UR-014, UR-015, UR-016, UR-017, UR-018, UR-019, UR-020, UR-021, UR-022, UR-023, UR-024, UR-025, UR-026, UR-027, UR-028, UR-029, UR-030, UR-031, UR-032, UR-033, UR-034, UR-035, UR-036, UR-037, UR-038, UR-039, UR-040, UR-041, UR-042, UR-043, UR-044, UR-045, UR-046, UR-047, UR-048, UR-049, UR-050, UR-051, UR-052, UR-053, UR-054, UR-055, UR-056, UR-057, UR-058, UR-059, UR-060, UR-061, UR-062, UR-063, UR-064, UR-065, UR-066, UR-067, UR-068, UR-069, UR-070, UR-071, UR-072, UR-073, UR-074, UR-075, UR-076, UR-077, UR-078, UR-079
|
|
```
|
|
|
|
### Integration Requirements (IR)
|
|
```
|
|
IR-003, IR-004, IR-006, IR-008, IR-009, IR-010, IR-011, IR-012, IR-013, IR-014, IR-015, IR-016, IR-018, IR-019, IR-020, IR-021, IR-022, IR-023, IR-024, IR-025, IR-026, IR-027, IR-028, IR-030, IR-031
|
|
```
|
|
|
|
### Development Requirements (DR)
|
|
```
|
|
DR-001, DR-002, DR-003, DR-004, DR-005, DR-006, DR-007, DR-009, DR-010, DR-011, DR-012, DR-013, DR-014, DR-015, DR-016, DR-017, DR-018, DR-020, DR-021, DR-022, DR-023, DR-024, DR-025, DR-026, DR-027, DR-028, DR-029, DR-030, DR-032, DR-033, DR-034, DR-035, DR-036, DR-037, DR-038, DR-039, DR-040, DR-041, DR-042, DR-043, DR-044, DR-045, DR-047, DR-048, DR-049, DR-050, DR-051, DR-052, DR-053, DR-054, DR-055, DR-056, DR-057, DR-058, DR-059, DR-060, DR-061, DR-062, DR-063, DR-064, DR-065, DR-066, DR-067, DR-068, DR-069, DR-070, DR-074, DR-075, DR-076, DR-077, DR-078, DR-079, DR-080, DR-081, DR-082, DR-083, DR-084, DR-085, DR-086, DR-087, DR-088, DR-089, DR-090, DR-091, DR-092, DR-093, DR-095, DR-096, DR-097, DR-098, DR-099, DR-100, DR-101, DR-102, DR-103, DR-104, DR-105, DR-106, DR-107, DR-108, DR-109, DR-110, DR-111, DR-112, DR-113, DR-114, DR-115, DR-116, DR-117, DR-118, DR-119, DR-120, DR-121, DR-123, DR-126, DR-127, DR-128, DR-129, DR-130, DR-131, DR-132, DR-133, DR-134, DR-135, DR-136, DR-137, DR-140, DR-141, DR-142, DR-143, DR-147, DR-148, DR-149, DR-150, DR-151, DR-152, DR-153, DR-154, DR-155, DR-156, DR-157, DR-158, DR-159, DR-160, DR-162, DR-167, DR-168, DR-169, DR-170, DR-171, DR-173, DR-174, DR-175, DR-176, DR-177, DR-178, DR-179, DR-180, DR-181, DR-182, DR-183, DR-185, DR-186, DR-188, DR-189, DR-193, DR-195, DR-196, DR-197, DR-198, DR-201, DR-203, DR-204, DR-205, DR-206, DR-207, DR-209, DR-210, DR-211, DR-212, DR-213, DR-215, DR-216, DR-217, DR-218, DR-219, DR-220, DR-221, DR-223, DR-224, DR-225, DR-226, DR-227, DR-229
|
|
```
|
|
|
|
### Jellyfin API Requirements (JA)
|
|
```
|
|
JA-001, JA-002, JA-003, JA-004, JA-005, JA-006, JA-007, JA-008, JA-009, JA-010, JA-011, JA-012, JA-013, JA-014, JA-015, JA-016, JA-017, JA-018, JA-019, JA-020, JA-021, JA-022, JA-023, JA-024, JA-025, JA-026, JA-028, JA-029, JA-030, JA-031, JA-032, JA-033, JA-034, JA-035, JA-036
|
|
```
|
|
|
|
## Detailed Mapping
|
|
|
|
### IR-003
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mpv_backend_test.rs`](../src-tauri/src/player/mpv_backend_test.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L39)
|
|
- **Line:** 39
|
|
- **Context:** `pub fn playback_failed<S: Into<String>>(message: S) -> Self {`
|
|
|
|
### IR-004
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L39)
|
|
- **Line:** 39
|
|
- **Context:** `pub fn playback_failed<S: Into<String>>(message: S) -> Self {`
|
|
|
|
### IR-006
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L1123)
|
|
- **Line:** 1123
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L1425)
|
|
- **Line:** 1425
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L144)
|
|
- **Line:** 144
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L166)
|
|
- **Line:** 166
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-008
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L438)
|
|
- **Line:** 438
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-009
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/stores/auth.test.ts`](../src/lib/stores/auth.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/auth.rs`](../src-tauri/src/commands/auth.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-010
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2036)
|
|
- **Line:** 2036
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-011
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-012
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/playbackMode.ts`](../src/lib/stores/playbackMode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-013
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-014
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/lib/stores/auth.test.ts`](../src/lib/stores/auth.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L465)
|
|
- **Line:** 465
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/auth.rs`](../src-tauri/src/commands/auth.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L480)
|
|
- **Line:** 480
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L905)
|
|
- **Line:** 905
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L924)
|
|
- **Line:** 924
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L941)
|
|
- **Line:** 941
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-015
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playback_reporting.rs`](../src-tauri/src/commands/playback_reporting.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-016
|
|
|
|
**Locations:** 18 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2639)
|
|
- **Line:** 2639
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3408)
|
|
- **Line:** 3408
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L353)
|
|
- **Line:** 353
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L243)
|
|
- **Line:** 243
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L371)
|
|
- **Line:** 371
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L472)
|
|
- **Line:** 472
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L942)
|
|
- **Line:** 942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2403)
|
|
- **Line:** 2403
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L445)
|
|
- **Line:** 445
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2918)
|
|
- **Line:** 2918
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2975)
|
|
- **Line:** 2975
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3007)
|
|
- **Line:** 3007
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1717)
|
|
- **Line:** 1717
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-018
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L154)
|
|
- **Line:** 154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1752)
|
|
- **Line:** 1752
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L119)
|
|
- **Line:** 119
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-019
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L124)
|
|
- **Line:** 124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L141)
|
|
- **Line:** 141
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1534)
|
|
- **Line:** 1534
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1731)
|
|
- **Line:** 1731
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-020
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L658)
|
|
- **Line:** 658
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L678)
|
|
- **Line:** 678
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L747)
|
|
- **Line:** 747
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L759)
|
|
- **Line:** 759
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L833)
|
|
- **Line:** 833
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L35)
|
|
- **Line:** 35
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-021
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/playback_mode/mod.rs`](../src-tauri/src/playback_mode/mod.rs#L165)
|
|
- **Line:** 165
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-022
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1717)
|
|
- **Line:** 1717
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2723)
|
|
- **Line:** 2723
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2736)
|
|
- **Line:** 2736
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-023
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/storage/people.rs`](../src-tauri/src/commands/storage/people.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-024
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1517)
|
|
- **Line:** 1517
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1525)
|
|
- **Line:** 1525
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1268)
|
|
- **Line:** 1268
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1748)
|
|
- **Line:** 1748
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1775)
|
|
- **Line:** 1775
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1953)
|
|
- **Line:** 1953
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-025
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/utils/backgroundAudio.test.ts`](../src/lib/utils/backgroundAudio.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/backgroundAudio.ts`](../src/lib/utils/backgroundAudio.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-026
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/pictureInPicture.ts`](../src/lib/utils/pictureInPicture.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-027
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/connectivity.rs`](../src-tauri/src/commands/connectivity.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-028
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-030
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L327)
|
|
- **Line:** 327
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1566)
|
|
- **Line:** 1566
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-031
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](../src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.ts`](../src/lib/utils/safeArea.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-001
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2885)
|
|
- **Line:** 2885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2942)
|
|
- **Line:** 2942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/rustReportHost.ts`](../src/lib/player/adapters/rustReportHost.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.regression.test.ts`](../src/lib/services/playerEvents.regression.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](../src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L189)
|
|
- **Line:** 189
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/player.ts`](../src/lib/stores/player.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/player.ts`](../src/lib/stores/player.ts#L31)
|
|
- **Line:** 31
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/state.rs`](../src-tauri/src/player/state.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/state.rs`](../src-tauri/src/player/state.rs#L25)
|
|
- **Line:** 25
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-002
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2751)
|
|
- **Line:** 2751
|
|
- **Context:** `export type PlaybackProgress = { itemId: string;`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L60)
|
|
- **Line:** 60
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-003
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2867)
|
|
- **Line:** 2867
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L154)
|
|
- **Line:** 154
|
|
- **Context:** `pub enum MediaType {`
|
|
|
|
### DR-004
|
|
|
|
**Locations:** 16 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L174)
|
|
- **Line:** 174
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2689)
|
|
- **Line:** 2689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1051)
|
|
- **Line:** 1051
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/index.ts`](../src/lib/player/adapters/index.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](../src/lib/player/adapters/nativeAdapter.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](../src/lib/player/adapters/nativeAdapter.ts#L59)
|
|
- **Line:** 59
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/webviewAudioAdapter.ts`](../src/lib/player/adapters/webviewAudioAdapter.ts#L19)
|
|
- **Line:** 19
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackCapabilities.ts`](../src/lib/services/playbackCapabilities.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/webviewAudio.ts`](../src/lib/services/webviewAudio.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1988)
|
|
- **Line:** 1988
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2005)
|
|
- **Line:** 2005
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/webview_audio_backend.rs`](../src-tauri/src/player/webview_audio_backend.rs#L25)
|
|
- **Line:** 25
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/webview_audio_backend.rs`](../src-tauri/src/player/webview_audio_backend.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L39)
|
|
- **Line:** 39
|
|
- **Context:** `pub fn playback_failed<S: Into<String>>(message: S) -> Self {`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L257)
|
|
- **Line:** 257
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-005
|
|
|
|
**Locations:** 13 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3201)
|
|
- **Line:** 3201
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/appState.ts`](../src/lib/stores/appState.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.test.ts`](../src/lib/stores/queue.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L108)
|
|
- **Line:** 108
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L113)
|
|
- **Line:** 113
|
|
- **Context:** `async function next() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L118)
|
|
- **Line:** 118
|
|
- **Context:** `async function previous() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L123)
|
|
- **Line:** 123
|
|
- **Context:** `async function skipTo(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L128)
|
|
- **Line:** 128
|
|
- **Context:** `async function toggleShuffle() {`
|
|
- **File:** [`src-tauri/src/commands/player/queue.rs`](../src-tauri/src/commands/player/queue.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L20)
|
|
- **Line:** 20
|
|
- **Context:** `pub enum RepeatMode {`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L535)
|
|
- **Line:** 535
|
|
- **Context:** `pub enum AddPosition {`
|
|
|
|
### DR-006
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/services/preload.test.ts`](../src/lib/services/preload.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.ts`](../src/lib/services/preload.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-007
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/AlphabetScrollBar.svelte`](../src/lib/components/library/AlphabetScrollBar.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/movies.ts`](../src/lib/stores/movies.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/music.ts`](../src/lib/stores/music.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](../src/routes/library/music/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-009
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src/lib/components/BottomUi.svelte`](../src/lib/components/BottomUi.svelte#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/AudioPlayer.svelte`](../src/lib/components/player/AudioPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/Controls.svelte`](../src/lib/components/player/Controls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/MiniPlayer.svelte`](../src/lib/components/player/MiniPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/appState.ts`](../src/lib/stores/appState.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/player.ts`](../src/lib/stores/player.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playerVisibility.test.ts`](../src/lib/stores/playerVisibility.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](../src/lib/utils/layoutShell.test.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/conversions.rs`](../src-tauri/src/commands/conversions.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/session.rs`](../src-tauri/src/commands/player/session.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-010
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-011
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L644)
|
|
- **Line:** 644
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L660)
|
|
- **Line:** 660
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/deviceId.test.ts`](../src/lib/services/deviceId.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/deviceId.ts`](../src/lib/services/deviceId.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/deviceId.ts`](../src/lib/services/deviceId.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/device.rs`](../src-tauri/src/commands/device.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/device.rs`](../src-tauri/src/commands/device.rs#L24)
|
|
- **Line:** 24
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/device.rs`](../src-tauri/src/commands/device.rs#L81)
|
|
- **Line:** 81
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-012
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-013
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/stores/connectivity.ts`](../src/lib/stores/connectivity.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L381)
|
|
- **Line:** 381
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-014
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L61)
|
|
- **Line:** 61
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L195)
|
|
- **Line:** 195
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](../src-tauri/src/commands/sync.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-015
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/services/preload.test.ts`](../src/lib/services/preload.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.ts`](../src/lib/services/preload.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2527)
|
|
- **Line:** 2527
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-016
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/services/imageCache.test.ts`](../src/lib/services/imageCache.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/imageCache.ts`](../src/lib/services/imageCache.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/thumbnails.rs`](../src-tauri/src/commands/storage/thumbnails.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-017
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/offline.rs`](../src-tauri/src/commands/offline.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-018
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2527)
|
|
- **Line:** 2527
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-020
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/stores/queue.test.ts`](../src/lib/stores/queue.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L118)
|
|
- **Line:** 118
|
|
- **Context:** `async function previous() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L133)
|
|
- **Line:** 133
|
|
- **Context:** `async function cycleRepeat() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L138)
|
|
- **Line:** 138
|
|
- **Context:** `async function removeFromQueue(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L143)
|
|
- **Line:** 143
|
|
- **Context:** `async function moveInQueue(fromIndex: number, toIndex: number) {`
|
|
- **File:** [`src-tauri/src/commands/player/queue.rs`](../src-tauri/src/commands/player/queue.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L20)
|
|
- **Line:** 20
|
|
- **Context:** `pub enum RepeatMode {`
|
|
|
|
### DR-021
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/FavoriteButton.svelte`](../src/lib/components/FavoriteButton.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/favorites.test.ts`](../src/lib/services/favorites.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/favorites.ts`](../src/lib/services/favorites.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2583)
|
|
- **Line:** 2583
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-022
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-023
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L154)
|
|
- **Line:** 154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L174)
|
|
- **Line:** 174
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2689)
|
|
- **Line:** 2689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L463)
|
|
- **Line:** 463
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2370)
|
|
- **Line:** 2370
|
|
- **Context:** `function toggleSubtitleMenu() {`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2403)
|
|
- **Line:** 2403
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1752)
|
|
- **Line:** 1752
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1988)
|
|
- **Line:** 1988
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2005)
|
|
- **Line:** 2005
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L119)
|
|
- **Line:** 119
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-024
|
|
|
|
**Locations:** 14 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L124)
|
|
- **Line:** 124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L141)
|
|
- **Line:** 141
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L174)
|
|
- **Line:** 174
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2689)
|
|
- **Line:** 2689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L371)
|
|
- **Line:** 371
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1534)
|
|
- **Line:** 1534
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1731)
|
|
- **Line:** 1731
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1988)
|
|
- **Line:** 1988
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2005)
|
|
- **Line:** 2005
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/series_prefs.rs`](../src-tauri/src/commands/storage/series_prefs.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-025
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-026
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1517)
|
|
- **Line:** 1517
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1525)
|
|
- **Line:** 1525
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nextEpisode.ts`](../src/lib/stores/nextEpisode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-027
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-028
|
|
|
|
**Locations:** 20 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2942)
|
|
- **Line:** 2942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1051)
|
|
- **Line:** 1051
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/rustReportHost.ts`](../src/lib/player/adapters/rustReportHost.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](../src/lib/player/adapters/nativeAdapter.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](../src/lib/player/adapters/nativeAdapter.ts#L59)
|
|
- **Line:** 59
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.test.ts`](../src/lib/services/playbackReporting.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L27)
|
|
- **Line:** 27
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L76)
|
|
- **Line:** 76
|
|
- **Context:** `* This function is therefore the *local* half only, which is what its ...`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L107)
|
|
- **Line:** 107
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L143)
|
|
- **Line:** 143
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](../src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L159)
|
|
- **Line:** 159
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/duration.test.ts`](../src/lib/utils/duration.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/playback_reporting.rs`](../src-tauri/src/commands/playback_reporting.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-029
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3261)
|
|
- **Line:** 3261
|
|
- **Context:** `export type SessionInfo = { id?: string | null; userId?: string | null...`
|
|
- **File:** [`src/lib/components/player/SleepTimerModal.svelte`](../src/lib/components/player/SleepTimerModal.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L269)
|
|
- **Line:** 269
|
|
- **Context:** `function handleMediaLoaded(duration: number): void {`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L329)
|
|
- **Line:** 329
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/sleepTimer.ts`](../src/lib/stores/sleepTimer.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/autoplay.rs`](../src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/sleep_timer.rs`](../src-tauri/src/player/sleep_timer.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/sleep_timer.rs`](../src-tauri/src/player/sleep_timer.rs#L81)
|
|
- **Line:** 81
|
|
- **Context:** `pub fn cancel(&mut self) {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L426)
|
|
- **Line:** 426
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-030
|
|
|
|
**Locations:** 18 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L214)
|
|
- **Line:** 214
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2218)
|
|
- **Line:** 2218
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L50)
|
|
- **Line:** 50
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L579)
|
|
- **Line:** 579
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L617)
|
|
- **Line:** 617
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L35)
|
|
- **Line:** 35
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L48)
|
|
- **Line:** 48
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L142)
|
|
- **Line:** 142
|
|
- **Context:** `pub fn with_crossfade_clamped(mut self) -> Self {`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L383)
|
|
- **Line:** 383
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L400)
|
|
- **Line:** 400
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L424)
|
|
- **Line:** 424
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L460)
|
|
- **Line:** 460
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L489)
|
|
- **Line:** 489
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L516)
|
|
- **Line:** 516
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L527)
|
|
- **Line:** 527
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-032
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-033
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-034
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-035
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L579)
|
|
- **Line:** 579
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L617)
|
|
- **Line:** 617
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L383)
|
|
- **Line:** 383
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L400)
|
|
- **Line:** 400
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L424)
|
|
- **Line:** 424
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-036
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L579)
|
|
- **Line:** 579
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L617)
|
|
- **Line:** 617
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L658)
|
|
- **Line:** 658
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L712)
|
|
- **Line:** 712
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L778)
|
|
- **Line:** 778
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L788)
|
|
- **Line:** 788
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L833)
|
|
- **Line:** 833
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L383)
|
|
- **Line:** 383
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L400)
|
|
- **Line:** 400
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L424)
|
|
- **Line:** 424
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-037
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/CastButton.svelte`](../src/lib/components/sessions/CastButton.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/RemoteControls.svelte`](../src/lib/components/sessions/RemoteControls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/SessionCard.svelte`](../src/lib/components/sessions/SessionCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/SessionPickerModal.svelte`](../src/lib/components/sessions/SessionPickerModal.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/SessionsList.svelte`](../src/lib/components/sessions/SessionsList.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/lmsSync.ts`](../src/lib/stores/lmsSync.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playbackMode.test.ts`](../src/lib/stores/playbackMode.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playbackMode.ts`](../src/lib/stores/playbackMode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/sessions.test.ts`](../src/lib/stores/sessions.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/sessions.ts`](../src/lib/stores/sessions.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sessions.rs`](../src-tauri/src/commands/sessions.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-038
|
|
|
|
**Locations:** 13 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1517)
|
|
- **Line:** 1517
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/HeroBanner.svelte`](../src/lib/components/home/HeroBanner.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/heroRotation.test.ts`](../src/lib/components/home/heroRotation.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/heroRotation.ts`](../src/lib/components/home/heroRotation.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/movies.ts`](../src/lib/stores/movies.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/music.ts`](../src/lib/stores/music.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/heroMix.ts`](../src/lib/utils/heroMix.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](../src/routes/library/music/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-039
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/components/home/Carousel.svelte`](../src/lib/components/home/Carousel.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/movies.ts`](../src/lib/stores/movies.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/music.ts`](../src/lib/stores/music.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](../src/routes/library/music/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-040
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/CastSection.svelte`](../src/lib/components/library/CastSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/CrewLinks.svelte`](../src/lib/components/library/CrewLinks.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/people.rs`](../src-tauri/src/commands/storage/people.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-041
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/PersonDetailView.svelte`](../src/lib/components/library/PersonDetailView.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/people.rs`](../src-tauri/src/commands/storage/people.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-042
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/LibraryGrid.svelte`](../src/lib/components/library/LibraryGrid.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-043
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-044
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/CastSection.svelte`](../src/lib/components/library/CastSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-045
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/BottomNav.svelte`](../src/lib/components/BottomNav.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-047
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L312)
|
|
- **Line:** 312
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2942)
|
|
- **Line:** 2942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/nextEpisodeService.ts`](../src/lib/services/nextEpisodeService.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.test.ts`](../src/lib/services/playbackReporting.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](../src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L269)
|
|
- **Line:** 269
|
|
- **Context:** `function handleMediaLoaded(duration: number): void {`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L374)
|
|
- **Line:** 374
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nextEpisode.ts`](../src/lib/stores/nextEpisode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L145)
|
|
- **Line:** 145
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/autoplay.rs`](../src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-048
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/services/nextEpisodeService.ts`](../src/lib/services/nextEpisodeService.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L374)
|
|
- **Line:** 374
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nextEpisode.ts`](../src/lib/stores/nextEpisode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/autoplay.rs`](../src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-049
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-050
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/SleepTimerModal.svelte`](../src/lib/components/player/SleepTimerModal.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-051
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/backgroundAudio.test.ts`](../src/lib/utils/backgroundAudio.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/backgroundAudio.ts`](../src/lib/utils/backgroundAudio.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-052
|
|
|
|
**Locations:** 20 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L38)
|
|
- **Line:** 38
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L51)
|
|
- **Line:** 51
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L312)
|
|
- **Line:** 312
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](../src/lib/components/player/backgroundAudioHandoff.test.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L69)
|
|
- **Line:** 69
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/backgroundAudio.commands.test.ts`](../src/lib/player/backgroundAudio.commands.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L145)
|
|
- **Line:** 145
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L761)
|
|
- **Line:** 761
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L876)
|
|
- **Line:** 876
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L259)
|
|
- **Line:** 259
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L270)
|
|
- **Line:** 270
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1571)
|
|
- **Line:** 1571
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1585)
|
|
- **Line:** 1585
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1601)
|
|
- **Line:** 1601
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1610)
|
|
- **Line:** 1610
|
|
- **Context:** `pub fn exit_background_audio(&self) -> f64 {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1617)
|
|
- **Line:** 1617
|
|
- **Context:** `pub fn is_background_audio_active(&self) -> bool {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1632)
|
|
- **Line:** 1632
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1874)
|
|
- **Line:** 1874
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-053
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/pictureInPicture.ts`](../src/lib/utils/pictureInPicture.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-054
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/auth/mod.rs`](../src-tauri/src/auth/mod.rs#L139)
|
|
- **Line:** 139
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/auth.rs`](../src-tauri/src/commands/auth.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-055
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/connectivity.ts`](../src/lib/stores/connectivity.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/connectivity.rs`](../src-tauri/src/commands/connectivity.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-056
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/pinning.rs`](../src-tauri/src/commands/download/pinning.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-057
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/smart_cache.rs`](../src-tauri/src/commands/download/smart_cache.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-058
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-059
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playback_mode.rs`](../src-tauri/src/commands/playback_mode.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/playback_mode/mod.rs`](../src-tauri/src/playback_mode/mod.rs#L165)
|
|
- **Line:** 165
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-060
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-061
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L289)
|
|
- **Line:** 289
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-062
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L289)
|
|
- **Line:** 289
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L394)
|
|
- **Line:** 394
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/episodeStrip.ts`](../src/lib/components/library/episodeStrip.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-063
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1600)
|
|
- **Line:** 1600
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3236)
|
|
- **Line:** 3236
|
|
- **Context:** `export type SearchResult = { items: MediaItem[]; totalRecordCount: num...`
|
|
- **File:** [`src/lib/components/search/HeaderSearch.svelte`](../src/lib/components/search/HeaderSearch.svelte#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L239)
|
|
- **Line:** 239
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L90)
|
|
- **Line:** 90
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L36)
|
|
- **Line:** 36
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L61)
|
|
- **Line:** 61
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L125)
|
|
- **Line:** 125
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L494)
|
|
- **Line:** 494
|
|
- **Context:** `pub struct SearchUpdateEvent {`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L355)
|
|
- **Line:** 355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L373)
|
|
- **Line:** 373
|
|
- **Context:** `impl SearchScope {`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L439)
|
|
- **Line:** 439
|
|
- **Context:** `impl SearchOptions {`
|
|
|
|
### DR-064
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/components/search/HeaderSearch.svelte`](../src/lib/components/search/HeaderSearch.svelte#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/search/SearchScopeChips.svelte`](../src/lib/components/search/SearchScopeChips.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L125)
|
|
- **Line:** 125
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-065
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L239)
|
|
- **Line:** 239
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/librarySearchScope.test.ts`](../src/lib/stores/librarySearchScope.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-066
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/components/settings/SearchGroupOrderList.svelte`](../src/lib/components/settings/SearchGroupOrderList.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/searchGroupOrder.test.ts`](../src/lib/stores/searchGroupOrder.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/searchGroupOrder.ts`](../src/lib/stores/searchGroupOrder.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-067
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/search/SearchResults.svelte`](../src/lib/components/search/SearchResults.svelte#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L284)
|
|
- **Line:** 284
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-068
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-069
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/LibraryGrid.svelte`](../src/lib/components/library/LibraryGrid.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-070
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/LibraryGrid.svelte`](../src/lib/components/library/LibraryGrid.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-074
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1194)
|
|
- **Line:** 1194
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1205)
|
|
- **Line:** 1205
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2503)
|
|
- **Line:** 2503
|
|
- **Context:** `export type MergedMediaItem = { id: string; title: string; artist: str...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2512)
|
|
- **Line:** 2512
|
|
- **Context:** `export type NetworkStateWrapperArg = { networkType: NetworkType; unmet...`
|
|
- **File:** [`src/lib/services/networkType.test.ts`](../src/lib/services/networkType.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/networkType.ts`](../src/lib/services/networkType.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L84)
|
|
- **Line:** 84
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L31)
|
|
- **Line:** 31
|
|
- **Context:** `pub struct DownloadManagerWrapper(pub Mutex<DownloadManager>);`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L40)
|
|
- **Line:** 40
|
|
- **Context:** `pub struct NetworkStateWrapper(pub NetworkStateHandle);`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L83)
|
|
- **Line:** 83
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L96)
|
|
- **Line:** 96
|
|
- **Context:** `pub struct NetworkStateWrapperArg {`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1744)
|
|
- **Line:** 1744
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L86)
|
|
- **Line:** 86
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/events.rs`](../src-tauri/src/download/events.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/network.rs`](../src-tauri/src/download/network.rs#L22)
|
|
- **Line:** 22
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/network.rs`](../src-tauri/src/download/network.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/network.rs`](../src-tauri/src/download/network.rs#L70)
|
|
- **Line:** 70
|
|
- **Context:** `impl NetworkState {`
|
|
|
|
### DR-075
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/account/AccountMenu.svelte`](../src/lib/components/account/AccountMenu.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-076
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/AppHeader.svelte`](../src/lib/components/AppHeader.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L75)
|
|
- **Line:** 75
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-077
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/viewMode.test.ts`](../src/lib/stores/viewMode.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-078
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.reload.test.ts`](../src/lib/services/offlineCatalog.reload.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.ts`](../src/lib/services/offlineCatalog.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L24)
|
|
- **Line:** 24
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L43)
|
|
- **Line:** 43
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3026)
|
|
- **Line:** 3026
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-079
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/connectivity.ts`](../src/lib/stores/connectivity.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/connectivity.ts`](../src/lib/stores/connectivity.ts#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-080
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L43)
|
|
- **Line:** 43
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-081
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](../src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/downloads/+page.svelte`](../src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-082
|
|
|
|
**Locations:** 21 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1475)
|
|
- **Line:** 1475
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1483)
|
|
- **Line:** 1483
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L100)
|
|
- **Line:** 100
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L108)
|
|
- **Line:** 108
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](../src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](../src/lib/services/downloadedCatalog.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/downloads/+page.svelte`](../src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L222)
|
|
- **Line:** 222
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L237)
|
|
- **Line:** 237
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L848)
|
|
- **Line:** 848
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L857)
|
|
- **Line:** 857
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L884)
|
|
- **Line:** 884
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L990)
|
|
- **Line:** 990
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3705)
|
|
- **Line:** 3705
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3727)
|
|
- **Line:** 3727
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3837)
|
|
- **Line:** 3837
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3883)
|
|
- **Line:** 3883
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3904)
|
|
- **Line:** 3904
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3923)
|
|
- **Line:** 3923
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L289)
|
|
- **Line:** 289
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-083
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L977)
|
|
- **Line:** 977
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1483)
|
|
- **Line:** 1483
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L108)
|
|
- **Line:** 108
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](../src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L29)
|
|
- **Line:** 29
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](../src/lib/services/downloadedCatalog.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](../src/lib/services/downloadedCatalog.ts#L96)
|
|
- **Line:** 96
|
|
- **Context:** `function sizeOf(itemId: string): number {`
|
|
- **File:** [`src/routes/downloads/+page.svelte`](../src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2425)
|
|
- **Line:** 2425
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L237)
|
|
- **Line:** 237
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L857)
|
|
- **Line:** 857
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L884)
|
|
- **Line:** 884
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3705)
|
|
- **Line:** 3705
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3727)
|
|
- **Line:** 3727
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3837)
|
|
- **Line:** 3837
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3883)
|
|
- **Line:** 3883
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3984)
|
|
- **Line:** 3984
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-084
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L316)
|
|
- **Line:** 316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/downloads/+page.svelte`](../src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-085
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1491)
|
|
- **Line:** 1491
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2143)
|
|
- **Line:** 2143
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L116)
|
|
- **Line:** 116
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](../src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/LibraryGrid.svelte`](../src/lib/components/library/LibraryGrid.svelte#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](../src/lib/services/downloadedCatalog.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/formatBytes.test.ts`](../src/lib/utils/formatBytes.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/formatBytes.ts`](../src/lib/utils/formatBytes.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/downloads/+page.svelte`](../src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L254)
|
|
- **Line:** 254
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L1036)
|
|
- **Line:** 1036
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3945)
|
|
- **Line:** 3945
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L296)
|
|
- **Line:** 296
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-086
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-087
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L74)
|
|
- **Line:** 74
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L98)
|
|
- **Line:** 98
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-088
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/services/skipReporting.test.ts`](../src/lib/services/skipReporting.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.ts`](../src/lib/services/skipReporting.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-089
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.test.ts`](../src/lib/stores/continueWatchingFilter.test.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.ts`](../src/lib/stores/continueWatchingFilter.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-090
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/domain/search_rank.rs`](../src-tauri/src/domain/search_rank.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-091
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L149)
|
|
- **Line:** 149
|
|
- **Context:** `export type SearchGroupId =`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-092
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-093
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L57)
|
|
- **Line:** 57
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L309)
|
|
- **Line:** 309
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L342)
|
|
- **Line:** 342
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L385)
|
|
- **Line:** 385
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L407)
|
|
- **Line:** 407
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L444)
|
|
- **Line:** 444
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L454)
|
|
- **Line:** 454
|
|
- **Context:** `export const MATRIX_LINK_PREFIX = "../";`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L537)
|
|
- **Line:** 537
|
|
- **Context:** `function generateJson(data: TracesData): string {`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L590)
|
|
- **Line:** 590
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-095
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-096
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-097
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/player/transport.authority.test.ts`](../src/lib/player/transport.authority.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L270)
|
|
- **Line:** 270
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L651)
|
|
- **Line:** 651
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L659)
|
|
- **Line:** 659
|
|
- **Context:** `pub fn is_html5_active(&self) -> bool {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L703)
|
|
- **Line:** 703
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1585)
|
|
- **Line:** 1585
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1601)
|
|
- **Line:** 1601
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-098
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.tapSurface.test.ts`](../src/lib/components/player/VideoPlayer.tapSurface.test.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.touchScrub.test.ts`](../src/lib/components/player/VideoPlayer.touchScrub.test.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-099
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.touchScrub.test.ts`](../src/lib/components/player/VideoPlayer.touchScrub.test.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-100
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/playerSurface.test.ts`](../src/lib/components/player/playerSurface.test.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/playerSurface.ts`](../src/lib/components/player/playerSurface.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-101
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1538)
|
|
- **Line:** 1538
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1551)
|
|
- **Line:** 1551
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L151)
|
|
- **Line:** 151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L161)
|
|
- **Line:** 161
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L205)
|
|
- **Line:** 205
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L356)
|
|
- **Line:** 356
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L377)
|
|
- **Line:** 377
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/series_progress.rs`](../src-tauri/src/repository/series_progress.rs#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-102
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeRow.svelte`](../src/lib/components/library/EpisodeRow.svelte#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/SeasonSection.svelte`](../src/lib/components/library/SeasonSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/seriesNavigation.test.ts`](../src/lib/components/library/seriesNavigation.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/seriesNavigation.ts`](../src/lib/components/library/seriesNavigation.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L205)
|
|
- **Line:** 205
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L326)
|
|
- **Line:** 326
|
|
- **Context:** `async function handlePlayAll() {`
|
|
|
|
### DR-103
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/SeasonSection.svelte`](../src/lib/components/library/SeasonSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/seriesNavigation.test.ts`](../src/lib/components/library/seriesNavigation.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/seriesNavigation.ts`](../src/lib/components/library/seriesNavigation.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L124)
|
|
- **Line:** 124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-104
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/episodeStrip.ts`](../src/lib/components/library/episodeStrip.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-105
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericGenreBrowser.svelte`](../src/lib/components/library/GenericGenreBrowser.svelte#L45)
|
|
- **Line:** 45
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L50)
|
|
- **Line:** 50
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/LibraryViewTabs.svelte`](../src/lib/components/library/LibraryViewTabs.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/libraryView.ts`](../src/lib/utils/libraryView.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/all/+page.ts`](../src/routes/library/movies/all/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/genres/+page.ts`](../src/routes/library/movies/genres/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/shows/genres/+page.ts`](../src/routes/library/shows/genres/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/shows/+page.ts`](../src/routes/library/tv/shows/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-106
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1565)
|
|
- **Line:** 1565
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L172)
|
|
- **Line:** 172
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/ClearHistoryButton.svelte`](../src/lib/components/library/ClearHistoryButton.svelte#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/SeasonSection.svelte`](../src/lib/components/library/SeasonSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L399)
|
|
- **Line:** 399
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2629)
|
|
- **Line:** 2629
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-107
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/SeasonSection.svelte`](../src/lib/components/library/SeasonSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/SeasonSection.svelte`](../src/lib/components/library/SeasonSection.svelte#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-108
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2548)
|
|
- **Line:** 2548
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2588)
|
|
- **Line:** 2588
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3306)
|
|
- **Line:** 3306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3362)
|
|
- **Line:** 3362
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-109
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L164)
|
|
- **Line:** 164
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L281)
|
|
- **Line:** 281
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L327)
|
|
- **Line:** 327
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L764)
|
|
- **Line:** 764
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L51)
|
|
- **Line:** 51
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1566)
|
|
- **Line:** 1566
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-110
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L164)
|
|
- **Line:** 164
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/people.rs`](../src-tauri/src/commands/storage/people.rs#L56)
|
|
- **Line:** 56
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L501)
|
|
- **Line:** 501
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3144)
|
|
- **Line:** 3144
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3253)
|
|
- **Line:** 3253
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L64)
|
|
- **Line:** 64
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L757)
|
|
- **Line:** 757
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-111
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L96)
|
|
- **Line:** 96
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/people.rs`](../src-tauri/src/commands/storage/people.rs#L56)
|
|
- **Line:** 56
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3087)
|
|
- **Line:** 3087
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L769)
|
|
- **Line:** 769
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-112
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/components/BottomUi.svelte`](../src/lib/components/BottomUi.svelte#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](../src/lib/utils/layoutShell.test.ts#L158)
|
|
- **Line:** 158
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L115)
|
|
- **Line:** 115
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](../src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.ts`](../src/lib/utils/safeArea.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](../src/routes/+layout.svelte#L269)
|
|
- **Line:** 269
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-113
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1151)
|
|
- **Line:** 1151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1438)
|
|
- **Line:** 1438
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4040)
|
|
- **Line:** 4040
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4071)
|
|
- **Line:** 4071
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-114
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L688)
|
|
- **Line:** 688
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4605)
|
|
- **Line:** 4605
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-115
|
|
|
|
**Locations:** 16 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1727)
|
|
- **Line:** 1727
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L384)
|
|
- **Line:** 384
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L927)
|
|
- **Line:** 927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L964)
|
|
- **Line:** 964
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2014)
|
|
- **Line:** 2014
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4370)
|
|
- **Line:** 4370
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4405)
|
|
- **Line:** 4405
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L214)
|
|
- **Line:** 214
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L230)
|
|
- **Line:** 230
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L1050)
|
|
- **Line:** 1050
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L238)
|
|
- **Line:** 238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1313)
|
|
- **Line:** 1313
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2559)
|
|
- **Line:** 2559
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3822)
|
|
- **Line:** 3822
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3844)
|
|
- **Line:** 3844
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3853)
|
|
- **Line:** 3853
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-116
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2271)
|
|
- **Line:** 2271
|
|
- **Context:** `export type GetItemsOptions = { startIndex?: number | null; limit?: nu...`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L154)
|
|
- **Line:** 154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L170)
|
|
- **Line:** 170
|
|
- **Context:** `function handleSearch(query: string) {`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L288)
|
|
- **Line:** 288
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L1269)
|
|
- **Line:** 1269
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4450)
|
|
- **Line:** 4450
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1183)
|
|
- **Line:** 1183
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1242)
|
|
- **Line:** 1242
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3875)
|
|
- **Line:** 3875
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L342)
|
|
- **Line:** 342
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-117
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](../src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/favoritesView.test.ts`](../src/lib/utils/favoritesView.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/favoritesView.ts`](../src/lib/utils/favoritesView.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L225)
|
|
- **Line:** 225
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L288)
|
|
- **Line:** 288
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L44)
|
|
- **Line:** 44
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-118
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L64)
|
|
- **Line:** 64
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L162)
|
|
- **Line:** 162
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L271)
|
|
- **Line:** 271
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-119
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/lib/components/FavoriteButton.svelte`](../src/lib/components/FavoriteButton.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/ArtistDetailView.svelte`](../src/lib/components/library/ArtistDetailView.svelte#L138)
|
|
- **Line:** 138
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L48)
|
|
- **Line:** 48
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L154)
|
|
- **Line:** 154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L329)
|
|
- **Line:** 329
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/PlaylistDetailView.svelte`](../src/lib/components/library/PlaylistDetailView.svelte#L229)
|
|
- **Line:** 229
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/favorites.ts`](../src/lib/services/favorites.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/favorites.ts`](../src/lib/services/favorites.ts#L38)
|
|
- **Line:** 38
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](../src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L619)
|
|
- **Line:** 619
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-120
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1727)
|
|
- **Line:** 1727
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](../src/routes/+layout.svelte#L150)
|
|
- **Line:** 150
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L76)
|
|
- **Line:** 76
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L78)
|
|
- **Line:** 78
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L142)
|
|
- **Line:** 142
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L286)
|
|
- **Line:** 286
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L320)
|
|
- **Line:** 320
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L340)
|
|
- **Line:** 340
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L356)
|
|
- **Line:** 356
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L887)
|
|
- **Line:** 887
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L893)
|
|
- **Line:** 893
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L908)
|
|
- **Line:** 908
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L927)
|
|
- **Line:** 927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L1081)
|
|
- **Line:** 1081
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L1106)
|
|
- **Line:** 1106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `pub fn new(online: OnlineRepository, offline: OfflineRepository) -> Se...`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L195)
|
|
- **Line:** 195
|
|
- **Context:** `impl OnlineRepository {`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1573)
|
|
- **Line:** 1573
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-121
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3136)
|
|
- **Line:** 3136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L111)
|
|
- **Line:** 111
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-123
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L371)
|
|
- **Line:** 371
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/localSource.ts`](../src/lib/player/localSource.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L405)
|
|
- **Line:** 405
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L409)
|
|
- **Line:** 409
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L414)
|
|
- **Line:** 414
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L533)
|
|
- **Line:** 533
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L585)
|
|
- **Line:** 585
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3125)
|
|
- **Line:** 3125
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2447)
|
|
- **Line:** 2447
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-126
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L320)
|
|
- **Line:** 320
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L550)
|
|
- **Line:** 550
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-127
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2050)
|
|
- **Line:** 2050
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L359)
|
|
- **Line:** 359
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L33)
|
|
- **Line:** 33
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L220)
|
|
- **Line:** 220
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L428)
|
|
- **Line:** 428
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L813)
|
|
- **Line:** 813
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-128
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L462)
|
|
- **Line:** 462
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L779)
|
|
- **Line:** 779
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3041)
|
|
- **Line:** 3041
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-129
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L312)
|
|
- **Line:** 312
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L145)
|
|
- **Line:** 145
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L279)
|
|
- **Line:** 279
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1689)
|
|
- **Line:** 1689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1722)
|
|
- **Line:** 1722
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1779)
|
|
- **Line:** 1779
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1810)
|
|
- **Line:** 1810
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L54)
|
|
- **Line:** 54
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-130
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L335)
|
|
- **Line:** 335
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.regression.test.ts`](../src/lib/services/playerEvents.regression.test.ts#L155)
|
|
- **Line:** 155
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L292)
|
|
- **Line:** 292
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L299)
|
|
- **Line:** 299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L564)
|
|
- **Line:** 564
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L573)
|
|
- **Line:** 573
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1779)
|
|
- **Line:** 1779
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-131
|
|
|
|
**Locations:** 16 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](../src-tauri/src/commands/sync.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L76)
|
|
- **Line:** 76
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L236)
|
|
- **Line:** 236
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L427)
|
|
- **Line:** 427
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L606)
|
|
- **Line:** 606
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L672)
|
|
- **Line:** 672
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L702)
|
|
- **Line:** 702
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L736)
|
|
- **Line:** 736
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L765)
|
|
- **Line:** 765
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L811)
|
|
- **Line:** 811
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L992)
|
|
- **Line:** 992
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1007)
|
|
- **Line:** 1007
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L258)
|
|
- **Line:** 258
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2674)
|
|
- **Line:** 2674
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1580)
|
|
- **Line:** 1580
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-132
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1340)
|
|
- **Line:** 1340
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3441)
|
|
- **Line:** 3441
|
|
- **Context:** `export type SyncQueueItem = { id: number; userId: string; operation: s...`
|
|
- **File:** [`src/lib/components/sync/PendingSyncList.svelte`](../src/lib/components/sync/PendingSyncList.svelte#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sync/PendingSyncModal.svelte`](../src/lib/components/sync/PendingSyncModal.svelte#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/pendingSync.logic.test.ts`](../src/lib/services/pendingSync.logic.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/pendingSync.logic.ts`](../src/lib/services/pendingSync.logic.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](../src/routes/+layout.svelte#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1005)
|
|
- **Line:** 1005
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](../src-tauri/src/commands/sync.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](../src-tauri/src/commands/sync.rs#L33)
|
|
- **Line:** 33
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L474)
|
|
- **Line:** 474
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-133
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/player/localSource.ts`](../src/lib/player/localSource.ts#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L314)
|
|
- **Line:** 314
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-134
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/services/imageCache.ts`](../src/lib/services/imageCache.ts#L50)
|
|
- **Line:** 50
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1124)
|
|
- **Line:** 1124
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-135
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L114)
|
|
- **Line:** 114
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L551)
|
|
- **Line:** 551
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1001)
|
|
- **Line:** 1001
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1039)
|
|
- **Line:** 1039
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1062)
|
|
- **Line:** 1062
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-136
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L490)
|
|
- **Line:** 490
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L689)
|
|
- **Line:** 689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1090)
|
|
- **Line:** 1090
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-137
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1017)
|
|
- **Line:** 1017
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L328)
|
|
- **Line:** 328
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L409)
|
|
- **Line:** 409
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L414)
|
|
- **Line:** 414
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L93)
|
|
- **Line:** 93
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L27)
|
|
- **Line:** 27
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L70)
|
|
- **Line:** 70
|
|
- **Context:** `pub fn url_for(&self, path: &str) -> String {`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L282)
|
|
- **Line:** 282
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L327)
|
|
- **Line:** 327
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L398)
|
|
- **Line:** 398
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L449)
|
|
- **Line:** 449
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L458)
|
|
- **Line:** 458
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L473)
|
|
- **Line:** 473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L508)
|
|
- **Line:** 508
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L515)
|
|
- **Line:** 515
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L540)
|
|
- **Line:** 540
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L567)
|
|
- **Line:** 567
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1124)
|
|
- **Line:** 1124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1483)
|
|
- **Line:** 1483
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-140
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L684)
|
|
- **Line:** 684
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3232)
|
|
- **Line:** 3232
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-141
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L29)
|
|
- **Line:** 29
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L40)
|
|
- **Line:** 40
|
|
- **Context:** `pub fn clamp_max_audio_channels(reported: Option<u32>) -> u32 {`
|
|
|
|
### DR-142
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L394)
|
|
- **Line:** 394
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/seriesNavigation.test.ts`](../src/lib/components/library/seriesNavigation.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/seriesNavigation.ts`](../src/lib/components/library/seriesNavigation.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L139)
|
|
- **Line:** 139
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L467)
|
|
- **Line:** 467
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L97)
|
|
- **Line:** 97
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-143
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericGenreBrowser.svelte`](../src/lib/components/library/GenericGenreBrowser.svelte#L67)
|
|
- **Line:** 67
|
|
- **Context:** `async function reloadGenreBrowse() {`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L103)
|
|
- **Line:** 103
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/composables/useOfflineFilterReload.test.ts`](../src/lib/composables/useOfflineFilterReload.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/composables/useOfflineFilterReload.ts`](../src/lib/composables/useOfflineFilterReload.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.reload.test.ts`](../src/lib/services/offlineCatalog.reload.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.ts`](../src/lib/services/offlineCatalog.ts#L46)
|
|
- **Line:** 46
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L100)
|
|
- **Line:** 100
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L88)
|
|
- **Line:** 88
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L73)
|
|
- **Line:** 73
|
|
- **Context:** `async function load() {`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](../src/routes/library/music/+page.svelte#L71)
|
|
- **Line:** 71
|
|
- **Context:** `async function load() {`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L74)
|
|
- **Line:** 74
|
|
- **Context:** `async function load() {`
|
|
|
|
### DR-147
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/components/search/HeaderSearch.svelte`](../src/lib/components/search/HeaderSearch.svelte#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/search/HeaderSearch.test.ts`](../src/lib/components/search/HeaderSearch.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/searchPage.test.ts`](../src/routes/search/searchPage.test.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-148
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L213)
|
|
- **Line:** 213
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4284)
|
|
- **Line:** 4284
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-149
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L238)
|
|
- **Line:** 238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L260)
|
|
- **Line:** 260
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L277)
|
|
- **Line:** 277
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-150
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/player/adapters/adapterSelection.test.ts`](../src/lib/player/adapters/adapterSelection.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/index.ts`](../src/lib/player/adapters/index.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.ts`](../src/lib/stores/nativeVideo.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/videoSurface.ts`](../src/lib/utils/videoSurface.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-151
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/videoSurface.ts`](../src/lib/utils/videoSurface.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-152
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/services/playbackCapabilities.ts`](../src/lib/services/playbackCapabilities.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.ts`](../src/lib/stores/nativeVideo.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-153
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`scripts/set-version.test.ts`](../scripts/set-version.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-154
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1695)
|
|
- **Line:** 1695
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L380)
|
|
- **Line:** 380
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L856)
|
|
- **Line:** 856
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L915)
|
|
- **Line:** 915
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L954)
|
|
- **Line:** 954
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L764)
|
|
- **Line:** 764
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-155
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L688)
|
|
- **Line:** 688
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4692)
|
|
- **Line:** 4692
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4778)
|
|
- **Line:** 4778
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L426)
|
|
- **Line:** 426
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L653)
|
|
- **Line:** 653
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-156
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/utils/scrollContainer.ts`](../src/lib/utils/scrollContainer.ts#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/scrollRestore.ts`](../src/lib/utils/scrollRestore.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-157
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/immersive.ts`](../src/lib/utils/immersive.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-158
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L834)
|
|
- **Line:** 834
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/WatchedToggleButton.svelte`](../src/lib/components/library/WatchedToggleButton.svelte#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L121)
|
|
- **Line:** 121
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L915)
|
|
- **Line:** 915
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1047)
|
|
- **Line:** 1047
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1064)
|
|
- **Line:** 1064
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-159
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L872)
|
|
- **Line:** 872
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4090)
|
|
- **Line:** 4090
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4133)
|
|
- **Line:** 4133
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-160
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/pictureInPicture.ts`](../src/lib/utils/pictureInPicture.ts#L111)
|
|
- **Line:** 111
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-162
|
|
|
|
**Locations:** 39 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L258)
|
|
- **Line:** 258
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3307)
|
|
- **Line:** 3307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3383)
|
|
- **Line:** 3383
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3548)
|
|
- **Line:** 3548
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L306)
|
|
- **Line:** 306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2330)
|
|
- **Line:** 2330
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2806)
|
|
- **Line:** 2806
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L84)
|
|
- **Line:** 84
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L418)
|
|
- **Line:** 418
|
|
- **Context:** `function handleEpisodeLimitChange(value: number) {`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L918)
|
|
- **Line:** 918
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L25)
|
|
- **Line:** 25
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L85)
|
|
- **Line:** 85
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L107)
|
|
- **Line:** 107
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L122)
|
|
- **Line:** 122
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L158)
|
|
- **Line:** 158
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L368)
|
|
- **Line:** 368
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1626)
|
|
- **Line:** 1626
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L30)
|
|
- **Line:** 30
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L56)
|
|
- **Line:** 56
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L67)
|
|
- **Line:** 67
|
|
- **Context:** `pub fn set_streaming_quality(quality: StreamingQuality) {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L122)
|
|
- **Line:** 122
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L721)
|
|
- **Line:** 721
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L824)
|
|
- **Line:** 824
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2278)
|
|
- **Line:** 2278
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3126)
|
|
- **Line:** 3126
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3154)
|
|
- **Line:** 3154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3176)
|
|
- **Line:** 3176
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3199)
|
|
- **Line:** 3199
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L167)
|
|
- **Line:** 167
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L302)
|
|
- **Line:** 302
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L653)
|
|
- **Line:** 653
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L689)
|
|
- **Line:** 689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L716)
|
|
- **Line:** 716
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1440)
|
|
- **Line:** 1440
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-167
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L848)
|
|
- **Line:** 848
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3767)
|
|
- **Line:** 3767
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-168
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L927)
|
|
- **Line:** 927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L940)
|
|
- **Line:** 940
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1226)
|
|
- **Line:** 1226
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1260)
|
|
- **Line:** 1260
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/stop.rs`](../src-tauri/src/download/stop.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-169
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L247)
|
|
- **Line:** 247
|
|
- **Context:** `/ One function so the writer and the cleaners cannot disagree again.`
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L336)
|
|
- **Line:** 336
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-170
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L219)
|
|
- **Line:** 219
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L313)
|
|
- **Line:** 313
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-171
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L277)
|
|
- **Line:** 277
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L457)
|
|
- **Line:** 457
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L350)
|
|
- **Line:** 350
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L372)
|
|
- **Line:** 372
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2524)
|
|
- **Line:** 2524
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3714)
|
|
- **Line:** 3714
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3746)
|
|
- **Line:** 3746
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3772)
|
|
- **Line:** 3772
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-173
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L916)
|
|
- **Line:** 916
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L957)
|
|
- **Line:** 957
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L442)
|
|
- **Line:** 442
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L473)
|
|
- **Line:** 473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L524)
|
|
- **Line:** 524
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L546)
|
|
- **Line:** 546
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L679)
|
|
- **Line:** 679
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3238)
|
|
- **Line:** 3238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3303)
|
|
- **Line:** 3303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3334)
|
|
- **Line:** 3334
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3367)
|
|
- **Line:** 3367
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3396)
|
|
- **Line:** 3396
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3410)
|
|
- **Line:** 3410
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3437)
|
|
- **Line:** 3437
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L153)
|
|
- **Line:** 153
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-174
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/components/common/CachedImage.svelte`](../src/lib/components/common/CachedImage.svelte#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MosaicGrid.svelte`](../src/lib/components/library/MosaicGrid.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MosaicTile.svelte`](../src/lib/components/library/MosaicTile.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/libraryMosaic.ts`](../src/lib/components/library/libraryMosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/mosaic.ts`](../src/lib/components/library/mosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L124)
|
|
- **Line:** 124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L53)
|
|
- **Line:** 53
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L288)
|
|
- **Line:** 288
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-175
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2303)
|
|
- **Line:** 2303
|
|
- **Context:** `export type Library = { id: string; name: string; collectionType: stri...`
|
|
- **File:** [`src/lib/components/library/libraryMosaic.ts`](../src/lib/components/library/libraryMosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/favoritesView.ts`](../src/lib/utils/favoritesView.ts#L44)
|
|
- **Line:** 44
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L53)
|
|
- **Line:** 53
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L404)
|
|
- **Line:** 404
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L731)
|
|
- **Line:** 731
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L752)
|
|
- **Line:** 752
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L764)
|
|
- **Line:** 764
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-176
|
|
|
|
**Locations:** 25 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2487)
|
|
- **Line:** 2487
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L67)
|
|
- **Line:** 67
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L93)
|
|
- **Line:** 93
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L75)
|
|
- **Line:** 75
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L445)
|
|
- **Line:** 445
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L84)
|
|
- **Line:** 84
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L99)
|
|
- **Line:** 99
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L120)
|
|
- **Line:** 120
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L150)
|
|
- **Line:** 150
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L306)
|
|
- **Line:** 306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L344)
|
|
- **Line:** 344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L362)
|
|
- **Line:** 362
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L376)
|
|
- **Line:** 376
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L390)
|
|
- **Line:** 390
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L898)
|
|
- **Line:** 898
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L985)
|
|
- **Line:** 985
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2138)
|
|
- **Line:** 2138
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2251)
|
|
- **Line:** 2251
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2299)
|
|
- **Line:** 2299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3355)
|
|
- **Line:** 3355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3378)
|
|
- **Line:** 3378
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L265)
|
|
- **Line:** 265
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-177
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/hlsRecovery.test.ts`](../src/lib/components/player/hlsRecovery.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/hlsRecovery.ts`](../src/lib/components/player/hlsRecovery.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.test.ts`](../src/lib/player/adapters/html5Adapter.test.ts#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L152)
|
|
- **Line:** 152
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L530)
|
|
- **Line:** 530
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3326)
|
|
- **Line:** 3326
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3422)
|
|
- **Line:** 3422
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-178
|
|
|
|
**Locations:** 13 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2033)
|
|
- **Line:** 2033
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L499)
|
|
- **Line:** 499
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L944)
|
|
- **Line:** 944
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L959)
|
|
- **Line:** 959
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L970)
|
|
- **Line:** 970
|
|
- **Context:** `pub fn observed_duration(&self) -> Option<f64> {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1008)
|
|
- **Line:** 1008
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4170)
|
|
- **Line:** 4170
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4189)
|
|
- **Line:** 4189
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4206)
|
|
- **Line:** 4206
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4221)
|
|
- **Line:** 4221
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4235)
|
|
- **Line:** 4235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4284)
|
|
- **Line:** 4284
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-179
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L27)
|
|
- **Line:** 27
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L76)
|
|
- **Line:** 76
|
|
- **Context:** `* This function is therefore the *local* half only, which is what its ...`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L67)
|
|
- **Line:** 67
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L119)
|
|
- **Line:** 119
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L763)
|
|
- **Line:** 763
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L978)
|
|
- **Line:** 978
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L987)
|
|
- **Line:** 987
|
|
- **Context:** `pub fn set_report_sink(&self, sink: Arc<dyn PlaybackReportSink>) {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1306)
|
|
- **Line:** 1306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1550)
|
|
- **Line:** 1550
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4257)
|
|
- **Line:** 4257
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4284)
|
|
- **Line:** 4284
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4322)
|
|
- **Line:** 4322
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4350)
|
|
- **Line:** 4350
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4379)
|
|
- **Line:** 4379
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4397)
|
|
- **Line:** 4397
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-180
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L483)
|
|
- **Line:** 483
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L503)
|
|
- **Line:** 503
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3089)
|
|
- **Line:** 3089
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3109)
|
|
- **Line:** 3109
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L877)
|
|
- **Line:** 877
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4027)
|
|
- **Line:** 4027
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-181
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1618)
|
|
- **Line:** 1618
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1927)
|
|
- **Line:** 1927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.test.ts`](../src/lib/player/adapters/html5Adapter.test.ts#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L441)
|
|
- **Line:** 441
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L665)
|
|
- **Line:** 665
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L592)
|
|
- **Line:** 592
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3232)
|
|
- **Line:** 3232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3276)
|
|
- **Line:** 3276
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-182
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/mediaReady.test.ts`](../src/lib/components/player/mediaReady.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/mediaReady.ts`](../src/lib/components/player/mediaReady.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.nativeReveal.test.ts`](../src/lib/components/player/VideoPlayer.nativeReveal.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L596)
|
|
- **Line:** 596
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-183
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/videoSurface.ts`](../src/lib/utils/videoSurface.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-185
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/nativeVideoLayers.test.ts`](../src/lib/utils/nativeVideoLayers.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-186
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L625)
|
|
- **Line:** 625
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-188
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/nativeVideo.default.test.ts`](../src/lib/stores/nativeVideo.default.test.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.ts`](../src/lib/stores/nativeVideo.ts#L73)
|
|
- **Line:** 73
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-189
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/controlsVisibility.test.ts`](../src/lib/components/player/controlsVisibility.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/controlsVisibility.ts`](../src/lib/components/player/controlsVisibility.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2047)
|
|
- **Line:** 2047
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.test.ts`](../scripts/extract-traces.test.ts#L61)
|
|
- **Line:** 61
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-193
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L536)
|
|
- **Line:** 536
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L3255)
|
|
- **Line:** 3255
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-195
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1634)
|
|
- **Line:** 1634
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-196
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](../src/lib/components/player/backgroundAudioHandoff.test.ts#L95)
|
|
- **Line:** 95
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1956)
|
|
- **Line:** 1956
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-197
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.test.ts`](../src/lib/stores/continueWatchingFilter.test.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.ts`](../src/lib/stores/continueWatchingFilter.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.ts`](../src/lib/stores/continueWatchingFilter.ts#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1290)
|
|
- **Line:** 1290
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4000)
|
|
- **Line:** 4000
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4021)
|
|
- **Line:** 4021
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-198
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/services/imageCache.ts`](../src/lib/services/imageCache.ts#L50)
|
|
- **Line:** 50
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1124)
|
|
- **Line:** 1124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/tauri-security-config.test.ts`](../scripts/tauri-security-config.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-201
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L103)
|
|
- **Line:** 103
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L135)
|
|
- **Line:** 135
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L152)
|
|
- **Line:** 152
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L168)
|
|
- **Line:** 168
|
|
- **Context:** `/ which backends reject (the "Raw(-10)" class of error).`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L181)
|
|
- **Line:** 181
|
|
- **Context:** `/ this function exists to prevent.`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L192)
|
|
- **Line:** 192
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L476)
|
|
- **Line:** 476
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-203
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L54)
|
|
- **Line:** 54
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-204
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/utils/logger.test.ts`](../src/lib/utils/logger.test.ts#L22)
|
|
- **Line:** 22
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/logger.test.ts`](../src/lib/utils/logger.test.ts#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/logger.ts`](../src/lib/utils/logger.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/logger.ts`](../src/lib/utils/logger.ts#L202)
|
|
- **Line:** 202
|
|
- **Context:** `export function isLevelEnabled(level: LogLevel): boolean {`
|
|
|
|
### DR-205
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`eslint.config.js`](../eslint.config.js#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-206
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/rust-toolchain.toml`](../src-tauri/rust-toolchain.toml#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-207
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`scripts/hooks/pre-commit`](../scripts/hooks/pre-commit#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/install-hooks.sh`](../scripts/install-hooks.sh#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-209
|
|
|
|
**Locations:** 44 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1109)
|
|
- **Line:** 1109
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1121)
|
|
- **Line:** 1121
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1139)
|
|
- **Line:** 1139
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2229)
|
|
- **Line:** 2229
|
|
- **Context:** `export type EqPreset = "flat" | "rock" | "pop" | "jazz" | "classical" ...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2318)
|
|
- **Line:** 2318
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L125)
|
|
- **Line:** 125
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/music.ts`](../src/lib/stores/music.ts#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L201)
|
|
- **Line:** 201
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L220)
|
|
- **Line:** 220
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L596)
|
|
- **Line:** 596
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L68)
|
|
- **Line:** 68
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L83)
|
|
- **Line:** 83
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L112)
|
|
- **Line:** 112
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L220)
|
|
- **Line:** 220
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L295)
|
|
- **Line:** 295
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L22)
|
|
- **Line:** 22
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L48)
|
|
- **Line:** 48
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L63)
|
|
- **Line:** 63
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L87)
|
|
- **Line:** 87
|
|
- **Context:** `/ pure function and can be tested without touching process state.`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L123)
|
|
- **Line:** 123
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L191)
|
|
- **Line:** 191
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L203)
|
|
- **Line:** 203
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L232)
|
|
- **Line:** 232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L275)
|
|
- **Line:** 275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L316)
|
|
- **Line:** 316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L334)
|
|
- **Line:** 334
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L182)
|
|
- **Line:** 182
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L283)
|
|
- **Line:** 283
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L381)
|
|
- **Line:** 381
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L426)
|
|
- **Line:** 426
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L544)
|
|
- **Line:** 544
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L629)
|
|
- **Line:** 629
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L337)
|
|
- **Line:** 337
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L357)
|
|
- **Line:** 357
|
|
- **Context:** `impl LibrarySettings {`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1452)
|
|
- **Line:** 1452
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-210
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L39)
|
|
- **Line:** 39
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L74)
|
|
- **Line:** 74
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L200)
|
|
- **Line:** 200
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L628)
|
|
- **Line:** 628
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L668)
|
|
- **Line:** 668
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L706)
|
|
- **Line:** 706
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L735)
|
|
- **Line:** 735
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L766)
|
|
- **Line:** 766
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-211
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L138)
|
|
- **Line:** 138
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L156)
|
|
- **Line:** 156
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L186)
|
|
- **Line:** 186
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L329)
|
|
- **Line:** 329
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1374)
|
|
- **Line:** 1374
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1514)
|
|
- **Line:** 1514
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1867)
|
|
- **Line:** 1867
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2560)
|
|
- **Line:** 2560
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2589)
|
|
- **Line:** 2589
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2616)
|
|
- **Line:** 2616
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-212
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1774)
|
|
- **Line:** 1774
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1793)
|
|
- **Line:** 1793
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2874)
|
|
- **Line:** 2874
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L1253)
|
|
- **Line:** 1253
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4500)
|
|
- **Line:** 4500
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4553)
|
|
- **Line:** 4553
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1194)
|
|
- **Line:** 1194
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3914)
|
|
- **Line:** 3914
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3950)
|
|
- **Line:** 3950
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-213
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`scripts/restore-ownership.sh`](../scripts/restore-ownership.sh#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-215
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`vitest.config.ts`](../vitest.config.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-216
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/deny.toml`](../src-tauri/deny.toml#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-217
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/utils/updateCheck.test.ts`](../src/lib/utils/updateCheck.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/updateCheck.ts`](../src/lib/utils/updateCheck.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L446)
|
|
- **Line:** 446
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1299)
|
|
- **Line:** 1299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1234)
|
|
- **Line:** 1234
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-218
|
|
|
|
**Locations:** 16 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1807)
|
|
- **Line:** 1807
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1815)
|
|
- **Line:** 1815
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1829)
|
|
- **Line:** 1829
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/logger.test.ts`](../src/lib/utils/logger.test.ts#L352)
|
|
- **Line:** 352
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/logger.ts`](../src/lib/utils/logger.ts#L202)
|
|
- **Line:** 202
|
|
- **Context:** `export function isLevelEnabled(level: LogLevel): boolean {`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L494)
|
|
- **Line:** 494
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1219)
|
|
- **Line:** 1219
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/diagnostics.rs`](../src-tauri/src/commands/diagnostics.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/diagnostics.rs`](../src-tauri/src/commands/diagnostics.rs#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/diagnostics.rs`](../src-tauri/src/commands/diagnostics.rs#L115)
|
|
- **Line:** 115
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/diagnostics.rs`](../src-tauri/src/commands/diagnostics.rs#L187)
|
|
- **Line:** 187
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/utils/diagnostics.rs`](../src-tauri/src/utils/diagnostics.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1015)
|
|
- **Line:** 1015
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1145)
|
|
- **Line:** 1145
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1184)
|
|
- **Line:** 1184
|
|
- **Context:** `pub fn run() {`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1226)
|
|
- **Line:** 1226
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-219
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`scripts/release-notes.test.ts`](../scripts/release-notes.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/release-notes.ts`](../scripts/release-notes.ts#L74)
|
|
- **Line:** 74
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-220
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`scripts/check-release-artifacts.sh`](../scripts/check-release-artifacts.sh#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-221
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`scripts/build-desktop-linux.sh`](../scripts/build-desktop-linux.sh#L29)
|
|
- **Line:** 29
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/build-windows-cross.sh`](../scripts/build-windows-cross.sh#L49)
|
|
- **Line:** 49
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-223
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src-tauri/src/android_context.rs`](../src-tauri/src/android_context.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/android_context.rs`](../src-tauri/src/android_context.rs#L80)
|
|
- **Line:** 80
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/android_context.rs`](../src-tauri/src/android_context.rs#L95)
|
|
- **Line:** 95
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L624)
|
|
- **Line:** 624
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1296)
|
|
- **Line:** 1296
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-224
|
|
|
|
**Locations:** 46 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1033)
|
|
- **Line:** 1033
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1636)
|
|
- **Line:** 1636
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2344)
|
|
- **Line:** 2344
|
|
- **Context:** `export type LiveStreamInfo = { streamUrl: string; playSessionId: strin...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2594)
|
|
- **Line:** 2594
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2843)
|
|
- **Line:** 2843
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3175)
|
|
- **Line:** 3175
|
|
- **Context:** `export type RemoteSessionStatus = { position: number; duration: number...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3324)
|
|
- **Line:** 3324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3365)
|
|
- **Line:** 3365
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3461)
|
|
- **Line:** 3461
|
|
- **Context:** `* domain fact reconstructed in the presentation layer — the same class...`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L263)
|
|
- **Line:** 263
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L193)
|
|
- **Line:** 193
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L638)
|
|
- **Line:** 638
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L40)
|
|
- **Line:** 40
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L80)
|
|
- **Line:** 80
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L54)
|
|
- **Line:** 54
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L130)
|
|
- **Line:** 130
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/streamTransport.test.ts`](../src/lib/player/streamTransport.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/streamTransport.ts`](../src/lib/player/streamTransport.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L85)
|
|
- **Line:** 85
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L328)
|
|
- **Line:** 328
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L414)
|
|
- **Line:** 414
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L422)
|
|
- **Line:** 422
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L190)
|
|
- **Line:** 190
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L334)
|
|
- **Line:** 334
|
|
- **Context:** `pub enum VideoSeekResponse {`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L356)
|
|
- **Line:** 356
|
|
- **Context:** `pub enum AudioTrackSwitchResponse {`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L382)
|
|
- **Line:** 382
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1411)
|
|
- **Line:** 1411
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L117)
|
|
- **Line:** 117
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L621)
|
|
- **Line:** 621
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L126)
|
|
- **Line:** 126
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L765)
|
|
- **Line:** 765
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L935)
|
|
- **Line:** 935
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1499)
|
|
- **Line:** 1499
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L33)
|
|
- **Line:** 33
|
|
- **Context:** `/ domain fact reconstructed in the presentation layer — the same class...`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L88)
|
|
- **Line:** 88
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L163)
|
|
- **Line:** 163
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L174)
|
|
- **Line:** 174
|
|
- **Context:** `impl StreamSelection {`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L229)
|
|
- **Line:** 229
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L275)
|
|
- **Line:** 275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L289)
|
|
- **Line:** 289
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L479)
|
|
- **Line:** 479
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-225
|
|
|
|
**Locations:** 20 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L258)
|
|
- **Line:** 258
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3175)
|
|
- **Line:** 3175
|
|
- **Context:** `export type RemoteSessionStatus = { position: number; duration: number...`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2330)
|
|
- **Line:** 2330
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L694)
|
|
- **Line:** 694
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L936)
|
|
- **Line:** 936
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1626)
|
|
- **Line:** 1626
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1678)
|
|
- **Line:** 1678
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2381)
|
|
- **Line:** 2381
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L46)
|
|
- **Line:** 46
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L74)
|
|
- **Line:** 74
|
|
- **Context:** `pub fn streaming_quality() -> StreamingQuality {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L85)
|
|
- **Line:** 85
|
|
- **Context:** `pub fn set_playback_quality_override(quality: StreamingQuality) {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L92)
|
|
- **Line:** 92
|
|
- **Context:** `pub fn clear_playback_quality_override() {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L935)
|
|
- **Line:** 935
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3144)
|
|
- **Line:** 3144
|
|
- **Context:** `impl Drop for QualityFixture {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4316)
|
|
- **Line:** 4316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4364)
|
|
- **Line:** 4364
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4397)
|
|
- **Line:** 4397
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L88)
|
|
- **Line:** 88
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-226
|
|
|
|
**Locations:** 22 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1636)
|
|
- **Line:** 1636
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3136)
|
|
- **Line:** 3136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3324)
|
|
- **Line:** 3324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L263)
|
|
- **Line:** 263
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2330)
|
|
- **Line:** 2330
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2806)
|
|
- **Line:** 2806
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L422)
|
|
- **Line:** 422
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L382)
|
|
- **Line:** 382
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L621)
|
|
- **Line:** 621
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L935)
|
|
- **Line:** 935
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L111)
|
|
- **Line:** 111
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L364)
|
|
- **Line:** 364
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L380)
|
|
- **Line:** 380
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L394)
|
|
- **Line:** 394
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L404)
|
|
- **Line:** 404
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-227
|
|
|
|
**Locations:** 26 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1636)
|
|
- **Line:** 1636
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2718)
|
|
- **Line:** 2718
|
|
- **Context:** `export type PlaybackInfo = { mediaSourceId: string; playSessionId: str...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3324)
|
|
- **Line:** 3324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3365)
|
|
- **Line:** 3365
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L263)
|
|
- **Line:** 263
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2833)
|
|
- **Line:** 2833
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L422)
|
|
- **Line:** 422
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L621)
|
|
- **Line:** 621
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L765)
|
|
- **Line:** 765
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L935)
|
|
- **Line:** 935
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1499)
|
|
- **Line:** 1499
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1627)
|
|
- **Line:** 1627
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4233)
|
|
- **Line:** 4233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4246)
|
|
- **Line:** 4246
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4265)
|
|
- **Line:** 4265
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4284)
|
|
- **Line:** 4284
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4300)
|
|
- **Line:** 4300
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4316)
|
|
- **Line:** 4316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4344)
|
|
- **Line:** 4344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L76)
|
|
- **Line:** 76
|
|
- **Context:** `impl PlaybackKind {`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L163)
|
|
- **Line:** 163
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L264)
|
|
- **Line:** 264
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-229
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2594)
|
|
- **Line:** 2594
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2843)
|
|
- **Line:** 2843
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L958)
|
|
- **Line:** 958
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1964)
|
|
- **Line:** 1964
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L190)
|
|
- **Line:** 190
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L439)
|
|
- **Line:** 439
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1411)
|
|
- **Line:** 1411
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L126)
|
|
- **Line:** 126
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-001
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-002
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/auth.rs`](../src-tauri/src/commands/auth.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-003
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-004
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-005
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1717)
|
|
- **Line:** 1717
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-006
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2036)
|
|
- **Line:** 2036
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-007
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-008
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2639)
|
|
- **Line:** 2639
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3408)
|
|
- **Line:** 3408
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L942)
|
|
- **Line:** 942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3007)
|
|
- **Line:** 3007
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-009
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L371)
|
|
- **Line:** 371
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1717)
|
|
- **Line:** 1717
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-010
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playback_reporting.rs`](../src-tauri/src/commands/playback_reporting.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-011
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playback_reporting.rs`](../src-tauri/src/commands/playback_reporting.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-012
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playback_reporting.rs`](../src-tauri/src/commands/playback_reporting.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-013
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1517)
|
|
- **Line:** 1517
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1151)
|
|
- **Line:** 1151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1748)
|
|
- **Line:** 1748
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1953)
|
|
- **Line:** 1953
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-014
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1525)
|
|
- **Line:** 1525
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1290)
|
|
- **Line:** 1290
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1775)
|
|
- **Line:** 1775
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-015
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1517)
|
|
- **Line:** 1517
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1748)
|
|
- **Line:** 1748
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1953)
|
|
- **Line:** 1953
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-016
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1268)
|
|
- **Line:** 1268
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-017
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-018
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2583)
|
|
- **Line:** 2583
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-019
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playlist.rs`](../src-tauri/src/commands/playlist.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-020
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playlist.rs`](../src-tauri/src/commands/playlist.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-021
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/SessionPickerModal.svelte`](../src/lib/components/sessions/SessionPickerModal.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/SessionsList.svelte`](../src/lib/components/sessions/SessionsList.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/lmsSync.ts`](../src/lib/stores/lmsSync.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sessions.rs`](../src-tauri/src/commands/sessions.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/session_poller/mod.rs`](../src-tauri/src/session_poller/mod.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-022
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/RemoteControls.svelte`](../src/lib/components/sessions/RemoteControls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-023
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/RemoteControls.svelte`](../src/lib/components/sessions/RemoteControls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-024
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/RemoteControls.svelte`](../src/lib/components/sessions/RemoteControls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-025
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/SessionPickerModal.svelte`](../src/lib/components/sessions/SessionPickerModal.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/lmsSync.ts`](../src/lib/stores/lmsSync.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-026
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/RemoteControls.svelte`](../src/lib/components/sessions/RemoteControls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-028
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/storage/thumbnails.rs`](../src-tauri/src/commands/storage/thumbnails.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-029
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/CastSection.svelte`](../src/lib/components/library/CastSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/CrewLinks.svelte`](../src/lib/components/library/CrewLinks.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-030
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/PersonDetailView.svelte`](../src/lib/components/library/PersonDetailView.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2723)
|
|
- **Line:** 2723
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-031
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/PersonDetailView.svelte`](../src/lib/components/library/PersonDetailView.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2736)
|
|
- **Line:** 2736
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-032
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](../src/lib/api/repository-client.test.ts#L442)
|
|
- **Line:** 442
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](../src/lib/api/repository-client.test.ts#L459)
|
|
- **Line:** 459
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1650)
|
|
- **Line:** 1650
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L281)
|
|
- **Line:** 281
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L640)
|
|
- **Line:** 640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L121)
|
|
- **Line:** 121
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L134)
|
|
- **Line:** 134
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L684)
|
|
- **Line:** 684
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3453)
|
|
- **Line:** 3453
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3494)
|
|
- **Line:** 3494
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-033
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1727)
|
|
- **Line:** 1727
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L927)
|
|
- **Line:** 927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L238)
|
|
- **Line:** 238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1313)
|
|
- **Line:** 1313
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2559)
|
|
- **Line:** 2559
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2629)
|
|
- **Line:** 2629
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3822)
|
|
- **Line:** 3822
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-034
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1151)
|
|
- **Line:** 1151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1438)
|
|
- **Line:** 1438
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4040)
|
|
- **Line:** 4040
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-035
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L258)
|
|
- **Line:** 258
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2674)
|
|
- **Line:** 2674
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-036
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1290)
|
|
- **Line:** 1290
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4000)
|
|
- **Line:** 4000
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-003
|
|
|
|
**Locations:** 50 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L174)
|
|
- **Line:** 174
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2594)
|
|
- **Line:** 2594
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2689)
|
|
- **Line:** 2689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2751)
|
|
- **Line:** 2751
|
|
- **Context:** `export type PlaybackProgress = { itemId: string;`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2843)
|
|
- **Line:** 2843
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2867)
|
|
- **Line:** 2867
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](../src/lib/components/player/backgroundAudioHandoff.test.ts#L95)
|
|
- **Line:** 95
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/controlsVisibility.test.ts`](../src/lib/components/player/controlsVisibility.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/controlsVisibility.ts`](../src/lib/components/player/controlsVisibility.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/mediaReady.test.ts`](../src/lib/components/player/mediaReady.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/mediaReady.ts`](../src/lib/components/player/mediaReady.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.nativeReveal.test.ts`](../src/lib/components/player/VideoPlayer.nativeReveal.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L596)
|
|
- **Line:** 596
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L625)
|
|
- **Line:** 625
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1634)
|
|
- **Line:** 1634
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1956)
|
|
- **Line:** 1956
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2047)
|
|
- **Line:** 2047
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/adapterSelection.test.ts`](../src/lib/player/adapters/adapterSelection.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/index.ts`](../src/lib/player/adapters/index.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/rustReportHost.ts`](../src/lib/player/adapters/rustReportHost.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](../src/lib/player/adapters/nativeAdapter.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/webviewAudioAdapter.ts`](../src/lib/player/adapters/webviewAudioAdapter.ts#L19)
|
|
- **Line:** 19
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackCapabilities.ts`](../src/lib/services/playbackCapabilities.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/webviewAudio.ts`](../src/lib/services/webviewAudio.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.default.test.ts`](../src/lib/stores/nativeVideo.default.test.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.ts`](../src/lib/stores/nativeVideo.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.ts`](../src/lib/stores/nativeVideo.ts#L73)
|
|
- **Line:** 73
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/nativeVideoLayers.test.ts`](../src/lib/utils/nativeVideoLayers.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/videoSurface.ts`](../src/lib/utils/videoSurface.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L190)
|
|
- **Line:** 190
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1988)
|
|
- **Line:** 1988
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2005)
|
|
- **Line:** 2005
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend_test.rs`](../src-tauri/src/player/mpv_backend_test.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/webview_audio_backend.rs`](../src-tauri/src/player/webview_audio_backend.rs#L25)
|
|
- **Line:** 25
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/webview_audio_backend.rs`](../src-tauri/src/player/webview_audio_backend.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L39)
|
|
- **Line:** 39
|
|
- **Context:** `pub fn playback_failed<S: Into<String>>(message: S) -> Self {`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L60)
|
|
- **Line:** 60
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L126)
|
|
- **Line:** 126
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L154)
|
|
- **Line:** 154
|
|
- **Context:** `pub enum MediaType {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L536)
|
|
- **Line:** 536
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L3255)
|
|
- **Line:** 3255
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-004
|
|
|
|
**Locations:** 72 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L335)
|
|
- **Line:** 335
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1618)
|
|
- **Line:** 1618
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2594)
|
|
- **Line:** 2594
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2751)
|
|
- **Line:** 2751
|
|
- **Context:** `export type PlaybackProgress = { itemId: string;`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2843)
|
|
- **Line:** 2843
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2867)
|
|
- **Line:** 2867
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/AudioPlayer.svelte`](../src/lib/components/player/AudioPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/hlsRecovery.test.ts`](../src/lib/components/player/hlsRecovery.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/hlsRecovery.ts`](../src/lib/components/player/hlsRecovery.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/mediaReady.test.ts`](../src/lib/components/player/mediaReady.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/mediaReady.ts`](../src/lib/components/player/mediaReady.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.nativeReveal.test.ts`](../src/lib/components/player/VideoPlayer.nativeReveal.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L596)
|
|
- **Line:** 596
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1927)
|
|
- **Line:** 1927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/adapterSelection.test.ts`](../src/lib/player/adapters/adapterSelection.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/index.ts`](../src/lib/player/adapters/index.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.test.ts`](../src/lib/player/adapters/html5Adapter.test.ts#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.regression.test.ts`](../src/lib/services/playerEvents.regression.test.ts#L155)
|
|
- **Line:** 155
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L292)
|
|
- **Line:** 292
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.test.ts`](../src/lib/services/preload.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.ts`](../src/lib/services/preload.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.default.test.ts`](../src/lib/stores/nativeVideo.default.test.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.ts`](../src/lib/stores/nativeVideo.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nativeVideo.ts`](../src/lib/stores/nativeVideo.ts#L73)
|
|
- **Line:** 73
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/nativeVideoLayers.test.ts`](../src/lib/utils/nativeVideoLayers.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/videoSurface.ts`](../src/lib/utils/videoSurface.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L441)
|
|
- **Line:** 441
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L665)
|
|
- **Line:** 665
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L299)
|
|
- **Line:** 299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L190)
|
|
- **Line:** 190
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1411)
|
|
- **Line:** 1411
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L592)
|
|
- **Line:** 592
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L438)
|
|
- **Line:** 438
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend_test.rs`](../src-tauri/src/player/mpv_backend_test.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/webview_audio_backend.rs`](../src-tauri/src/player/webview_audio_backend.rs#L25)
|
|
- **Line:** 25
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/webview_audio_backend.rs`](../src-tauri/src/player/webview_audio_backend.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L39)
|
|
- **Line:** 39
|
|
- **Context:** `pub fn playback_failed<S: Into<String>>(message: S) -> Self {`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L60)
|
|
- **Line:** 60
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L126)
|
|
- **Line:** 126
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L154)
|
|
- **Line:** 154
|
|
- **Context:** `pub enum MediaType {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1689)
|
|
- **Line:** 1689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1779)
|
|
- **Line:** 1779
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1810)
|
|
- **Line:** 1810
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L29)
|
|
- **Line:** 29
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L40)
|
|
- **Line:** 40
|
|
- **Context:** `pub fn clamp_max_audio_channels(reported: Option<u32>) -> u32 {`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L120)
|
|
- **Line:** 120
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L150)
|
|
- **Line:** 150
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L213)
|
|
- **Line:** 213
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L238)
|
|
- **Line:** 238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L260)
|
|
- **Line:** 260
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L277)
|
|
- **Line:** 277
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L306)
|
|
- **Line:** 306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L344)
|
|
- **Line:** 344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L362)
|
|
- **Line:** 362
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L765)
|
|
- **Line:** 765
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L898)
|
|
- **Line:** 898
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L985)
|
|
- **Line:** 985
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2138)
|
|
- **Line:** 2138
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2251)
|
|
- **Line:** 2251
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2524)
|
|
- **Line:** 2524
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3232)
|
|
- **Line:** 3232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3276)
|
|
- **Line:** 3276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3355)
|
|
- **Line:** 3355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3714)
|
|
- **Line:** 3714
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-005
|
|
|
|
**Locations:** 103 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L174)
|
|
- **Line:** 174
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2689)
|
|
- **Line:** 2689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2885)
|
|
- **Line:** 2885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2942)
|
|
- **Line:** 2942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3201)
|
|
- **Line:** 3201
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/BottomUi.svelte`](../src/lib/components/BottomUi.svelte#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/AudioPlayer.svelte`](../src/lib/components/player/AudioPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/Controls.svelte`](../src/lib/components/player/Controls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/MiniPlayer.svelte`](../src/lib/components/player/MiniPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L69)
|
|
- **Line:** 69
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/playerSurface.test.ts`](../src/lib/components/player/playerSurface.test.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/playerSurface.ts`](../src/lib/components/player/playerSurface.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/videoFit.ts`](../src/lib/components/player/videoFit.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L625)
|
|
- **Line:** 625
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1051)
|
|
- **Line:** 1051
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1634)
|
|
- **Line:** 1634
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.tapSurface.test.ts`](../src/lib/components/player/VideoPlayer.tapSurface.test.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.touchScrub.test.ts`](../src/lib/components/player/VideoPlayer.touchScrub.test.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/rustReportHost.ts`](../src/lib/player/adapters/rustReportHost.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.test.ts`](../src/lib/player/adapters/html5Adapter.test.ts#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](../src/lib/player/adapters/nativeAdapter.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](../src/lib/player/adapters/nativeAdapter.ts#L59)
|
|
- **Line:** 59
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/webviewAudioAdapter.ts`](../src/lib/player/adapters/webviewAudioAdapter.ts#L19)
|
|
- **Line:** 19
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/transport.authority.test.ts`](../src/lib/player/transport.authority.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackCapabilities.ts`](../src/lib/services/playbackCapabilities.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.test.ts`](../src/lib/services/playbackReporting.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L27)
|
|
- **Line:** 27
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L76)
|
|
- **Line:** 76
|
|
- **Context:** `* This function is therefore the *local* half only, which is what its ...`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L107)
|
|
- **Line:** 107
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.regression.test.ts`](../src/lib/services/playerEvents.regression.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](../src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L159)
|
|
- **Line:** 159
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L189)
|
|
- **Line:** 189
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/webviewAudio.ts`](../src/lib/services/webviewAudio.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/appState.ts`](../src/lib/stores/appState.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/player.ts`](../src/lib/stores/player.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/player.ts`](../src/lib/stores/player.ts#L31)
|
|
- **Line:** 31
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playerVisibility.test.ts`](../src/lib/stores/playerVisibility.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.test.ts`](../src/lib/stores/queue.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L108)
|
|
- **Line:** 108
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L113)
|
|
- **Line:** 113
|
|
- **Context:** `async function next() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L118)
|
|
- **Line:** 118
|
|
- **Context:** `async function previous() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L123)
|
|
- **Line:** 123
|
|
- **Context:** `async function skipTo(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L128)
|
|
- **Line:** 128
|
|
- **Context:** `async function toggleShuffle() {`
|
|
- **File:** [`src/lib/utils/duration.test.ts`](../src/lib/utils/duration.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](../src/lib/utils/layoutShell.test.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L665)
|
|
- **Line:** 665
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/conversions.rs`](../src-tauri/src/commands/conversions.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/session.rs`](../src-tauri/src/commands/player/session.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1988)
|
|
- **Line:** 1988
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2005)
|
|
- **Line:** 2005
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2033)
|
|
- **Line:** 2033
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L564)
|
|
- **Line:** 564
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L573)
|
|
- **Line:** 573
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/webview_audio_backend.rs`](../src-tauri/src/player/webview_audio_backend.rs#L25)
|
|
- **Line:** 25
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/webview_audio_backend.rs`](../src-tauri/src/player/webview_audio_backend.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L46)
|
|
- **Line:** 46
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L50)
|
|
- **Line:** 50
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L54)
|
|
- **Line:** 54
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L58)
|
|
- **Line:** 58
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L499)
|
|
- **Line:** 499
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L536)
|
|
- **Line:** 536
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L651)
|
|
- **Line:** 651
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L659)
|
|
- **Line:** 659
|
|
- **Context:** `pub fn is_html5_active(&self) -> bool {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L703)
|
|
- **Line:** 703
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L763)
|
|
- **Line:** 763
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L872)
|
|
- **Line:** 872
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L944)
|
|
- **Line:** 944
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L959)
|
|
- **Line:** 959
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L970)
|
|
- **Line:** 970
|
|
- **Context:** `pub fn observed_duration(&self) -> Option<f64> {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1008)
|
|
- **Line:** 1008
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1306)
|
|
- **Line:** 1306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1585)
|
|
- **Line:** 1585
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1601)
|
|
- **Line:** 1601
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L3255)
|
|
- **Line:** 3255
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4090)
|
|
- **Line:** 4090
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4133)
|
|
- **Line:** 4133
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4206)
|
|
- **Line:** 4206
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4221)
|
|
- **Line:** 4221
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4379)
|
|
- **Line:** 4379
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4397)
|
|
- **Line:** 4397
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L20)
|
|
- **Line:** 20
|
|
- **Context:** `pub enum RepeatMode {`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L535)
|
|
- **Line:** 535
|
|
- **Context:** `pub enum AddPosition {`
|
|
- **File:** [`src-tauri/src/player/state.rs`](../src-tauri/src/player/state.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/state.rs`](../src-tauri/src/player/state.rs#L25)
|
|
- **Line:** 25
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-020
|
|
|
|
**Locations:** 52 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L154)
|
|
- **Line:** 154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2487)
|
|
- **Line:** 2487
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2639)
|
|
- **Line:** 2639
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3408)
|
|
- **Line:** 3408
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L67)
|
|
- **Line:** 67
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L93)
|
|
- **Line:** 93
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L353)
|
|
- **Line:** 353
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L75)
|
|
- **Line:** 75
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L243)
|
|
- **Line:** 243
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L445)
|
|
- **Line:** 445
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L463)
|
|
- **Line:** 463
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L472)
|
|
- **Line:** 472
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L942)
|
|
- **Line:** 942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2370)
|
|
- **Line:** 2370
|
|
- **Context:** `function toggleSubtitleMenu() {`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2403)
|
|
- **Line:** 2403
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L445)
|
|
- **Line:** 445
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1752)
|
|
- **Line:** 1752
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2918)
|
|
- **Line:** 2918
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2975)
|
|
- **Line:** 2975
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3007)
|
|
- **Line:** 3007
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L119)
|
|
- **Line:** 119
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L84)
|
|
- **Line:** 84
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L99)
|
|
- **Line:** 99
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L120)
|
|
- **Line:** 120
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L150)
|
|
- **Line:** 150
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L306)
|
|
- **Line:** 306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L344)
|
|
- **Line:** 344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L362)
|
|
- **Line:** 362
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L376)
|
|
- **Line:** 376
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L390)
|
|
- **Line:** 390
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L898)
|
|
- **Line:** 898
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L985)
|
|
- **Line:** 985
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1447)
|
|
- **Line:** 1447
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2138)
|
|
- **Line:** 2138
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2251)
|
|
- **Line:** 2251
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2299)
|
|
- **Line:** 2299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3355)
|
|
- **Line:** 3355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3378)
|
|
- **Line:** 3378
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L265)
|
|
- **Line:** 265
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-021
|
|
|
|
**Locations:** 14 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L124)
|
|
- **Line:** 124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L141)
|
|
- **Line:** 141
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L371)
|
|
- **Line:** 371
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L665)
|
|
- **Line:** 665
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1534)
|
|
- **Line:** 1534
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1731)
|
|
- **Line:** 1731
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/series_prefs.rs`](../src-tauri/src/commands/storage/series_prefs.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1717)
|
|
- **Line:** 1717
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4300)
|
|
- **Line:** 4300
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-023
|
|
|
|
**Locations:** 32 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L312)
|
|
- **Line:** 312
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1517)
|
|
- **Line:** 1517
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1525)
|
|
- **Line:** 1525
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2942)
|
|
- **Line:** 2942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/nextEpisodeService.ts`](../src/lib/services/nextEpisodeService.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](../src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L269)
|
|
- **Line:** 269
|
|
- **Context:** `function handleMediaLoaded(duration: number): void {`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L374)
|
|
- **Line:** 374
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/movies.ts`](../src/lib/stores/movies.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nextEpisode.ts`](../src/lib/stores/nextEpisode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L145)
|
|
- **Line:** 145
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/autoplay.rs`](../src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L426)
|
|
- **Line:** 426
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1632)
|
|
- **Line:** 1632
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1874)
|
|
- **Line:** 1874
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1290)
|
|
- **Line:** 1290
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1748)
|
|
- **Line:** 1748
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1775)
|
|
- **Line:** 1775
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-026
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L312)
|
|
- **Line:** 312
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2942)
|
|
- **Line:** 2942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3261)
|
|
- **Line:** 3261
|
|
- **Context:** `export type SessionInfo = { id?: string | null; userId?: string | null...`
|
|
- **File:** [`src/lib/components/player/SleepTimerModal.svelte`](../src/lib/components/player/SleepTimerModal.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](../src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L269)
|
|
- **Line:** 269
|
|
- **Context:** `function handleMediaLoaded(duration: number): void {`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L329)
|
|
- **Line:** 329
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/sleepTimer.ts`](../src/lib/stores/sleepTimer.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L145)
|
|
- **Line:** 145
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/autoplay.rs`](../src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/sleep_timer.rs`](../src-tauri/src/player/sleep_timer.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/sleep_timer.rs`](../src-tauri/src/player/sleep_timer.rs#L81)
|
|
- **Line:** 81
|
|
- **Context:** `pub fn cancel(&mut self) {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L426)
|
|
- **Line:** 426
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-027
|
|
|
|
**Locations:** 23 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L214)
|
|
- **Line:** 214
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2218)
|
|
- **Line:** 2218
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L50)
|
|
- **Line:** 50
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L579)
|
|
- **Line:** 579
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L617)
|
|
- **Line:** 617
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L658)
|
|
- **Line:** 658
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L678)
|
|
- **Line:** 678
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L747)
|
|
- **Line:** 747
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L759)
|
|
- **Line:** 759
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L833)
|
|
- **Line:** 833
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L35)
|
|
- **Line:** 35
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L48)
|
|
- **Line:** 48
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L142)
|
|
- **Line:** 142
|
|
- **Context:** `pub fn with_crossfade_clamped(mut self) -> Self {`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L383)
|
|
- **Line:** 383
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L400)
|
|
- **Line:** 400
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L424)
|
|
- **Line:** 424
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L460)
|
|
- **Line:** 460
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L489)
|
|
- **Line:** 489
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L516)
|
|
- **Line:** 516
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L527)
|
|
- **Line:** 527
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-040
|
|
|
|
**Locations:** 71 file(s)
|
|
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](../src/lib/api/repository-client.test.ts#L442)
|
|
- **Line:** 442
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](../src/lib/api/repository-client.test.ts#L459)
|
|
- **Line:** 459
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L38)
|
|
- **Line:** 38
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L51)
|
|
- **Line:** 51
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L312)
|
|
- **Line:** 312
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L335)
|
|
- **Line:** 335
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1650)
|
|
- **Line:** 1650
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L281)
|
|
- **Line:** 281
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](../src/lib/components/player/backgroundAudioHandoff.test.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](../src/lib/components/player/backgroundAudioHandoff.test.ts#L95)
|
|
- **Line:** 95
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L69)
|
|
- **Line:** 69
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1927)
|
|
- **Line:** 1927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1956)
|
|
- **Line:** 1956
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/backgroundAudio.commands.test.ts`](../src/lib/player/backgroundAudio.commands.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.regression.test.ts`](../src/lib/services/playerEvents.regression.test.ts#L155)
|
|
- **Line:** 155
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L292)
|
|
- **Line:** 292
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/backgroundAudio.test.ts`](../src/lib/utils/backgroundAudio.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/backgroundAudio.ts`](../src/lib/utils/backgroundAudio.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L145)
|
|
- **Line:** 145
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L299)
|
|
- **Line:** 299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L483)
|
|
- **Line:** 483
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L503)
|
|
- **Line:** 503
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L761)
|
|
- **Line:** 761
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L876)
|
|
- **Line:** 876
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3089)
|
|
- **Line:** 3089
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3109)
|
|
- **Line:** 3109
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L640)
|
|
- **Line:** 640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L103)
|
|
- **Line:** 103
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L152)
|
|
- **Line:** 152
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L168)
|
|
- **Line:** 168
|
|
- **Context:** `/ which backends reject (the "Raw(-10)" class of error).`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L181)
|
|
- **Line:** 181
|
|
- **Context:** `/ this function exists to prevent.`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L192)
|
|
- **Line:** 192
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L119)
|
|
- **Line:** 119
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L259)
|
|
- **Line:** 259
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L270)
|
|
- **Line:** 270
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L279)
|
|
- **Line:** 279
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L872)
|
|
- **Line:** 872
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L944)
|
|
- **Line:** 944
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1550)
|
|
- **Line:** 1550
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1571)
|
|
- **Line:** 1571
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1585)
|
|
- **Line:** 1585
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1601)
|
|
- **Line:** 1601
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1610)
|
|
- **Line:** 1610
|
|
- **Context:** `pub fn exit_background_audio(&self) -> f64 {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1617)
|
|
- **Line:** 1617
|
|
- **Context:** `pub fn is_background_audio_active(&self) -> bool {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1632)
|
|
- **Line:** 1632
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1689)
|
|
- **Line:** 1689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1722)
|
|
- **Line:** 1722
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1779)
|
|
- **Line:** 1779
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1810)
|
|
- **Line:** 1810
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1874)
|
|
- **Line:** 1874
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4027)
|
|
- **Line:** 4027
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4090)
|
|
- **Line:** 4090
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4170)
|
|
- **Line:** 4170
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4189)
|
|
- **Line:** 4189
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4235)
|
|
- **Line:** 4235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4322)
|
|
- **Line:** 4322
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4350)
|
|
- **Line:** 4350
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L54)
|
|
- **Line:** 54
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L121)
|
|
- **Line:** 121
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L134)
|
|
- **Line:** 134
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L684)
|
|
- **Line:** 684
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3199)
|
|
- **Line:** 3199
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3453)
|
|
- **Line:** 3453
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3494)
|
|
- **Line:** 3494
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L476)
|
|
- **Line:** 476
|
|
- **Context:** `Unknown`
|
|
|
|
### IT-003
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mpv_backend_test.rs`](../src-tauri/src/player/mpv_backend_test.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### IT-013
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L38)
|
|
- **Line:** 38
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L51)
|
|
- **Line:** 51
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L761)
|
|
- **Line:** 761
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L876)
|
|
- **Line:** 876
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-010
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-014
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-015
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-016
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-017
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-018
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-019
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-020
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-021
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-022
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-023
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-024
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-025
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UT-042
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2527)
|
|
- **Line:** 2527
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-043
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2527)
|
|
- **Line:** 2527
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-044
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/offline.rs`](../src-tauri/src/commands/offline.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-051
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3984)
|
|
- **Line:** 3984
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-052
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L316)
|
|
- **Line:** 316
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-059
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L684)
|
|
- **Line:** 684
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3453)
|
|
- **Line:** 3453
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3494)
|
|
- **Line:** 3494
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-060
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](../src/lib/components/player/backgroundAudioHandoff.test.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L69)
|
|
- **Line:** 69
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.ts`](../src/lib/components/player/backgroundAudioHandoff.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-061
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](../src/lib/api/repository-client.test.ts#L442)
|
|
- **Line:** 442
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](../src/lib/api/repository-client.test.ts#L459)
|
|
- **Line:** 459
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L38)
|
|
- **Line:** 38
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L51)
|
|
- **Line:** 51
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1650)
|
|
- **Line:** 1650
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/backgroundAudio.commands.test.ts`](../src/lib/player/backgroundAudio.commands.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L761)
|
|
- **Line:** 761
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L876)
|
|
- **Line:** 876
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L640)
|
|
- **Line:** 640
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-009
|
|
|
|
**Locations:** 14 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L644)
|
|
- **Line:** 644
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L660)
|
|
- **Line:** 660
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/deviceId.test.ts`](../src/lib/services/deviceId.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/deviceId.ts`](../src/lib/services/deviceId.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/deviceId.ts`](../src/lib/services/deviceId.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.test.ts`](../src/lib/stores/auth.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/device.rs`](../src-tauri/src/commands/device.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/device.rs`](../src-tauri/src/commands/device.rs#L24)
|
|
- **Line:** 24
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/device.rs`](../src-tauri/src/commands/device.rs#L81)
|
|
- **Line:** 81
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/jellyfin/client.rs`](../src-tauri/src/jellyfin/client.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-018
|
|
|
|
**Locations:** 20 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L916)
|
|
- **Line:** 916
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L957)
|
|
- **Line:** 957
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L442)
|
|
- **Line:** 442
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L473)
|
|
- **Line:** 473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L524)
|
|
- **Line:** 524
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L546)
|
|
- **Line:** 546
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L679)
|
|
- **Line:** 679
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2527)
|
|
- **Line:** 2527
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3238)
|
|
- **Line:** 3238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3303)
|
|
- **Line:** 3303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3334)
|
|
- **Line:** 3334
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3367)
|
|
- **Line:** 3367
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3396)
|
|
- **Line:** 3396
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3410)
|
|
- **Line:** 3410
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3437)
|
|
- **Line:** 3437
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L153)
|
|
- **Line:** 153
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-019
|
|
|
|
**Locations:** 18 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1517)
|
|
- **Line:** 1517
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2942)
|
|
- **Line:** 2942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.test.ts`](../src/lib/services/playbackReporting.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](../src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L441)
|
|
- **Line:** 441
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/playback_reporting.rs`](../src-tauri/src/commands/playback_reporting.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/events.rs`](../src-tauri/src/player/events.rs#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1151)
|
|
- **Line:** 1151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1748)
|
|
- **Line:** 1748
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1953)
|
|
- **Line:** 1953
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
|
|
### UR-025
|
|
|
|
**Locations:** 68 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1340)
|
|
- **Line:** 1340
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1695)
|
|
- **Line:** 1695
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3441)
|
|
- **Line:** 3441
|
|
- **Context:** `export type SyncQueueItem = { id: number; userId: string; operation: s...`
|
|
- **File:** [`src/lib/components/sync/PendingSyncList.svelte`](../src/lib/components/sync/PendingSyncList.svelte#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sync/PendingSyncModal.svelte`](../src/lib/components/sync/PendingSyncModal.svelte#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/pendingSync.logic.test.ts`](../src/lib/services/pendingSync.logic.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/pendingSync.logic.ts`](../src/lib/services/pendingSync.logic.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.test.ts`](../src/lib/services/playbackReporting.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L27)
|
|
- **Line:** 27
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L107)
|
|
- **Line:** 107
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](../src/lib/services/playbackReporting.ts#L143)
|
|
- **Line:** 143
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](../src/lib/services/playerEvents.ts#L159)
|
|
- **Line:** 159
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.test.ts`](../src/lib/services/skipReporting.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.ts`](../src/lib/services/skipReporting.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L61)
|
|
- **Line:** 61
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](../src/routes/+layout.svelte#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1005)
|
|
- **Line:** 1005
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/playback_reporting.rs`](../src-tauri/src/commands/playback_reporting.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](../src-tauri/src/commands/sync.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](../src-tauri/src/commands/sync.rs#L33)
|
|
- **Line:** 33
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L76)
|
|
- **Line:** 76
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L236)
|
|
- **Line:** 236
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L380)
|
|
- **Line:** 380
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L427)
|
|
- **Line:** 427
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L474)
|
|
- **Line:** 474
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L606)
|
|
- **Line:** 606
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L672)
|
|
- **Line:** 672
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L702)
|
|
- **Line:** 702
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L736)
|
|
- **Line:** 736
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L765)
|
|
- **Line:** 765
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L811)
|
|
- **Line:** 811
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L856)
|
|
- **Line:** 856
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L915)
|
|
- **Line:** 915
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L954)
|
|
- **Line:** 954
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L992)
|
|
- **Line:** 992
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1007)
|
|
- **Line:** 1007
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L764)
|
|
- **Line:** 764
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L67)
|
|
- **Line:** 67
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L119)
|
|
- **Line:** 119
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L763)
|
|
- **Line:** 763
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L944)
|
|
- **Line:** 944
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L978)
|
|
- **Line:** 978
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L987)
|
|
- **Line:** 987
|
|
- **Context:** `pub fn set_report_sink(&self, sink: Arc<dyn PlaybackReportSink>) {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1306)
|
|
- **Line:** 1306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1550)
|
|
- **Line:** 1550
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4206)
|
|
- **Line:** 4206
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4257)
|
|
- **Line:** 4257
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4284)
|
|
- **Line:** 4284
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4322)
|
|
- **Line:** 4322
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4350)
|
|
- **Line:** 4350
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4379)
|
|
- **Line:** 4379
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L688)
|
|
- **Line:** 688
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4692)
|
|
- **Line:** 4692
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4778)
|
|
- **Line:** 4778
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L426)
|
|
- **Line:** 426
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L653)
|
|
- **Line:** 653
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L258)
|
|
- **Line:** 258
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2674)
|
|
- **Line:** 2674
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1580)
|
|
- **Line:** 1580
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-034
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1517)
|
|
- **Line:** 1517
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1525)
|
|
- **Line:** 1525
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/Carousel.svelte`](../src/lib/components/home/Carousel.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/HeroBanner.svelte`](../src/lib/components/home/HeroBanner.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/heroRotation.test.ts`](../src/lib/components/home/heroRotation.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/heroRotation.ts`](../src/lib/components/home/heroRotation.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/movies.ts`](../src/lib/stores/movies.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/music.ts`](../src/lib/stores/music.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/heroMix.ts`](../src/lib/utils/heroMix.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](../src/routes/library/music/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1268)
|
|
- **Line:** 1268
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1953)
|
|
- **Line:** 1953
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-049
|
|
|
|
**Locations:** 22 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1600)
|
|
- **Line:** 1600
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3236)
|
|
- **Line:** 3236
|
|
- **Context:** `export type SearchResult = { items: MediaItem[]; totalRecordCount: num...`
|
|
- **File:** [`src/lib/components/search/HeaderSearch.svelte`](../src/lib/components/search/HeaderSearch.svelte#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/search/HeaderSearch.test.ts`](../src/lib/components/search/HeaderSearch.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/search/SearchScopeChips.svelte`](../src/lib/components/search/SearchScopeChips.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L239)
|
|
- **Line:** 239
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/librarySearchScope.test.ts`](../src/lib/stores/librarySearchScope.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L90)
|
|
- **Line:** 90
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L36)
|
|
- **Line:** 36
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L61)
|
|
- **Line:** 61
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L125)
|
|
- **Line:** 125
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/searchPage.test.ts`](../src/routes/search/searchPage.test.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L494)
|
|
- **Line:** 494
|
|
- **Context:** `pub struct SearchUpdateEvent {`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L355)
|
|
- **Line:** 355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L373)
|
|
- **Line:** 373
|
|
- **Context:** `impl SearchScope {`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L439)
|
|
- **Line:** 439
|
|
- **Context:** `impl SearchOptions {`
|
|
|
|
### UR-050
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1600)
|
|
- **Line:** 1600
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/search/SearchResults.svelte`](../src/lib/components/search/SearchResults.svelte#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/settings/SearchGroupOrderList.svelte`](../src/lib/components/settings/SearchGroupOrderList.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/searchGroupOrder.test.ts`](../src/lib/stores/searchGroupOrder.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/searchGroupOrder.ts`](../src/lib/stores/searchGroupOrder.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L284)
|
|
- **Line:** 284
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L494)
|
|
- **Line:** 494
|
|
- **Context:** `pub struct SearchUpdateEvent {`
|
|
|
|
### UR-053
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1194)
|
|
- **Line:** 1194
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1205)
|
|
- **Line:** 1205
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2503)
|
|
- **Line:** 2503
|
|
- **Context:** `export type MergedMediaItem = { id: string; title: string; artist: str...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2512)
|
|
- **Line:** 2512
|
|
- **Context:** `export type NetworkStateWrapperArg = { networkType: NetworkType; unmet...`
|
|
- **File:** [`src/lib/services/networkType.test.ts`](../src/lib/services/networkType.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/networkType.ts`](../src/lib/services/networkType.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L84)
|
|
- **Line:** 84
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L31)
|
|
- **Line:** 31
|
|
- **Context:** `pub struct DownloadManagerWrapper(pub Mutex<DownloadManager>);`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L40)
|
|
- **Line:** 40
|
|
- **Context:** `pub struct NetworkStateWrapper(pub NetworkStateHandle);`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L83)
|
|
- **Line:** 83
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L96)
|
|
- **Line:** 96
|
|
- **Context:** `pub struct NetworkStateWrapperArg {`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1744)
|
|
- **Line:** 1744
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L86)
|
|
- **Line:** 86
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/events.rs`](../src-tauri/src/download/events.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/network.rs`](../src-tauri/src/download/network.rs#L22)
|
|
- **Line:** 22
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/network.rs`](../src-tauri/src/download/network.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/network.rs`](../src-tauri/src/download/network.rs#L70)
|
|
- **Line:** 70
|
|
- **Context:** `impl NetworkState {`
|
|
|
|
### UR-055
|
|
|
|
**Locations:** 54 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L927)
|
|
- **Line:** 927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L940)
|
|
- **Line:** 940
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L977)
|
|
- **Line:** 977
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1475)
|
|
- **Line:** 1475
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1483)
|
|
- **Line:** 1483
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L100)
|
|
- **Line:** 100
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L108)
|
|
- **Line:** 108
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](../src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L29)
|
|
- **Line:** 29
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](../src/lib/services/downloadedCatalog.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](../src/lib/services/downloadedCatalog.ts#L96)
|
|
- **Line:** 96
|
|
- **Context:** `function sizeOf(itemId: string): number {`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L316)
|
|
- **Line:** 316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/downloads/+page.svelte`](../src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L916)
|
|
- **Line:** 916
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L957)
|
|
- **Line:** 957
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L442)
|
|
- **Line:** 442
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L473)
|
|
- **Line:** 473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L524)
|
|
- **Line:** 524
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L546)
|
|
- **Line:** 546
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L679)
|
|
- **Line:** 679
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1226)
|
|
- **Line:** 1226
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1260)
|
|
- **Line:** 1260
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2425)
|
|
- **Line:** 2425
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3238)
|
|
- **Line:** 3238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3303)
|
|
- **Line:** 3303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3334)
|
|
- **Line:** 3334
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3367)
|
|
- **Line:** 3367
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3396)
|
|
- **Line:** 3396
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3410)
|
|
- **Line:** 3410
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3437)
|
|
- **Line:** 3437
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L222)
|
|
- **Line:** 222
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L237)
|
|
- **Line:** 237
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/stop.rs`](../src-tauri/src/download/stop.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L247)
|
|
- **Line:** 247
|
|
- **Context:** `/ One function so the writer and the cleaners cannot disagree again.`
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L336)
|
|
- **Line:** 336
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L848)
|
|
- **Line:** 848
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L857)
|
|
- **Line:** 857
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L884)
|
|
- **Line:** 884
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L990)
|
|
- **Line:** 990
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3705)
|
|
- **Line:** 3705
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3727)
|
|
- **Line:** 3727
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3767)
|
|
- **Line:** 3767
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3837)
|
|
- **Line:** 3837
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3883)
|
|
- **Line:** 3883
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3904)
|
|
- **Line:** 3904
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3923)
|
|
- **Line:** 3923
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3984)
|
|
- **Line:** 3984
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L153)
|
|
- **Line:** 153
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L289)
|
|
- **Line:** 289
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-056
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1491)
|
|
- **Line:** 1491
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2143)
|
|
- **Line:** 2143
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L116)
|
|
- **Line:** 116
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](../src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/LibraryGrid.svelte`](../src/lib/components/library/LibraryGrid.svelte#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](../src/lib/services/downloadedCatalog.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](../src/lib/services/downloadedCatalog.ts#L96)
|
|
- **Line:** 96
|
|
- **Context:** `function sizeOf(itemId: string): number {`
|
|
- **File:** [`src/lib/utils/formatBytes.test.ts`](../src/lib/utils/formatBytes.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/formatBytes.ts`](../src/lib/utils/formatBytes.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/downloads/+page.svelte`](../src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L254)
|
|
- **Line:** 254
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L1036)
|
|
- **Line:** 1036
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3945)
|
|
- **Line:** 3945
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L296)
|
|
- **Line:** 296
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-062
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1538)
|
|
- **Line:** 1538
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1551)
|
|
- **Line:** 1551
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L151)
|
|
- **Line:** 151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L161)
|
|
- **Line:** 161
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeRow.svelte`](../src/lib/components/library/EpisodeRow.svelte#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/SeasonSection.svelte`](../src/lib/components/library/SeasonSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/SeasonSection.svelte`](../src/lib/components/library/SeasonSection.svelte#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/episodeStrip.ts`](../src/lib/components/library/episodeStrip.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/seriesNavigation.test.ts`](../src/lib/components/library/seriesNavigation.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/seriesNavigation.ts`](../src/lib/components/library/seriesNavigation.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L124)
|
|
- **Line:** 124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L205)
|
|
- **Line:** 205
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L326)
|
|
- **Line:** 326
|
|
- **Context:** `async function handlePlayAll() {`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L356)
|
|
- **Line:** 356
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L377)
|
|
- **Line:** 377
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/series_progress.rs`](../src-tauri/src/repository/series_progress.rs#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-064
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1565)
|
|
- **Line:** 1565
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L172)
|
|
- **Line:** 172
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/ClearHistoryButton.svelte`](../src/lib/components/library/ClearHistoryButton.svelte#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/SeasonSection.svelte`](../src/lib/components/library/SeasonSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L399)
|
|
- **Line:** 399
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2629)
|
|
- **Line:** 2629
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-071
|
|
|
|
**Locations:** 69 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L371)
|
|
- **Line:** 371
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1017)
|
|
- **Line:** 1017
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1033)
|
|
- **Line:** 1033
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2050)
|
|
- **Line:** 2050
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/localSource.ts`](../src/lib/player/localSource.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/localSource.ts`](../src/lib/player/localSource.ts#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L314)
|
|
- **Line:** 314
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L328)
|
|
- **Line:** 328
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L405)
|
|
- **Line:** 405
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L409)
|
|
- **Line:** 409
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L414)
|
|
- **Line:** 414
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L114)
|
|
- **Line:** 114
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L490)
|
|
- **Line:** 490
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L551)
|
|
- **Line:** 551
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L689)
|
|
- **Line:** 689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1001)
|
|
- **Line:** 1001
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1039)
|
|
- **Line:** 1039
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1062)
|
|
- **Line:** 1062
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1090)
|
|
- **Line:** 1090
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L359)
|
|
- **Line:** 359
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L462)
|
|
- **Line:** 462
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L483)
|
|
- **Line:** 483
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L503)
|
|
- **Line:** 503
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L533)
|
|
- **Line:** 533
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L585)
|
|
- **Line:** 585
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L779)
|
|
- **Line:** 779
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3041)
|
|
- **Line:** 3041
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3089)
|
|
- **Line:** 3089
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3109)
|
|
- **Line:** 3109
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3125)
|
|
- **Line:** 3125
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L93)
|
|
- **Line:** 93
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L117)
|
|
- **Line:** 117
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L33)
|
|
- **Line:** 33
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L220)
|
|
- **Line:** 220
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L320)
|
|
- **Line:** 320
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L428)
|
|
- **Line:** 428
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L550)
|
|
- **Line:** 550
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L219)
|
|
- **Line:** 219
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L313)
|
|
- **Line:** 313
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L27)
|
|
- **Line:** 27
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L70)
|
|
- **Line:** 70
|
|
- **Context:** `pub fn url_for(&self, path: &str) -> String {`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L282)
|
|
- **Line:** 282
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L327)
|
|
- **Line:** 327
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L398)
|
|
- **Line:** 398
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L449)
|
|
- **Line:** 449
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L458)
|
|
- **Line:** 458
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L473)
|
|
- **Line:** 473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L508)
|
|
- **Line:** 508
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L515)
|
|
- **Line:** 515
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L540)
|
|
- **Line:** 540
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L567)
|
|
- **Line:** 567
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L877)
|
|
- **Line:** 877
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4027)
|
|
- **Line:** 4027
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L277)
|
|
- **Line:** 277
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L457)
|
|
- **Line:** 457
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L350)
|
|
- **Line:** 350
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L372)
|
|
- **Line:** 372
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2447)
|
|
- **Line:** 2447
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2524)
|
|
- **Line:** 2524
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3714)
|
|
- **Line:** 3714
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3746)
|
|
- **Line:** 3746
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3772)
|
|
- **Line:** 3772
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L174)
|
|
- **Line:** 174
|
|
- **Context:** `impl StreamSelection {`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L275)
|
|
- **Line:** 275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L813)
|
|
- **Line:** 813
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1124)
|
|
- **Line:** 1124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1483)
|
|
- **Line:** 1483
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/tauri-security-config.test.ts`](../scripts/tauri-security-config.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-073
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L834)
|
|
- **Line:** 834
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/WatchedToggleButton.svelte`](../src/lib/components/library/WatchedToggleButton.svelte#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L121)
|
|
- **Line:** 121
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L915)
|
|
- **Line:** 915
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1047)
|
|
- **Line:** 1047
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1064)
|
|
- **Line:** 1064
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-074
|
|
|
|
**Locations:** 62 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L258)
|
|
- **Line:** 258
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3307)
|
|
- **Line:** 3307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3383)
|
|
- **Line:** 3383
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3548)
|
|
- **Line:** 3548
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/hlsRecovery.test.ts`](../src/lib/components/player/hlsRecovery.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/hlsRecovery.ts`](../src/lib/components/player/hlsRecovery.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L306)
|
|
- **Line:** 306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2330)
|
|
- **Line:** 2330
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2806)
|
|
- **Line:** 2806
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.test.ts`](../src/lib/player/adapters/html5Adapter.test.ts#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L84)
|
|
- **Line:** 84
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L418)
|
|
- **Line:** 418
|
|
- **Context:** `function handleEpisodeLimitChange(value: number) {`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L918)
|
|
- **Line:** 918
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L25)
|
|
- **Line:** 25
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L85)
|
|
- **Line:** 85
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L107)
|
|
- **Line:** 107
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L122)
|
|
- **Line:** 122
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L158)
|
|
- **Line:** 158
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L368)
|
|
- **Line:** 368
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L694)
|
|
- **Line:** 694
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L936)
|
|
- **Line:** 936
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1626)
|
|
- **Line:** 1626
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1678)
|
|
- **Line:** 1678
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2381)
|
|
- **Line:** 2381
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L30)
|
|
- **Line:** 30
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L46)
|
|
- **Line:** 46
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L56)
|
|
- **Line:** 56
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L67)
|
|
- **Line:** 67
|
|
- **Context:** `pub fn set_streaming_quality(quality: StreamingQuality) {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L74)
|
|
- **Line:** 74
|
|
- **Context:** `pub fn streaming_quality() -> StreamingQuality {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L85)
|
|
- **Line:** 85
|
|
- **Context:** `pub fn set_playback_quality_override(quality: StreamingQuality) {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L92)
|
|
- **Line:** 92
|
|
- **Context:** `pub fn clear_playback_quality_override() {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L122)
|
|
- **Line:** 122
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L152)
|
|
- **Line:** 152
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L530)
|
|
- **Line:** 530
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L721)
|
|
- **Line:** 721
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L765)
|
|
- **Line:** 765
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L824)
|
|
- **Line:** 824
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2278)
|
|
- **Line:** 2278
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3126)
|
|
- **Line:** 3126
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3144)
|
|
- **Line:** 3144
|
|
- **Context:** `impl Drop for QualityFixture {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3154)
|
|
- **Line:** 3154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3176)
|
|
- **Line:** 3176
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3199)
|
|
- **Line:** 3199
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3276)
|
|
- **Line:** 3276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3326)
|
|
- **Line:** 3326
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3422)
|
|
- **Line:** 3422
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4316)
|
|
- **Line:** 4316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4364)
|
|
- **Line:** 4364
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4397)
|
|
- **Line:** 4397
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L167)
|
|
- **Line:** 167
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L302)
|
|
- **Line:** 302
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L653)
|
|
- **Line:** 653
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L689)
|
|
- **Line:** 689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L716)
|
|
- **Line:** 716
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1440)
|
|
- **Line:** 1440
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-079
|
|
|
|
**Locations:** 87 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L258)
|
|
- **Line:** 258
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1033)
|
|
- **Line:** 1033
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1636)
|
|
- **Line:** 1636
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2344)
|
|
- **Line:** 2344
|
|
- **Context:** `export type LiveStreamInfo = { streamUrl: string; playSessionId: strin...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2594)
|
|
- **Line:** 2594
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2718)
|
|
- **Line:** 2718
|
|
- **Context:** `export type PlaybackInfo = { mediaSourceId: string; playSessionId: str...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2843)
|
|
- **Line:** 2843
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3136)
|
|
- **Line:** 3136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3175)
|
|
- **Line:** 3175
|
|
- **Context:** `export type RemoteSessionStatus = { position: number; duration: number...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3324)
|
|
- **Line:** 3324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3365)
|
|
- **Line:** 3365
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3461)
|
|
- **Line:** 3461
|
|
- **Context:** `* domain fact reconstructed in the presentation layer — the same class...`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L263)
|
|
- **Line:** 263
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L193)
|
|
- **Line:** 193
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L638)
|
|
- **Line:** 638
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L958)
|
|
- **Line:** 958
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1964)
|
|
- **Line:** 1964
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2330)
|
|
- **Line:** 2330
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2833)
|
|
- **Line:** 2833
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L40)
|
|
- **Line:** 40
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L80)
|
|
- **Line:** 80
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L54)
|
|
- **Line:** 54
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](../src/lib/player/adapters/types.ts#L130)
|
|
- **Line:** 130
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/streamTransport.test.ts`](../src/lib/player/streamTransport.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/streamTransport.ts`](../src/lib/player/streamTransport.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L85)
|
|
- **Line:** 85
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L422)
|
|
- **Line:** 422
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L190)
|
|
- **Line:** 190
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L334)
|
|
- **Line:** 334
|
|
- **Context:** `pub enum VideoSeekResponse {`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L356)
|
|
- **Line:** 356
|
|
- **Context:** `pub enum AudioTrackSwitchResponse {`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L382)
|
|
- **Line:** 382
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L439)
|
|
- **Line:** 439
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L694)
|
|
- **Line:** 694
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L936)
|
|
- **Line:** 936
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1411)
|
|
- **Line:** 1411
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1626)
|
|
- **Line:** 1626
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1678)
|
|
- **Line:** 1678
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2381)
|
|
- **Line:** 2381
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L117)
|
|
- **Line:** 117
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L621)
|
|
- **Line:** 621
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L126)
|
|
- **Line:** 126
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L46)
|
|
- **Line:** 46
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L74)
|
|
- **Line:** 74
|
|
- **Context:** `pub fn streaming_quality() -> StreamingQuality {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L85)
|
|
- **Line:** 85
|
|
- **Context:** `pub fn set_playback_quality_override(quality: StreamingQuality) {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L92)
|
|
- **Line:** 92
|
|
- **Context:** `pub fn clear_playback_quality_override() {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L765)
|
|
- **Line:** 765
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L935)
|
|
- **Line:** 935
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1499)
|
|
- **Line:** 1499
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1627)
|
|
- **Line:** 1627
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3144)
|
|
- **Line:** 3144
|
|
- **Context:** `impl Drop for QualityFixture {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4233)
|
|
- **Line:** 4233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4246)
|
|
- **Line:** 4246
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4265)
|
|
- **Line:** 4265
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4284)
|
|
- **Line:** 4284
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4300)
|
|
- **Line:** 4300
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4316)
|
|
- **Line:** 4316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4344)
|
|
- **Line:** 4344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4364)
|
|
- **Line:** 4364
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4397)
|
|
- **Line:** 4397
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L33)
|
|
- **Line:** 33
|
|
- **Context:** `/ domain fact reconstructed in the presentation layer — the same class...`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L76)
|
|
- **Line:** 76
|
|
- **Context:** `impl PlaybackKind {`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L88)
|
|
- **Line:** 88
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L111)
|
|
- **Line:** 111
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L163)
|
|
- **Line:** 163
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L174)
|
|
- **Line:** 174
|
|
- **Context:** `impl StreamSelection {`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L229)
|
|
- **Line:** 229
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L264)
|
|
- **Line:** 264
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L275)
|
|
- **Line:** 275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L289)
|
|
- **Line:** 289
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L364)
|
|
- **Line:** 364
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L380)
|
|
- **Line:** 380
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L394)
|
|
- **Line:** 394
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L404)
|
|
- **Line:** 404
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L479)
|
|
- **Line:** 479
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-062
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/backgroundAudio.test.ts`](../src/lib/utils/backgroundAudio.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-066
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/services/networkType.test.ts`](../src/lib/services/networkType.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-071
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/formatBytes.test.ts`](../src/lib/utils/formatBytes.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-072
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3705)
|
|
- **Line:** 3705
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-073
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3904)
|
|
- **Line:** 3904
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-074
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3923)
|
|
- **Line:** 3923
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-075
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3945)
|
|
- **Line:** 3945
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-076
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3727)
|
|
- **Line:** 3727
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-077
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3837)
|
|
- **Line:** 3837
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-078
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3883)
|
|
- **Line:** 3883
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-079
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L460)
|
|
- **Line:** 460
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-080
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L489)
|
|
- **Line:** 489
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-081
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L516)
|
|
- **Line:** 516
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-082
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L527)
|
|
- **Line:** 527
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-084
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L759)
|
|
- **Line:** 759
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-085
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L778)
|
|
- **Line:** 778
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-087
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L833)
|
|
- **Line:** 833
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-089
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.touchScrub.test.ts`](../src/lib/components/player/VideoPlayer.touchScrub.test.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-090
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.touchScrub.test.ts`](../src/lib/components/player/VideoPlayer.touchScrub.test.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-091
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/player/transport.authority.test.ts`](../src/lib/player/transport.authority.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](../src/lib/player/index.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-094
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](../src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-095
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](../src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-096
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](../src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-097
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](../src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-098
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](../src/lib/utils/layoutShell.test.ts#L158)
|
|
- **Line:** 158
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-099
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1151)
|
|
- **Line:** 1151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4040)
|
|
- **Line:** 4040
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4071)
|
|
- **Line:** 4071
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-100
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L238)
|
|
- **Line:** 238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1313)
|
|
- **Line:** 1313
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2559)
|
|
- **Line:** 2559
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3822)
|
|
- **Line:** 3822
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3844)
|
|
- **Line:** 3844
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3853)
|
|
- **Line:** 3853
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-105
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](../src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-106
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](../src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L44)
|
|
- **Line:** 44
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-107
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1727)
|
|
- **Line:** 1727
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L893)
|
|
- **Line:** 893
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L908)
|
|
- **Line:** 908
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L927)
|
|
- **Line:** 927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L1081)
|
|
- **Line:** 1081
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L1106)
|
|
- **Line:** 1106
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-116
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L371)
|
|
- **Line:** 371
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L533)
|
|
- **Line:** 533
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L585)
|
|
- **Line:** 585
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3125)
|
|
- **Line:** 3125
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-117
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L335)
|
|
- **Line:** 335
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](../src-tauri/src/commands/player/timers.rs#L299)
|
|
- **Line:** 299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1689)
|
|
- **Line:** 1689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1722)
|
|
- **Line:** 1722
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1779)
|
|
- **Line:** 1779
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1810)
|
|
- **Line:** 1810
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L54)
|
|
- **Line:** 54
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-118
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/player/localSource.ts`](../src/lib/player/localSource.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-123
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/services/pendingSync.logic.test.ts`](../src/lib/services/pendingSync.logic.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/pendingSync.logic.ts`](../src/lib/services/pendingSync.logic.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-124
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/player/localSource.ts`](../src/lib/player/localSource.ts#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-131
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-132
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-133
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-134
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-135
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-170
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L546)
|
|
- **Line:** 546
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L679)
|
|
- **Line:** 679
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3238)
|
|
- **Line:** 3238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3303)
|
|
- **Line:** 3303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3334)
|
|
- **Line:** 3334
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3410)
|
|
- **Line:** 3410
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3437)
|
|
- **Line:** 3437
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-008
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.searchEvent.test.ts`](../src/lib/components/library/GenericMediaListPage.searchEvent.test.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2036)
|
|
- **Line:** 2036
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-015
|
|
|
|
**Locations:** 13 file(s)
|
|
|
|
- **File:** [`src/lib/stores/queue.test.ts`](../src/lib/stores/queue.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L108)
|
|
- **Line:** 108
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L113)
|
|
- **Line:** 113
|
|
- **Context:** `async function next() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L118)
|
|
- **Line:** 118
|
|
- **Context:** `async function previous() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L123)
|
|
- **Line:** 123
|
|
- **Context:** `async function skipTo(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L128)
|
|
- **Line:** 128
|
|
- **Context:** `async function toggleShuffle() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L133)
|
|
- **Line:** 133
|
|
- **Context:** `async function cycleRepeat() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L138)
|
|
- **Line:** 138
|
|
- **Context:** `async function removeFromQueue(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](../src/lib/stores/queue.ts#L143)
|
|
- **Line:** 143
|
|
- **Context:** `async function moveInQueue(fromIndex: number, toIndex: number) {`
|
|
- **File:** [`src-tauri/src/commands/player/queue.rs`](../src-tauri/src/commands/player/queue.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L20)
|
|
- **Line:** 20
|
|
- **Context:** `pub enum RepeatMode {`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L535)
|
|
- **Line:** 535
|
|
- **Context:** `pub enum AddPosition {`
|
|
|
|
### UR-024
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1268)
|
|
- **Line:** 1268
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-028
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/AudioPlayer.svelte`](../src/lib/components/player/AudioPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/MiniPlayer.svelte`](../src/lib/components/player/MiniPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-029
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/LibraryGrid.svelte`](../src/lib/components/library/LibraryGrid.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/viewMode.test.ts`](../src/lib/stores/viewMode.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-030
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-036
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/PersonDetailView.svelte`](../src/lib/components/library/PersonDetailView.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/people.rs`](../src-tauri/src/commands/storage/people.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2723)
|
|
- **Line:** 2723
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2736)
|
|
- **Line:** 2736
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-037
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/LibraryGrid.svelte`](../src/lib/components/library/LibraryGrid.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-051
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/LibraryGrid.svelte`](../src/lib/components/library/LibraryGrid.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-052
|
|
|
|
**Locations:** 23 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericGenreBrowser.svelte`](../src/lib/components/library/GenericGenreBrowser.svelte#L67)
|
|
- **Line:** 67
|
|
- **Context:** `async function reloadGenreBrowse() {`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L103)
|
|
- **Line:** 103
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/composables/useOfflineFilterReload.test.ts`](../src/lib/composables/useOfflineFilterReload.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/composables/useOfflineFilterReload.ts`](../src/lib/composables/useOfflineFilterReload.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.reload.test.ts`](../src/lib/services/offlineCatalog.reload.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.ts`](../src/lib/services/offlineCatalog.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.ts`](../src/lib/services/offlineCatalog.ts#L46)
|
|
- **Line:** 46
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/connectivity.ts`](../src/lib/stores/connectivity.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/connectivity.ts`](../src/lib/stores/connectivity.ts#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L100)
|
|
- **Line:** 100
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L88)
|
|
- **Line:** 88
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L73)
|
|
- **Line:** 73
|
|
- **Context:** `async function load() {`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](../src/routes/library/music/+page.svelte#L71)
|
|
- **Line:** 71
|
|
- **Context:** `async function load() {`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L74)
|
|
- **Line:** 74
|
|
- **Context:** `async function load() {`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L551)
|
|
- **Line:** 551
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L878)
|
|
- **Line:** 878
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1001)
|
|
- **Line:** 1001
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L24)
|
|
- **Line:** 24
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L43)
|
|
- **Line:** 43
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3026)
|
|
- **Line:** 3026
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-063
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/GenericGenreBrowser.svelte`](../src/lib/components/library/GenericGenreBrowser.svelte#L45)
|
|
- **Line:** 45
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L50)
|
|
- **Line:** 50
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/LibraryViewTabs.svelte`](../src/lib/components/library/LibraryViewTabs.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/libraryView.ts`](../src/lib/utils/libraryView.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/all/+page.ts`](../src/routes/library/movies/all/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/genres/+page.ts`](../src/routes/library/movies/genres/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/shows/genres/+page.ts`](../src/routes/library/shows/genres/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/shows/+page.ts`](../src/routes/library/tv/shows/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-076
|
|
|
|
**Locations:** 44 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1109)
|
|
- **Line:** 1109
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1121)
|
|
- **Line:** 1121
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1139)
|
|
- **Line:** 1139
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2229)
|
|
- **Line:** 2229
|
|
- **Context:** `export type EqPreset = "flat" | "rock" | "pop" | "jazz" | "classical" ...`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2318)
|
|
- **Line:** 2318
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L125)
|
|
- **Line:** 125
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/music.ts`](../src/lib/stores/music.ts#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L201)
|
|
- **Line:** 201
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L220)
|
|
- **Line:** 220
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L596)
|
|
- **Line:** 596
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L68)
|
|
- **Line:** 68
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L83)
|
|
- **Line:** 83
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L112)
|
|
- **Line:** 112
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L220)
|
|
- **Line:** 220
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L295)
|
|
- **Line:** 295
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L22)
|
|
- **Line:** 22
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L34)
|
|
- **Line:** 34
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L48)
|
|
- **Line:** 48
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L63)
|
|
- **Line:** 63
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L87)
|
|
- **Line:** 87
|
|
- **Context:** `/ pure function and can be tested without touching process state.`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L123)
|
|
- **Line:** 123
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L191)
|
|
- **Line:** 191
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L203)
|
|
- **Line:** 203
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L232)
|
|
- **Line:** 232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L275)
|
|
- **Line:** 275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L316)
|
|
- **Line:** 316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L334)
|
|
- **Line:** 334
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L182)
|
|
- **Line:** 182
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L283)
|
|
- **Line:** 283
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L381)
|
|
- **Line:** 381
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L426)
|
|
- **Line:** 426
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L544)
|
|
- **Line:** 544
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L629)
|
|
- **Line:** 629
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L337)
|
|
- **Line:** 337
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L357)
|
|
- **Line:** 357
|
|
- **Context:** `impl LibrarySettings {`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1452)
|
|
- **Line:** 1452
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-086
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L788)
|
|
- **Line:** 788
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-088
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-092
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/playerSurface.test.ts`](../src/lib/components/player/playerSurface.test.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/playerSurface.ts`](../src/lib/components/player/playerSurface.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.tapSurface.test.ts`](../src/lib/components/player/VideoPlayer.tapSurface.test.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-093
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/playerSurface.test.ts`](../src/lib/components/player/playerSurface.test.ts#L13)
|
|
- **Line:** 13
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/playerSurface.ts`](../src/lib/components/player/playerSurface.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-109
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3306)
|
|
- **Line:** 3306
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-110
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3362)
|
|
- **Line:** 3362
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-125
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1001)
|
|
- **Line:** 1001
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1039)
|
|
- **Line:** 1039
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1062)
|
|
- **Line:** 1062
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-127
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L27)
|
|
- **Line:** 27
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L282)
|
|
- **Line:** 282
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L327)
|
|
- **Line:** 327
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L398)
|
|
- **Line:** 398
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L449)
|
|
- **Line:** 449
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L458)
|
|
- **Line:** 458
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L473)
|
|
- **Line:** 473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L508)
|
|
- **Line:** 508
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L515)
|
|
- **Line:** 515
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L540)
|
|
- **Line:** 540
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/media_server.rs`](../src-tauri/src/media_server.rs#L567)
|
|
- **Line:** 567
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-136
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/seriesNavigation.test.ts`](../src/lib/components/library/seriesNavigation.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-137
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/services/offlineCatalog.reload.test.ts`](../src/lib/services/offlineCatalog.reload.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-138
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/services/offlineCatalog.reload.test.ts`](../src/lib/services/offlineCatalog.reload.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-139
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/services/offlineCatalog.reload.test.ts`](../src/lib/services/offlineCatalog.reload.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-140
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/composables/useOfflineFilterReload.test.ts`](../src/lib/composables/useOfflineFilterReload.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-143
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L463)
|
|
- **Line:** 463
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-144
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L463)
|
|
- **Line:** 463
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-147
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L353)
|
|
- **Line:** 353
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L243)
|
|
- **Line:** 243
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L472)
|
|
- **Line:** 472
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L942)
|
|
- **Line:** 942
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2403)
|
|
- **Line:** 2403
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-149
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/player/adapters/adapterSelection.test.ts`](../src/lib/player/adapters/adapterSelection.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/index.ts`](../src/lib/player/adapters/index.ts#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-158
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/mosaic.ts`](../src/lib/components/library/mosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-159
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/mosaic.ts`](../src/lib/components/library/mosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-160
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/mosaic.ts`](../src/lib/components/library/mosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-167
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/libraryMosaic.ts`](../src/lib/components/library/libraryMosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-171
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L916)
|
|
- **Line:** 916
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L957)
|
|
- **Line:** 957
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-172
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L524)
|
|
- **Line:** 524
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3367)
|
|
- **Line:** 3367
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L3396)
|
|
- **Line:** 3396
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-174
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/hlsRecovery.test.ts`](../src/lib/components/player/hlsRecovery.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/hlsRecovery.ts`](../src/lib/components/player/hlsRecovery.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-175
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.test.ts`](../src/lib/player/adapters/html5Adapter.test.ts#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-182
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1618)
|
|
- **Line:** 1618
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L592)
|
|
- **Line:** 592
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3276)
|
|
- **Line:** 3276
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-070
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1636)
|
|
- **Line:** 1636
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3136)
|
|
- **Line:** 3136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L263)
|
|
- **Line:** 263
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2806)
|
|
- **Line:** 2806
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](../src/routes/player/[id]/+page.svelte#L422)
|
|
- **Line:** 422
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L382)
|
|
- **Line:** 382
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L621)
|
|
- **Line:** 621
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L935)
|
|
- **Line:** 935
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L111)
|
|
- **Line:** 111
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L364)
|
|
- **Line:** 364
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L380)
|
|
- **Line:** 380
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L394)
|
|
- **Line:** 394
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L404)
|
|
- **Line:** 404
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-145
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2639)
|
|
- **Line:** 2639
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L445)
|
|
- **Line:** 445
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2918)
|
|
- **Line:** 2918
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2975)
|
|
- **Line:** 2975
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-146
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L3408)
|
|
- **Line:** 3408
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3007)
|
|
- **Line:** 3007
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-151
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1695)
|
|
- **Line:** 1695
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L380)
|
|
- **Line:** 380
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L856)
|
|
- **Line:** 856
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L885)
|
|
- **Line:** 885
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L915)
|
|
- **Line:** 915
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L954)
|
|
- **Line:** 954
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L764)
|
|
- **Line:** 764
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-183
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.test.ts`](../src/lib/player/adapters/html5Adapter.test.ts#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](../src/lib/player/adapters/html5Adapter.ts#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-184
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/mediaReady.test.ts`](../src/lib/components/player/mediaReady.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/mediaReady.ts`](../src/lib/components/player/mediaReady.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-185
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.nativeReveal.test.ts`](../src/lib/components/player/VideoPlayer.nativeReveal.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L596)
|
|
- **Line:** 596
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-186
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/nativeVideoLayers.test.ts`](../src/lib/utils/nativeVideoLayers.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-187
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L625)
|
|
- **Line:** 625
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-188
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/controlsVisibility.test.ts`](../src/lib/components/player/controlsVisibility.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/controlsVisibility.ts`](../src/lib/components/player/controlsVisibility.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2047)
|
|
- **Line:** 2047
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.test.ts`](../scripts/extract-traces.test.ts#L61)
|
|
- **Line:** 61
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-201
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/utils/logger.test.ts`](../src/lib/utils/logger.test.ts#L22)
|
|
- **Line:** 22
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/logger.test.ts`](../src/lib/utils/logger.test.ts#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-207
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/home/heroRotation.test.ts`](../src/lib/components/home/heroRotation.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/heroRotation.ts`](../src/lib/components/home/heroRotation.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-209
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/logger.test.ts`](../src/lib/utils/logger.test.ts#L352)
|
|
- **Line:** 352
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-212
|
|
|
|
**Locations:** 14 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1636)
|
|
- **Line:** 1636
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L263)
|
|
- **Line:** 263
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L621)
|
|
- **Line:** 621
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L935)
|
|
- **Line:** 935
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1627)
|
|
- **Line:** 1627
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4233)
|
|
- **Line:** 4233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4246)
|
|
- **Line:** 4246
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4265)
|
|
- **Line:** 4265
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4284)
|
|
- **Line:** 4284
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4300)
|
|
- **Line:** 4300
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4316)
|
|
- **Line:** 4316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4344)
|
|
- **Line:** 4344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4364)
|
|
- **Line:** 4364
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4397)
|
|
- **Line:** 4397
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-002
|
|
|
|
**Locations:** 22 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2867)
|
|
- **Line:** 2867
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.ts`](../src/lib/services/offlineCatalog.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/connectivity.ts`](../src/lib/stores/connectivity.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/offline.rs`](../src-tauri/src/commands/offline.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](../src-tauri/src/commands/sync.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L236)
|
|
- **Line:** 236
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L154)
|
|
- **Line:** 154
|
|
- **Context:** `pub enum MediaType {`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L381)
|
|
- **Line:** 381
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L426)
|
|
- **Line:** 426
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L653)
|
|
- **Line:** 653
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1580)
|
|
- **Line:** 1580
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-006
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L438)
|
|
- **Line:** 438
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L1123)
|
|
- **Line:** 1123
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L1425)
|
|
- **Line:** 1425
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L103)
|
|
- **Line:** 103
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L135)
|
|
- **Line:** 135
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L144)
|
|
- **Line:** 144
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L166)
|
|
- **Line:** 166
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L476)
|
|
- **Line:** 476
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-007
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/AlphabetScrollBar.svelte`](../src/lib/components/library/AlphabetScrollBar.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/imageCache.test.ts`](../src/lib/services/imageCache.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/imageCache.ts`](../src/lib/services/imageCache.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](../src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/movies.ts`](../src/lib/stores/movies.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/music.ts`](../src/lib/stores/music.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](../src/routes/library/movies/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](../src/routes/library/music/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](../src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/thumbnails.rs`](../src-tauri/src/commands/storage/thumbnails.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1183)
|
|
- **Line:** 1183
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1194)
|
|
- **Line:** 1194
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3914)
|
|
- **Line:** 3914
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3950)
|
|
- **Line:** 3950
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-011
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2867)
|
|
- **Line:** 2867
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.test.ts`](../src/lib/services/preload.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.ts`](../src/lib/services/preload.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L878)
|
|
- **Line:** 878
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2527)
|
|
- **Line:** 2527
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/offline.rs`](../src-tauri/src/commands/offline.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](../src-tauri/src/player/media.rs#L154)
|
|
- **Line:** 154
|
|
- **Context:** `pub enum MediaType {`
|
|
|
|
### UR-014
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playlist.rs`](../src-tauri/src/commands/playlist.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-017
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/components/FavoriteButton.svelte`](../src/lib/components/FavoriteButton.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/MiniPlayer.svelte`](../src/lib/components/player/MiniPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/favorites.test.ts`](../src/lib/services/favorites.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/favorites.ts`](../src/lib/services/favorites.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L61)
|
|
- **Line:** 61
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](../src/lib/services/syncService.ts#L195)
|
|
- **Line:** 195
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](../src-tauri/src/commands/sync.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2583)
|
|
- **Line:** 2583
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-022
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-031
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-032
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L579)
|
|
- **Line:** 579
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L617)
|
|
- **Line:** 617
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L383)
|
|
- **Line:** 383
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L400)
|
|
- **Line:** 400
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L424)
|
|
- **Line:** 424
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-033
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/settings.rs`](../src-tauri/src/commands/player/settings.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L579)
|
|
- **Line:** 579
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](../src-tauri/src/player/android/mod.rs#L617)
|
|
- **Line:** 617
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L658)
|
|
- **Line:** 658
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L712)
|
|
- **Line:** 712
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L778)
|
|
- **Line:** 778
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L788)
|
|
- **Line:** 788
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L833)
|
|
- **Line:** 833
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L383)
|
|
- **Line:** 383
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L400)
|
|
- **Line:** 400
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L424)
|
|
- **Line:** 424
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-035
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/CastSection.svelte`](../src/lib/components/library/CastSection.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/CrewLinks.svelte`](../src/lib/components/library/CrewLinks.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/people.rs`](../src-tauri/src/commands/storage/people.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1717)
|
|
- **Line:** 1717
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2723)
|
|
- **Line:** 2723
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-038
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-039
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/BottomNav.svelte`](../src/lib/components/BottomNav.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-041
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.nativeReveal.test.ts`](../src/lib/components/player/VideoPlayer.nativeReveal.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/pictureInPicture.ts`](../src/lib/utils/pictureInPicture.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/pictureInPicture.ts`](../src/lib/utils/pictureInPicture.ts#L111)
|
|
- **Line:** 111
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-042
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/auth/mod.rs`](../src-tauri/src/auth/mod.rs#L139)
|
|
- **Line:** 139
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/auth.rs`](../src-tauri/src/commands/auth.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-044
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/pinning.rs`](../src-tauri/src/commands/download/pinning.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-045
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/smart_cache.rs`](../src-tauri/src/commands/download/smart_cache.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-048
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L289)
|
|
- **Line:** 289
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L394)
|
|
- **Line:** 394
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/episodeStrip.ts`](../src/lib/components/library/episodeStrip.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-054
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/components/AppHeader.svelte`](../src/lib/components/AppHeader.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/account/AccountMenu.svelte`](../src/lib/components/account/AccountMenu.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/search/HeaderSearch.svelte`](../src/lib/components/search/HeaderSearch.svelte#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/search/HeaderSearch.test.ts`](../src/lib/components/search/HeaderSearch.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L75)
|
|
- **Line:** 75
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L90)
|
|
- **Line:** 90
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/scrollRestore.ts`](../src/lib/utils/scrollRestore.ts#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-057
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-058
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](../src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L74)
|
|
- **Line:** 74
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L98)
|
|
- **Line:** 98
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L139)
|
|
- **Line:** 139
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L467)
|
|
- **Line:** 467
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](../src/routes/search/+page.svelte#L97)
|
|
- **Line:** 97
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-060
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L149)
|
|
- **Line:** 149
|
|
- **Context:** `export type SearchGroupId =`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](../src/lib/utils/searchScope.ts#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L96)
|
|
- **Line:** 96
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/domain/search_rank.rs`](../src-tauri/src/domain/search_rank.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3087)
|
|
- **Line:** 3087
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L769)
|
|
- **Line:** 769
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-061
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](../src/lib/components/player/tapGestures.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.tapSurface.test.ts`](../src/lib/components/player/VideoPlayer.tapSurface.test.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.touchScrub.test.ts`](../src/lib/components/player/VideoPlayer.touchScrub.test.ts#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-066
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/components/BottomUi.svelte`](../src/lib/components/BottomUi.svelte#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/controlsVisibility.test.ts`](../src/lib/components/player/controlsVisibility.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/controlsVisibility.ts`](../src/lib/components/player/controlsVisibility.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L2047)
|
|
- **Line:** 2047
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/immersive.ts`](../src/lib/utils/immersive.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](../src/lib/utils/layoutShell.test.ts#L158)
|
|
- **Line:** 158
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](../src/lib/utils/layoutShell.ts#L115)
|
|
- **Line:** 115
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](../src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.ts`](../src/lib/utils/safeArea.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](../src/routes/+layout.svelte#L269)
|
|
- **Line:** 269
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-067
|
|
|
|
**Locations:** 42 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1727)
|
|
- **Line:** 1727
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2271)
|
|
- **Line:** 2271
|
|
- **Context:** `export type GetItemsOptions = { startIndex?: number | null; limit?: nu...`
|
|
- **File:** [`src/lib/api/repository-client.ts`](../src/lib/api/repository-client.ts#L384)
|
|
- **Line:** 384
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L154)
|
|
- **Line:** 154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L170)
|
|
- **Line:** 170
|
|
- **Context:** `function handleSearch(query: string) {`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](../src/lib/components/library/GenericMediaListPage.svelte#L288)
|
|
- **Line:** 288
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/libraryMosaic.ts`](../src/lib/components/library/libraryMosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](../src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L64)
|
|
- **Line:** 64
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/favoritesView.test.ts`](../src/lib/utils/favoritesView.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/favoritesView.ts`](../src/lib/utils/favoritesView.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L162)
|
|
- **Line:** 162
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L271)
|
|
- **Line:** 271
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L225)
|
|
- **Line:** 225
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L288)
|
|
- **Line:** 288
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L44)
|
|
- **Line:** 44
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L927)
|
|
- **Line:** 927
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L964)
|
|
- **Line:** 964
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L1269)
|
|
- **Line:** 1269
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2014)
|
|
- **Line:** 2014
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4370)
|
|
- **Line:** 4370
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4405)
|
|
- **Line:** 4405
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4450)
|
|
- **Line:** 4450
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4553)
|
|
- **Line:** 4553
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L214)
|
|
- **Line:** 214
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L230)
|
|
- **Line:** 230
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L1050)
|
|
- **Line:** 1050
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L238)
|
|
- **Line:** 238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1183)
|
|
- **Line:** 1183
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1242)
|
|
- **Line:** 1242
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1313)
|
|
- **Line:** 1313
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2559)
|
|
- **Line:** 2559
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3822)
|
|
- **Line:** 3822
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3844)
|
|
- **Line:** 3844
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3853)
|
|
- **Line:** 3853
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3875)
|
|
- **Line:** 3875
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L342)
|
|
- **Line:** 342
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-072
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/scrollContainer.ts`](../src/lib/utils/scrollContainer.ts#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-075
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2303)
|
|
- **Line:** 2303
|
|
- **Context:** `export type Library = { id: string; name: string; collectionType: stri...`
|
|
- **File:** [`src/lib/components/common/CachedImage.svelte`](../src/lib/components/common/CachedImage.svelte#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MosaicGrid.svelte`](../src/lib/components/library/MosaicGrid.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MosaicTile.svelte`](../src/lib/components/library/MosaicTile.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/libraryMosaic.ts`](../src/lib/components/library/libraryMosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/mosaic.ts`](../src/lib/components/library/mosaic.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/favoritesView.ts`](../src/lib/utils/favoritesView.ts#L44)
|
|
- **Line:** 44
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](../src/routes/+page.svelte#L124)
|
|
- **Line:** 124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L53)
|
|
- **Line:** 53
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](../src/routes/library/+page.svelte#L288)
|
|
- **Line:** 288
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L404)
|
|
- **Line:** 404
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-078
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1807)
|
|
- **Line:** 1807
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1815)
|
|
- **Line:** 1815
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L1829)
|
|
- **Line:** 1829
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/logger.ts`](../src/lib/utils/logger.ts#L202)
|
|
- **Line:** 202
|
|
- **Context:** `export function isLevelEnabled(level: LogLevel): boolean {`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L494)
|
|
- **Line:** 494
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1219)
|
|
- **Line:** 1219
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/diagnostics.rs`](../src-tauri/src/commands/diagnostics.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/diagnostics.rs`](../src-tauri/src/commands/diagnostics.rs#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/diagnostics.rs`](../src-tauri/src/commands/diagnostics.rs#L115)
|
|
- **Line:** 115
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/diagnostics.rs`](../src-tauri/src/commands/diagnostics.rs#L187)
|
|
- **Line:** 187
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/utils/diagnostics.rs`](../src-tauri/src/utils/diagnostics.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1015)
|
|
- **Line:** 1015
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1145)
|
|
- **Line:** 1145
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1184)
|
|
- **Line:** 1184
|
|
- **Context:** `pub fn run() {`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1226)
|
|
- **Line:** 1226
|
|
- **Context:** `Unknown`
|
|
|
|
### IT-004
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mpv_backend_test.rs`](../src-tauri/src/player/mpv_backend_test.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### IT-016
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3026)
|
|
- **Line:** 3026
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-003
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L535)
|
|
- **Line:** 535
|
|
- **Context:** `pub enum AddPosition {`
|
|
|
|
### UT-004
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L535)
|
|
- **Line:** 535
|
|
- **Context:** `pub enum AddPosition {`
|
|
|
|
### UT-005
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/queue.rs`](../src-tauri/src/player/queue.rs#L535)
|
|
- **Line:** 535
|
|
- **Context:** `pub enum AddPosition {`
|
|
|
|
### UT-012
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/sleep_timer.rs`](../src-tauri/src/player/sleep_timer.rs#L81)
|
|
- **Line:** 81
|
|
- **Context:** `pub fn cancel(&mut self) {`
|
|
|
|
### UT-026
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L257)
|
|
- **Line:** 257
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-027
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-028
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-029
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-030
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-031
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-032
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-033
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-067
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3026)
|
|
- **Line:** 3026
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-083
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L747)
|
|
- **Line:** 747
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-101
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2014)
|
|
- **Line:** 2014
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4370)
|
|
- **Line:** 4370
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4405)
|
|
- **Line:** 4405
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L238)
|
|
- **Line:** 238
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-102
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L688)
|
|
- **Line:** 688
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4605)
|
|
- **Line:** 4605
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-103
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L78)
|
|
- **Line:** 78
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L286)
|
|
- **Line:** 286
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L320)
|
|
- **Line:** 320
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L340)
|
|
- **Line:** 340
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L356)
|
|
- **Line:** 356
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-104
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2271)
|
|
- **Line:** 2271
|
|
- **Context:** `export type GetItemsOptions = { startIndex?: number | null; limit?: nu...`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L1269)
|
|
- **Line:** 1269
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4450)
|
|
- **Line:** 4450
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1183)
|
|
- **Line:** 1183
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1242)
|
|
- **Line:** 1242
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3875)
|
|
- **Line:** 3875
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L342)
|
|
- **Line:** 342
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-108
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L320)
|
|
- **Line:** 320
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L550)
|
|
- **Line:** 550
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-111
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2548)
|
|
- **Line:** 2548
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2588)
|
|
- **Line:** 2588
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-112
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L501)
|
|
- **Line:** 501
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3253)
|
|
- **Line:** 3253
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-113
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3144)
|
|
- **Line:** 3144
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-114
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3087)
|
|
- **Line:** 3087
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-121
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L564)
|
|
- **Line:** 564
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mpv_backend.rs`](../src-tauri/src/player/mpv_backend.rs#L573)
|
|
- **Line:** 573
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-130
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L684)
|
|
- **Line:** 684
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3232)
|
|
- **Line:** 3232
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-141
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L29)
|
|
- **Line:** 29
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L40)
|
|
- **Line:** 40
|
|
- **Context:** `pub fn clamp_max_audio_channels(reported: Option<u32>) -> u32 {`
|
|
|
|
### UT-142
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L213)
|
|
- **Line:** 213
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-148
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L238)
|
|
- **Line:** 238
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L260)
|
|
- **Line:** 260
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L277)
|
|
- **Line:** 277
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-150
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`scripts/set-version.test.ts`](../scripts/set-version.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-152
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L688)
|
|
- **Line:** 688
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4692)
|
|
- **Line:** 4692
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4778)
|
|
- **Line:** 4778
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L653)
|
|
- **Line:** 653
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-155
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L872)
|
|
- **Line:** 872
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4090)
|
|
- **Line:** 4090
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4133)
|
|
- **Line:** 4133
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-156
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3154)
|
|
- **Line:** 3154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3176)
|
|
- **Line:** 3176
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3199)
|
|
- **Line:** 3199
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-157
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L653)
|
|
- **Line:** 653
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L689)
|
|
- **Line:** 689
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](../src-tauri/src/settings.rs#L716)
|
|
- **Line:** 716
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-161
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L404)
|
|
- **Line:** 404
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L731)
|
|
- **Line:** 731
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L752)
|
|
- **Line:** 752
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L764)
|
|
- **Line:** 764
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-162
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3767)
|
|
- **Line:** 3767
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-166
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L277)
|
|
- **Line:** 277
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L457)
|
|
- **Line:** 457
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](../src-tauri/src/repository/mod.rs#L350)
|
|
- **Line:** 350
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2524)
|
|
- **Line:** 2524
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3714)
|
|
- **Line:** 3714
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3746)
|
|
- **Line:** 3746
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3772)
|
|
- **Line:** 3772
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-168
|
|
|
|
**Locations:** 24 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](../src/lib/api/bindings.ts#L2487)
|
|
- **Line:** 2487
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L67)
|
|
- **Line:** 67
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L93)
|
|
- **Line:** 93
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](../src/lib/components/player/subtitleTracks.test.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](../src/lib/components/player/subtitleTracks.ts#L75)
|
|
- **Line:** 75
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L445)
|
|
- **Line:** 445
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L84)
|
|
- **Line:** 84
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L99)
|
|
- **Line:** 99
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L120)
|
|
- **Line:** 120
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L150)
|
|
- **Line:** 150
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L184)
|
|
- **Line:** 184
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L306)
|
|
- **Line:** 306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L344)
|
|
- **Line:** 344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L362)
|
|
- **Line:** 362
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L376)
|
|
- **Line:** 376
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](../src-tauri/src/repository/device_profile.rs#L390)
|
|
- **Line:** 390
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L898)
|
|
- **Line:** 898
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2138)
|
|
- **Line:** 2138
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2251)
|
|
- **Line:** 2251
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L2299)
|
|
- **Line:** 2299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3355)
|
|
- **Line:** 3355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3378)
|
|
- **Line:** 3378
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](../src-tauri/src/repository/types.rs#L265)
|
|
- **Line:** 265
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-068
|
|
|
|
**Locations:** 14 file(s)
|
|
|
|
- **File:** [`src/lib/components/FavoriteButton.svelte`](../src/lib/components/FavoriteButton.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/ArtistDetailView.svelte`](../src/lib/components/library/ArtistDetailView.svelte#L138)
|
|
- **Line:** 138
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](../src/lib/components/library/EpisodeFocusView.svelte#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L48)
|
|
- **Line:** 48
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L154)
|
|
- **Line:** 154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](../src/lib/components/library/MediaCard.svelte#L329)
|
|
- **Line:** 329
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/PlaylistDetailView.svelte`](../src/lib/components/library/PlaylistDetailView.svelte#L229)
|
|
- **Line:** 229
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/favorites.ts`](../src/lib/services/favorites.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/favorites.ts`](../src/lib/services/favorites.ts#L38)
|
|
- **Line:** 38
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](../src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](../src/lib/stores/favorites.ts#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](../src/routes/library/[id]/+page.svelte#L619)
|
|
- **Line:** 619
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-173
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L136)
|
|
- **Line:** 136
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L152)
|
|
- **Line:** 152
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L591)
|
|
- **Line:** 591
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3326)
|
|
- **Line:** 3326
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3422)
|
|
- **Line:** 3422
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-176
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L944)
|
|
- **Line:** 944
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4170)
|
|
- **Line:** 4170
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4189)
|
|
- **Line:** 4189
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-177
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L944)
|
|
- **Line:** 944
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L959)
|
|
- **Line:** 959
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L970)
|
|
- **Line:** 970
|
|
- **Context:** `pub fn observed_duration(&self) -> Option<f64> {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4206)
|
|
- **Line:** 4206
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4221)
|
|
- **Line:** 4221
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4235)
|
|
- **Line:** 4235
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-178
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L763)
|
|
- **Line:** 763
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4257)
|
|
- **Line:** 4257
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4284)
|
|
- **Line:** 4284
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-179
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L119)
|
|
- **Line:** 119
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1550)
|
|
- **Line:** 1550
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4322)
|
|
- **Line:** 4322
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4350)
|
|
- **Line:** 4350
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-180
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L1306)
|
|
- **Line:** 1306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4379)
|
|
- **Line:** 4379
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4397)
|
|
- **Line:** 4397
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-189
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L1634)
|
|
- **Line:** 1634
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-190
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1290)
|
|
- **Line:** 1290
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4000)
|
|
- **Line:** 4000
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-191
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1290)
|
|
- **Line:** 1290
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4021)
|
|
- **Line:** 4021
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-193
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`scripts/tauri-security-config.test.ts`](../scripts/tauri-security-config.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-194
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L135)
|
|
- **Line:** 135
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-195
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L152)
|
|
- **Line:** 152
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-196
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L168)
|
|
- **Line:** 168
|
|
- **Context:** `/ which backends reject (the "Raw(-10)" class of error).`
|
|
|
|
### UT-197
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L181)
|
|
- **Line:** 181
|
|
- **Context:** `/ this function exists to prevent.`
|
|
|
|
### UT-198
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/seek.rs`](../src-tauri/src/player/seek.rs#L192)
|
|
- **Line:** 192
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-203
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L274)
|
|
- **Line:** 274
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L295)
|
|
- **Line:** 295
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/library.rs`](../src-tauri/src/commands/library.rs#L307)
|
|
- **Line:** 307
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L191)
|
|
- **Line:** 191
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L203)
|
|
- **Line:** 203
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L232)
|
|
- **Line:** 232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L275)
|
|
- **Line:** 275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L316)
|
|
- **Line:** 316
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/exclusions.rs`](../src-tauri/src/repository/exclusions.rs#L334)
|
|
- **Line:** 334
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-208
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/updateCheck.test.ts`](../src/lib/utils/updateCheck.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-213
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](../src/lib/components/player/VideoPlayer.svelte#L638)
|
|
- **Line:** 638
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/streamTransport.test.ts`](../src/lib/player/streamTransport.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/streamTransport.ts`](../src/lib/player/streamTransport.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-010
|
|
|
|
**Locations:** 16 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/CastButton.svelte`](../src/lib/components/sessions/CastButton.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/RemoteControls.svelte`](../src/lib/components/sessions/RemoteControls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/SessionCard.svelte`](../src/lib/components/sessions/SessionCard.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/SessionPickerModal.svelte`](../src/lib/components/sessions/SessionPickerModal.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/SessionsList.svelte`](../src/lib/components/sessions/SessionsList.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/lmsSync.ts`](../src/lib/stores/lmsSync.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playbackMode.test.ts`](../src/lib/stores/playbackMode.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playbackMode.ts`](../src/lib/stores/playbackMode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/sessions.test.ts`](../src/lib/stores/sessions.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/sessions.ts`](../src/lib/stores/sessions.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/playback_mode.rs`](../src-tauri/src/commands/playback_mode.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sessions.rs`](../src-tauri/src/commands/sessions.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/playback_mode/mod.rs`](../src-tauri/src/playback_mode/mod.rs#L165)
|
|
- **Line:** 165
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/session_poller/mod.rs`](../src-tauri/src/session_poller/mod.rs#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-012
|
|
|
|
**Locations:** 21 file(s)
|
|
|
|
- **File:** [`src/lib/services/imageCache.ts`](../src/lib/services/imageCache.ts#L50)
|
|
- **Line:** 50
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.test.ts`](../src/lib/stores/auth.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L303)
|
|
- **Line:** 303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](../src/lib/stores/auth.ts#L465)
|
|
- **Line:** 465
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/mod.rs`](../src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L480)
|
|
- **Line:** 480
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L905)
|
|
- **Line:** 905
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L924)
|
|
- **Line:** 924
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/credentials.rs`](../src-tauri/src/credentials.rs#L941)
|
|
- **Line:** 941
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/db_service.rs`](../src-tauri/src/storage/db_service.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/mod.rs`](../src-tauri/src/storage/mod.rs#L157)
|
|
- **Line:** 157
|
|
- **Context:** `pub fn file_size(&self) -> Option<u64> {`
|
|
- **File:** [`src-tauri/src/android_context.rs`](../src-tauri/src/android_context.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/android_context.rs`](../src-tauri/src/android_context.rs#L80)
|
|
- **Line:** 80
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/android_context.rs`](../src-tauri/src/android_context.rs#L95)
|
|
- **Line:** 95
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L624)
|
|
- **Line:** 624
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1124)
|
|
- **Line:** 1124
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1296)
|
|
- **Line:** 1296
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/tauri-security-config.test.ts`](../scripts/tauri-security-config.test.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-013
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](../src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](../src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-016
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](../src-tauri/src/player/backend.rs#L257)
|
|
- **Line:** 257
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-043
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/connectivity.ts`](../src/lib/stores/connectivity.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/connectivity.rs`](../src-tauri/src/commands/connectivity.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-046
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/remote.rs`](../src-tauri/src/commands/player/remote.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-059
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/services/skipReporting.test.ts`](../src/lib/services/skipReporting.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.ts`](../src/lib/services/skipReporting.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.test.ts`](../src/lib/stores/continueWatchingFilter.test.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.ts`](../src/lib/stores/continueWatchingFilter.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.ts`](../src/lib/stores/continueWatchingFilter.ts#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](../src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](../src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1290)
|
|
- **Line:** 1290
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1775)
|
|
- **Line:** 1775
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4000)
|
|
- **Line:** 4000
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4021)
|
|
- **Line:** 4021
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-192
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.test.ts`](../src/lib/stores/continueWatchingFilter.test.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-065
|
|
|
|
**Locations:** 25 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L96)
|
|
- **Line:** 96
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L164)
|
|
- **Line:** 164
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L281)
|
|
- **Line:** 281
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L327)
|
|
- **Line:** 327
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L764)
|
|
- **Line:** 764
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/people.rs`](../src-tauri/src/commands/storage/people.rs#L56)
|
|
- **Line:** 56
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L51)
|
|
- **Line:** 51
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L333)
|
|
- **Line:** 333
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L501)
|
|
- **Line:** 501
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L1253)
|
|
- **Line:** 1253
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2548)
|
|
- **Line:** 2548
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L2588)
|
|
- **Line:** 2588
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3087)
|
|
- **Line:** 3087
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3144)
|
|
- **Line:** 3144
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3253)
|
|
- **Line:** 3253
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3306)
|
|
- **Line:** 3306
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L3362)
|
|
- **Line:** 3362
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4500)
|
|
- **Line:** 4500
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4553)
|
|
- **Line:** 4553
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L64)
|
|
- **Line:** 64
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L757)
|
|
- **Line:** 757
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](../src-tauri/src/storage/schema.rs#L769)
|
|
- **Line:** 769
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1566)
|
|
- **Line:** 1566
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-069
|
|
|
|
**Locations:** 24 file(s)
|
|
|
|
- **File:** [`src/routes/+layout.svelte`](../src/routes/+layout.svelte#L150)
|
|
- **Line:** 150
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](../src/routes/library/favorites/+page.svelte#L76)
|
|
- **Line:** 76
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L78)
|
|
- **Line:** 78
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L142)
|
|
- **Line:** 142
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L286)
|
|
- **Line:** 286
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L320)
|
|
- **Line:** 320
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L340)
|
|
- **Line:** 340
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](../src-tauri/src/commands/favorites.rs#L356)
|
|
- **Line:** 356
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L887)
|
|
- **Line:** 887
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L893)
|
|
- **Line:** 893
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L908)
|
|
- **Line:** 908
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L1081)
|
|
- **Line:** 1081
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](../src-tauri/src/commands/repository.rs#L1106)
|
|
- **Line:** 1106
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L688)
|
|
- **Line:** 688
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4605)
|
|
- **Line:** 4605
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4692)
|
|
- **Line:** 4692
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](../src-tauri/src/repository/hybrid.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `pub fn new(online: OnlineRepository, offline: OfflineRepository) -> Se...`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L195)
|
|
- **Line:** 195
|
|
- **Context:** `impl OnlineRepository {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1151)
|
|
- **Line:** 1151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1438)
|
|
- **Line:** 1438
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4040)
|
|
- **Line:** 4040
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L4071)
|
|
- **Line:** 4071
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1573)
|
|
- **Line:** 1573
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-077
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/utils/updateCheck.ts`](../src/lib/utils/updateCheck.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L446)
|
|
- **Line:** 446
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/settings/+page.svelte`](../src/routes/settings/+page.svelte#L1299)
|
|
- **Line:** 1299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](../src-tauri/src/lib.rs#L1234)
|
|
- **Line:** 1234
|
|
- **Context:** `Unknown`
|
|
|
|
### IT-017
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L878)
|
|
- **Line:** 878
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-115
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L281)
|
|
- **Line:** 281
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L764)
|
|
- **Line:** 764
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-119
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L462)
|
|
- **Line:** 462
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3041)
|
|
- **Line:** 3041
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-120
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L220)
|
|
- **Line:** 220
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](../src-tauri/src/download/cache.rs#L428)
|
|
- **Line:** 428
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-122
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L76)
|
|
- **Line:** 76
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L236)
|
|
- **Line:** 236
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L606)
|
|
- **Line:** 606
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L672)
|
|
- **Line:** 672
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L702)
|
|
- **Line:** 702
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L736)
|
|
- **Line:** 736
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L765)
|
|
- **Line:** 765
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L811)
|
|
- **Line:** 811
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L992)
|
|
- **Line:** 992
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1007)
|
|
- **Line:** 1007
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-126
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L490)
|
|
- **Line:** 490
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](../src-tauri/src/commands/catalog.rs#L1090)
|
|
- **Line:** 1090
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-154
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1047)
|
|
- **Line:** 1047
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](../src-tauri/src/commands/sync_drain.rs#L1064)
|
|
- **Line:** 1064
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-163
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L336)
|
|
- **Line:** 336
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-164
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/download/worker.rs`](../src-tauri/src/download/worker.rs#L313)
|
|
- **Line:** 313
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-181
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L483)
|
|
- **Line:** 483
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L503)
|
|
- **Line:** 503
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3089)
|
|
- **Line:** 3089
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L3109)
|
|
- **Line:** 3109
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L877)
|
|
- **Line:** 877
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](../src-tauri/src/player/mod.rs#L4027)
|
|
- **Line:** 4027
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-200
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L54)
|
|
- **Line:** 54
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/stream_end.rs`](../src-tauri/src/player/stream_end.rs#L91)
|
|
- **Line:** 91
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-202
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L444)
|
|
- **Line:** 444
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](../scripts/extract-traces.ts#L454)
|
|
- **Line:** 454
|
|
- **Context:** `export const MATRIX_LINK_PREFIX = "../";`
|
|
|
|
### UT-204
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L39)
|
|
- **Line:** 39
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L74)
|
|
- **Line:** 74
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L200)
|
|
- **Line:** 200
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L628)
|
|
- **Line:** 628
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L668)
|
|
- **Line:** 668
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L706)
|
|
- **Line:** 706
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L735)
|
|
- **Line:** 735
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/thumbnail/cache.rs`](../src-tauri/src/thumbnail/cache.rs#L766)
|
|
- **Line:** 766
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-205
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L138)
|
|
- **Line:** 138
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L156)
|
|
- **Line:** 156
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L186)
|
|
- **Line:** 186
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L329)
|
|
- **Line:** 329
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1374)
|
|
- **Line:** 1374
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1514)
|
|
- **Line:** 1514
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L1867)
|
|
- **Line:** 1867
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2560)
|
|
- **Line:** 2560
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2589)
|
|
- **Line:** 2589
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](../src-tauri/src/commands/download/mod.rs#L2616)
|
|
- **Line:** 2616
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-206
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1774)
|
|
- **Line:** 1774
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L1793)
|
|
- **Line:** 1793
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](../src-tauri/src/commands/player/mod.rs#L2874)
|
|
- **Line:** 2874
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L1253)
|
|
- **Line:** 1253
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4500)
|
|
- **Line:** 4500
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](../src-tauri/src/repository/offline.rs#L4553)
|
|
- **Line:** 4553
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L1194)
|
|
- **Line:** 1194
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3914)
|
|
- **Line:** 3914
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](../src-tauri/src/repository/online.rs#L3950)
|
|
- **Line:** 3950
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-047
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/storage/mod.rs`](../src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-210
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`scripts/release-notes.test.ts`](../scripts/release-notes.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-211
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L202)
|
|
- **Line:** 202
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L229)
|
|
- **Line:** 229
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L264)
|
|
- **Line:** 264
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L275)
|
|
- **Line:** 275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L289)
|
|
- **Line:** 289
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L324)
|
|
- **Line:** 324
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L364)
|
|
- **Line:** 364
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L380)
|
|
- **Line:** 380
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L394)
|
|
- **Line:** 394
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/stream_selection.rs`](../src-tauri/src/repository/stream_selection.rs#L404)
|
|
- **Line:** 404
|
|
- **Context:** `Unknown`
|
|
|
|
|