Selecting a subtitle on Linux did nothing. VideoPlayer rendered no <track>
children at all — the block was commented out as "temporarily disabled to
debug playback issues" (it has been that way since the POC) — so
Html5PlayerAdapter.selectSubtitle() walked an empty textTracks list and the
menu, which is built from media.mediaStreams, was purely decorative.
The reason it had to be disabled is still visible in the dead markup:
getSubtitleUrl() is async, so src={getSubtitleUrl(track.index)} bound a
Promise to the attribute and every track pointed at "[object Promise]" — an
unloadable resource hanging off the media element.
Subtitle URLs are now resolved off the render path into component state
(subtitleTracks.ts), and only streams whose URL actually resolved are
rendered; a per-track failure drops that track instead of emitting a dead
src. data-stream-index is kept, since that is what the adapter matches on.
Subtitles stay OFF unless the user asks for them: the server's isDefault flag
is shown in the menu but is never promoted to a selection, and the `default`
attribute is deliberately not emitted. A <track default> auto-shows, so the
menu would open on "Off" while subtitles were burned over the picture, and
every user who never wanted subtitles would suddenly get them. That matches
the existing initial state (selectedSubtitleIndex = null).
Selection and rendered tracks are reconciled whenever the list changes: a
selection that no longer resolves collapses to "Off", and a surviving one is
re-applied after the new <track> elements exist. "Off" disables every text
track, as before.
Cross-origin text-track fetches use the media element's CORS setting, so the
element opts in with crossorigin="anonymous" — but only for an http(s)
stream, never for a local/offline file:/asset: source, where forcing CORS
onto the video fetch could break playback. It is keyed on the subtitle stream
count, known at first render, so the attribute cannot flip under an in-flight
media load.
Android/native is untouched: the ExoPlayer branch still goes through
player_set_subtitle_track.
Tests (UT-143, UT-144) were written first and failed against the old markup:
the commented-out block, the Promise bound to src, and the default attribute.
TRACES: UR-020 | DR-023 | UT-143, UT-144
7483 lines
271 KiB
Markdown
7483 lines
271 KiB
Markdown
# Code Traceability Matrix
|
|
|
|
**Generated:** 8/11/2026, 7:25:20 PM
|
|
|
|
## Summary
|
|
|
|
- **Total Files Scanned:** 341
|
|
- **Total TRACES Found:** 583
|
|
- **Requirements Covered:**
|
|
- User Requirements (UR): 67
|
|
- Integration Requirements (IR): 17
|
|
- Development Requirements (DR): 130
|
|
- Jellyfin API Requirements (JA): 27
|
|
|
|
## Requirements by Type
|
|
|
|
### User Requirements (UR)
|
|
```
|
|
UR-002, UR-003, UR-004, UR-005, 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-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-071
|
|
```
|
|
|
|
### Integration Requirements (IR)
|
|
```
|
|
IR-003, IR-004, IR-009, IR-010, IR-011, IR-012, IR-013, IR-014, IR-015, IR-020, IR-023, 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-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-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
|
|
```
|
|
|
|
### Jellyfin API Requirements (JA)
|
|
```
|
|
JA-001, JA-002, JA-003, JA-004, JA-005, JA-007, JA-010, JA-011, JA-012, JA-016, JA-017, 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
|
|
```
|
|
|
|
## 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-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#L266)
|
|
- **Line:** 266
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](src/lib/stores/auth.ts#L293)
|
|
- **Line:** 293
|
|
- **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:** 2 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`
|
|
|
|
### 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/storage/schema.rs`](src-tauri/src/storage/schema.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-014
|
|
|
|
**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#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](src/lib/stores/auth.ts#L445)
|
|
- **Line:** 445
|
|
- **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`
|
|
|
|
### 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-020
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **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/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`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L33)
|
|
- **Line:** 33
|
|
- **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-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#L326)
|
|
- **Line:** 326
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1332)
|
|
- **Line:** 1332
|
|
- **Context:** `Unknown`
|
|
|
|
### IR-031
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/utils/safeArea.ts`](src/lib/utils/safeArea.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-001
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2416)
|
|
- **Line:** 2416
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2473)
|
|
- **Line:** 2473
|
|
- **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/services/playerEvents.test.ts`](src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **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.ts`](src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L186)
|
|
- **Line:** 186
|
|
- **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/types.ts`](src/lib/player/adapters/types.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](src/lib/player/adapters/html5Adapter.ts#L19)
|
|
- **Line:** 19
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](src/lib/player/index.ts#L15)
|
|
- **Line:** 15
|
|
- **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`
|
|
- **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/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-002
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2294)
|
|
- **Line:** 2294
|
|
- **Context:** `export type PlaybackProgress = { itemId: string;`
|
|
- **File:** [`src-tauri/src/player/media.rs`](src-tauri/src/player/media.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-003
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2398)
|
|
- **Line:** 2398
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](src-tauri/src/player/media.rs#L124)
|
|
- **Line:** 124
|
|
- **Context:** `pub enum MediaType {`
|
|
|
|
### DR-004
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/services/webviewAudio.ts`](src/lib/services/webviewAudio.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/index.ts`](src/lib/player/adapters/index.ts#L11)
|
|
- **Line:** 11
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/webviewAudioAdapter.ts`](src/lib/player/adapters/webviewAudioAdapter.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](src/lib/player/adapters/nativeAdapter.ts#L24)
|
|
- **Line:** 24
|
|
- **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#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **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`
|
|
|
|
### DR-005
|
|
|
|
**Locations:** 13 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2670)
|
|
- **Line:** 2670
|
|
- **Context:** `export type RemoteSessionStatus = { position: number; duration: number...`
|
|
- **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#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `async function next() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L115)
|
|
- **Line:** 115
|
|
- **Context:** `async function previous() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L120)
|
|
- **Line:** 120
|
|
- **Context:** `async function skipTo(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L125)
|
|
- **Line:** 125
|
|
- **Context:** `async function toggleShuffle() {`
|
|
- **File:** [`src/lib/stores/appState.ts`](src/lib/stores/appState.ts#L2)
|
|
- **Line:** 2
|
|
- **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/commands/player/queue.rs`](src-tauri/src/commands/player/queue.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-006
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/services/preload.ts`](src/lib/services/preload.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.test.ts`](src/lib/services/preload.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-007
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/routes/library/music/+page.svelte`](src/routes/library/music/+page.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`
|
|
- **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/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/stores/library.ts`](src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-009
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **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/AudioPlayer.svelte`](src/lib/components/player/AudioPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/BottomUi.svelte`](src/lib/components/BottomUi.svelte#L23)
|
|
- **Line:** 23
|
|
- **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.ts`](src/lib/utils/layoutShell.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](src/lib/utils/layoutShell.test.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/index.ts`](src/lib/player/index.ts#L15)
|
|
- **Line:** 15
|
|
- **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/conversions.rs`](src-tauri/src/commands/conversions.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#L573)
|
|
- **Line:** 573
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L589)
|
|
- **Line:** 589
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **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#L23)
|
|
- **Line:** 23
|
|
- **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/storage/mod.rs`](src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **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/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`
|
|
|
|
### DR-013
|
|
|
|
**Locations:** 5 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/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#L57)
|
|
- **Line:** 57
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](src/lib/services/syncService.ts#L172)
|
|
- **Line:** 172
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](src-tauri/src/commands/sync.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-015
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.ts`](src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/validation.test.ts`](src/lib/utils/validation.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/services/preload.test.ts`](src/lib/services/preload.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L2040)
|
|
- **Line:** 2040
|
|
- **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.ts`](src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.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#L2040)
|
|
- **Line:** 2040
|
|
- **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#L115)
|
|
- **Line:** 115
|
|
- **Context:** `async function previous() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L130)
|
|
- **Line:** 130
|
|
- **Context:** `async function cycleRepeat() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L135)
|
|
- **Line:** 135
|
|
- **Context:** `async function removeFromQueue(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L140)
|
|
- **Line:** 140
|
|
- **Context:** `async function moveInQueue(fromIndex: number, toIndex: number) {`
|
|
- **File:** [`src-tauri/src/player/queue.rs`](src-tauri/src/player/queue.rs#L20)
|
|
- **Line:** 20
|
|
- **Context:** `pub enum RepeatMode {`
|
|
- **File:** [`src-tauri/src/commands/player/queue.rs`](src-tauri/src/commands/player/queue.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-021
|
|
|
|
**Locations:** 3 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`
|
|
|
|
### 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:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](src/lib/components/player/subtitleTracks.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](src/lib/components/player/subtitleTracks.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#L291)
|
|
- **Line:** 291
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1729)
|
|
- **Line:** 1729
|
|
- **Context:** `function toggleSubtitleMenu() {`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](src/lib/player/adapters/types.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](src/lib/player/adapters/html5Adapter.ts#L19)
|
|
- **Line:** 19
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-024
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](src/lib/player/adapters/types.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](src/lib/player/adapters/html5Adapter.ts#L19)
|
|
- **Line:** 19
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/storage/series_prefs.rs`](src-tauri/src/commands/storage/series_prefs.rs#L3)
|
|
- **Line:** 3
|
|
- **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:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/nextEpisode.ts`](src/lib/stores/nextEpisode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **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:** 18 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2473)
|
|
- **Line:** 2473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/duration.test.ts`](src/lib/utils/duration.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](src/lib/services/playerEvents.test.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#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](src/lib/services/playbackReporting.ts#L58)
|
|
- **Line:** 58
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](src/lib/services/playbackReporting.ts#L89)
|
|
- **Line:** 89
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](src/lib/services/playbackReporting.ts#L122)
|
|
- **Line:** 122
|
|
- **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#L156)
|
|
- **Line:** 156
|
|
- **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/types.ts`](src/lib/player/adapters/types.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](src/lib/player/adapters/nativeAdapter.ts#L24)
|
|
- **Line:** 24
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](src/lib/player/adapters/html5Adapter.ts#L19)
|
|
- **Line:** 19
|
|
- **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/commands/playback_reporting.rs`](src-tauri/src/commands/playback_reporting.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-029
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2730)
|
|
- **Line:** 2730
|
|
- **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/stores/sleepTimer.ts`](src/lib/stores/sleepTimer.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L264)
|
|
- **Line:** 264
|
|
- **Context:** `function handleMediaLoaded(duration: number): void {`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L324)
|
|
- **Line:** 324
|
|
- **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/autoplay.rs`](src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L328)
|
|
- **Line:** 328
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](src-tauri/src/commands/player/timers.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-030
|
|
|
|
**Locations:** 18 file(s)
|
|
|
|
- **File:** [`src/routes/settings/+page.svelte`](src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L181)
|
|
- **Line:** 181
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1931)
|
|
- **Line:** 1931
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L601)
|
|
- **Line:** 601
|
|
- **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#L33)
|
|
- **Line:** 33
|
|
- **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#L33)
|
|
- **Line:** 33
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L46)
|
|
- **Line:** 46
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L140)
|
|
- **Line:** 140
|
|
- **Context:** `pub fn with_crossfade_clamped(mut self) -> Self {`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L193)
|
|
- **Line:** 193
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L270)
|
|
- **Line:** 270
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L299)
|
|
- **Line:** 299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L326)
|
|
- **Line:** 326
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L337)
|
|
- **Line:** 337
|
|
- **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/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L601)
|
|
- **Line:** 601
|
|
- **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/settings.rs`](src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L193)
|
|
- **Line:** 193
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-036
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L601)
|
|
- **Line:** 601
|
|
- **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/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`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L193)
|
|
- **Line:** 193
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-037
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/SessionCard.svelte`](src/lib/components/sessions/SessionCard.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/components/sessions/RemoteControls.svelte`](src/lib/components/sessions/RemoteControls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/CastButton.svelte`](src/lib/components/sessions/CastButton.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/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/lib/stores/lmsSync.ts`](src/lib/stores/lmsSync.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playbackMode.ts`](src/lib/stores/playbackMode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playbackMode.test.ts`](src/lib/stores/playbackMode.test.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:** 9 file(s)
|
|
|
|
- **File:** [`src/routes/library/music/+page.svelte`](src/routes/library/music/+page.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`
|
|
- **File:** [`src/lib/components/home/HeroBanner.svelte`](src/lib/components/home/HeroBanner.svelte#L1)
|
|
- **Line:** 1
|
|
- **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/stores/home.ts`](src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/heroMix.ts`](src/lib/utils/heroMix.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-039
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/routes/library/music/+page.svelte`](src/routes/library/music/+page.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`
|
|
- **File:** [`src/lib/components/home/Carousel.svelte`](src/lib/components/home/Carousel.svelte#L1)
|
|
- **Line:** 1
|
|
- **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/stores/home.ts`](src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **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-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#L241)
|
|
- **Line:** 241
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2473)
|
|
- **Line:** 2473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nextEpisode.ts`](src/lib/stores/nextEpisode.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/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.ts`](src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L264)
|
|
- **Line:** 264
|
|
- **Context:** `function handleMediaLoaded(duration: number): void {`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L369)
|
|
- **Line:** 369
|
|
- **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/autoplay.rs`](src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **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`
|
|
|
|
### DR-048
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/routes/settings/+page.svelte`](src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nextEpisode.ts`](src/lib/stores/nextEpisode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **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#L369)
|
|
- **Line:** 369
|
|
- **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#L241)
|
|
- **Line:** 241
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](src/lib/components/player/backgroundAudioHandoff.test.ts#L11)
|
|
- **Line:** 11
|
|
- **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/player/mod.rs`](src-tauri/src/player/mod.rs#L179)
|
|
- **Line:** 179
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L190)
|
|
- **Line:** 190
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1261)
|
|
- **Line:** 1261
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1275)
|
|
- **Line:** 1275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1288)
|
|
- **Line:** 1288
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1297)
|
|
- **Line:** 1297
|
|
- **Context:** `pub fn exit_background_audio(&self) -> f64 {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1304)
|
|
- **Line:** 1304
|
|
- **Context:** `pub fn is_background_audio_active(&self) -> bool {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1319)
|
|
- **Line:** 1319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1559)
|
|
- **Line:** 1559
|
|
- **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#L640)
|
|
- **Line:** 640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L743)
|
|
- **Line:** 743
|
|
- **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:** 1 file(s)
|
|
|
|
- **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:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/playback_mode.rs`](src-tauri/src/commands/playback_mode.rs#L3)
|
|
- **Line:** 3
|
|
- **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#L265)
|
|
- **Line:** 265
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-062
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **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/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#L265)
|
|
- **Line:** 265
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](src/lib/components/library/EpisodeFocusView.svelte#L353)
|
|
- **Line:** 353
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-063
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/routes/library/+page.svelte`](src/routes/library/+page.svelte#L17)
|
|
- **Line:** 17
|
|
- **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/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1404)
|
|
- **Line:** 1404
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2705)
|
|
- **Line:** 2705
|
|
- **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#L236)
|
|
- **Line:** 236
|
|
- **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/lib/utils/layoutShell.ts`](src/lib/utils/layoutShell.ts#L104)
|
|
- **Line:** 104
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L482)
|
|
- **Line:** 482
|
|
- **Context:** `pub struct SearchUpdateEvent {`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L329)
|
|
- **Line:** 329
|
|
- **Context:** `impl SearchScope {`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L374)
|
|
- **Line:** 374
|
|
- **Context:** `impl SearchOptions {`
|
|
|
|
### DR-064
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **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/lib/components/search/SearchScopeChips.svelte`](src/lib/components/search/SearchScopeChips.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/utils/searchScope.ts`](src/lib/utils/searchScope.ts#L125)
|
|
- **Line:** 125
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-065
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/library.ts`](src/lib/stores/library.ts#L236)
|
|
- **Line:** 236
|
|
- **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.ts`](src/lib/stores/searchGroupOrder.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/searchGroupOrder.test.ts`](src/lib/stores/searchGroupOrder.test.ts#L4)
|
|
- **Line:** 4
|
|
- **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#L240)
|
|
- **Line:** 240
|
|
- **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#L290)
|
|
- **Line:** 290
|
|
- **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#L1006)
|
|
- **Line:** 1006
|
|
- **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#L2130)
|
|
- **Line:** 2130
|
|
- **Context:** `export type MergedMediaItem = { id: string; title: string; artist: str...`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2139)
|
|
- **Line:** 2139
|
|
- **Context:** `export type NetworkStateWrapperArg = { networkType: NetworkType; unmet...`
|
|
- **File:** [`src/lib/stores/downloads.ts`](src/lib/stores/downloads.ts#L81)
|
|
- **Line:** 81
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/networkType.ts`](src/lib/services/networkType.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/networkType.test.ts`](src/lib/services/networkType.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L27)
|
|
- **Line:** 27
|
|
- **Context:** `pub struct DownloadManagerWrapper(pub Mutex<DownloadManager>);`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L36)
|
|
- **Line:** 36
|
|
- **Context:** `pub struct NetworkStateWrapper(pub NetworkStateHandle);`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L92)
|
|
- **Line:** 92
|
|
- **Context:** `pub struct NetworkStateWrapperArg {`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L1312)
|
|
- **Line:** 1312
|
|
- **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 {`
|
|
- **File:** [`src-tauri/src/download/events.rs`](src-tauri/src/download/events.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](src-tauri/src/download/cache.rs#L86)
|
|
- **Line:** 86
|
|
- **Context:** `Unknown`
|
|
|
|
### 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#L82)
|
|
- **Line:** 82
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-077
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/routes/settings/+page.svelte`](src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/viewMode.test.ts`](src/lib/stores/viewMode.test.ts#L7)
|
|
- **Line:** 7
|
|
- **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.ts`](src/lib/services/offlineCatalog.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.reload.test.ts`](src/lib/services/offlineCatalog.reload.test.ts#L11)
|
|
- **Line:** 11
|
|
- **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#L2956)
|
|
- **Line:** 2956
|
|
- **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#L245)
|
|
- **Line:** 245
|
|
- **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/routes/downloads/+page.svelte`](src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-082
|
|
|
|
**Locations:** 20 file(s)
|
|
|
|
- **File:** [`src/routes/downloads/+page.svelte`](src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1287)
|
|
- **Line:** 1287
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1295)
|
|
- **Line:** 1295
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L97)
|
|
- **Line:** 97
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L105)
|
|
- **Line:** 105
|
|
- **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#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L218)
|
|
- **Line:** 218
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L808)
|
|
- **Line:** 808
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L835)
|
|
- **Line:** 835
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L939)
|
|
- **Line:** 939
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3584)
|
|
- **Line:** 3584
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3606)
|
|
- **Line:** 3606
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3640)
|
|
- **Line:** 3640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3686)
|
|
- **Line:** 3686
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3707)
|
|
- **Line:** 3707
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3726)
|
|
- **Line:** 3726
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L200)
|
|
- **Line:** 200
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L211)
|
|
- **Line:** 211
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-083
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/routes/downloads/+page.svelte`](src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L847)
|
|
- **Line:** 847
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1295)
|
|
- **Line:** 1295
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L31)
|
|
- **Line:** 31
|
|
- **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#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](src/lib/services/downloadedCatalog.ts#L95)
|
|
- **Line:** 95
|
|
- **Context:** `function sizeOf(itemId: string): number {`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L1938)
|
|
- **Line:** 1938
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L808)
|
|
- **Line:** 808
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L835)
|
|
- **Line:** 835
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3584)
|
|
- **Line:** 3584
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3606)
|
|
- **Line:** 3606
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3640)
|
|
- **Line:** 3640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3686)
|
|
- **Line:** 3686
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3787)
|
|
- **Line:** 3787
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L200)
|
|
- **Line:** 200
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-084
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/routes/downloads/+page.svelte`](src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L315)
|
|
- **Line:** 315
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-085
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/routes/downloads/+page.svelte`](src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1303)
|
|
- **Line:** 1303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1856)
|
|
- **Line:** 1856
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L113)
|
|
- **Line:** 113
|
|
- **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#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/formatBytes.ts`](src/lib/utils/formatBytes.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/formatBytes.test.ts`](src/lib/utils/formatBytes.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](src/lib/services/downloadedCatalog.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L259)
|
|
- **Line:** 259
|
|
- **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#L3748)
|
|
- **Line:** 3748
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L218)
|
|
- **Line:** 218
|
|
- **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/routes/+page.svelte`](src/routes/+page.svelte#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](src/routes/+page.svelte#L86)
|
|
- **Line:** 86
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L39)
|
|
- **Line:** 39
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-088
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/services/skipReporting.ts`](src/lib/services/skipReporting.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.test.ts`](src/lib/services/skipReporting.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-089
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.ts`](src/lib/stores/continueWatchingFilter.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.test.ts`](src/lib/stores/continueWatchingFilter.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **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#L155)
|
|
- **Line:** 155
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](src/lib/utils/searchScope.ts#L221)
|
|
- **Line:** 221
|
|
- **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:** 4 file(s)
|
|
|
|
- **File:** [`scripts/extract-traces.ts`](scripts/extract-traces.ts#L216)
|
|
- **Line:** 216
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](scripts/extract-traces.ts#L246)
|
|
- **Line:** 246
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](scripts/extract-traces.ts#L278)
|
|
- **Line:** 278
|
|
- **Context:** `Unknown`
|
|
- **File:** [`scripts/extract-traces.ts`](scripts/extract-traces.ts#L387)
|
|
- **Line:** 387
|
|
- **Context:** `function generateJson(data: TracesData): string {`
|
|
|
|
### 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#L19)
|
|
- **Line:** 19
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-097
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **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-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L190)
|
|
- **Line:** 190
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L553)
|
|
- **Line:** 553
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L561)
|
|
- **Line:** 561
|
|
- **Context:** `pub fn is_html5_active(&self) -> bool {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L605)
|
|
- **Line:** 605
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1275)
|
|
- **Line:** 1275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1288)
|
|
- **Line:** 1288
|
|
- **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.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/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-099
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **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/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **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/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L187)
|
|
- **Line:** 187
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1342)
|
|
- **Line:** 1342
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1355)
|
|
- **Line:** 1355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L144)
|
|
- **Line:** 144
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L154)
|
|
- **Line:** 154
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L344)
|
|
- **Line:** 344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L365)
|
|
- **Line:** 365
|
|
- **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/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#L187)
|
|
- **Line:** 187
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L308)
|
|
- **Line:** 308
|
|
- **Context:** `async function handlePlayAll() {`
|
|
- **File:** [`src/lib/components/library/EpisodeRow.svelte`](src/lib/components/library/EpisodeRow.svelte#L16)
|
|
- **Line:** 16
|
|
- **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`
|
|
|
|
### DR-103
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **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#L114)
|
|
- **Line:** 114
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/tv/+page.svelte`](src/routes/library/tv/+page.svelte#L8)
|
|
- **Line:** 8
|
|
- **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`
|
|
|
|
### 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/routes/library/shows/genres/+page.ts`](src/routes/library/shows/genres/+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/movies/all/+page.ts`](src/routes/library/movies/all/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **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/shows/+page.ts`](src/routes/library/tv/shows/+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/lib/components/library/LibraryViewTabs.svelte`](src/lib/components/library/LibraryViewTabs.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](src/lib/components/library/GenericMediaListPage.svelte#L48)
|
|
- **Line:** 48
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericGenreBrowser.svelte`](src/lib/components/library/GenericGenreBrowser.svelte#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/libraryView.ts`](src/lib/utils/libraryView.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-106
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1369)
|
|
- **Line:** 1369
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L165)
|
|
- **Line:** 165
|
|
- **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#L387)
|
|
- **Line:** 387
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1874)
|
|
- **Line:** 1874
|
|
- **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#L19)
|
|
- **Line:** 19
|
|
- **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#L2478)
|
|
- **Line:** 2478
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L2518)
|
|
- **Line:** 2518
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3236)
|
|
- **Line:** 3236
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3292)
|
|
- **Line:** 3292
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-109
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L51)
|
|
- **Line:** 51
|
|
- **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#L326)
|
|
- **Line:** 326
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L740)
|
|
- **Line:** 740
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1332)
|
|
- **Line:** 1332
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-110
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **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/catalog.rs`](src-tauri/src/commands/catalog.rs#L164)
|
|
- **Line:** 164
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](src-tauri/src/storage/schema.rs#L757)
|
|
- **Line:** 757
|
|
- **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#L3074)
|
|
- **Line:** 3074
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3183)
|
|
- **Line:** 3183
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L63)
|
|
- **Line:** 63
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-111
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **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/catalog.rs`](src-tauri/src/commands/catalog.rs#L96)
|
|
- **Line:** 96
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](src-tauri/src/storage/schema.rs#L769)
|
|
- **Line:** 769
|
|
- **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#L3017)
|
|
- **Line:** 3017
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-112
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/routes/+layout.svelte`](src/routes/+layout.svelte#L254)
|
|
- **Line:** 254
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/BottomUi.svelte`](src/lib/components/BottomUi.svelte#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.ts`](src/lib/utils/safeArea.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](src/lib/utils/layoutShell.ts#L129)
|
|
- **Line:** 129
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](src/lib/utils/layoutShell.test.ts#L158)
|
|
- **Line:** 158
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-113
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L592)
|
|
- **Line:** 592
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L808)
|
|
- **Line:** 808
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2692)
|
|
- **Line:** 2692
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2723)
|
|
- **Line:** 2723
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-114
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L678)
|
|
- **Line:** 678
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4301)
|
|
- **Line:** 4301
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-115
|
|
|
|
**Locations:** 16 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1498)
|
|
- **Line:** 1498
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L322)
|
|
- **Line:** 322
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L840)
|
|
- **Line:** 840
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L877)
|
|
- **Line:** 877
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L1953)
|
|
- **Line:** 1953
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4173)
|
|
- **Line:** 4173
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4208)
|
|
- **Line:** 4208
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L141)
|
|
- **Line:** 141
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L156)
|
|
- **Line:** 156
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L855)
|
|
- **Line:** 855
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L223)
|
|
- **Line:** 223
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L683)
|
|
- **Line:** 683
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1814)
|
|
- **Line:** 1814
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2602)
|
|
- **Line:** 2602
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2624)
|
|
- **Line:** 2624
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2633)
|
|
- **Line:** 2633
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-116
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1956)
|
|
- **Line:** 1956
|
|
- **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#L151)
|
|
- **Line:** 151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](src/lib/components/library/GenericMediaListPage.svelte#L167)
|
|
- **Line:** 167
|
|
- **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/types.rs`](src-tauri/src/repository/types.rs#L298)
|
|
- **Line:** 298
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L1222)
|
|
- **Line:** 1222
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4253)
|
|
- **Line:** 4253
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L624)
|
|
- **Line:** 624
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L661)
|
|
- **Line:** 661
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2655)
|
|
- **Line:** 2655
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-117
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **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#L41)
|
|
- **Line:** 41
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](src/routes/library/+page.svelte#L207)
|
|
- **Line:** 207
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](src/lib/stores/favorites.ts#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](src/lib/stores/favorites.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/lib/utils/favoritesView.test.ts`](src/lib/utils/favoritesView.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-118
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/routes/+page.svelte`](src/routes/+page.svelte#L137)
|
|
- **Line:** 137
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](src/routes/+page.svelte#L228)
|
|
- **Line:** 228
|
|
- **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#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](src/lib/stores/home.ts#L57)
|
|
- **Line:** 57
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-119
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L567)
|
|
- **Line:** 567
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/ArtistDetailView.svelte`](src/lib/components/library/ArtistDetailView.svelte#L133)
|
|
- **Line:** 133
|
|
- **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#L45)
|
|
- **Line:** 45
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L132)
|
|
- **Line:** 132
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L281)
|
|
- **Line:** 281
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/PlaylistDetailView.svelte`](src/lib/components/library/PlaylistDetailView.svelte#L219)
|
|
- **Line:** 219
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](src/lib/components/library/EpisodeFocusView.svelte#L232)
|
|
- **Line:** 232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/FavoriteButton.svelte`](src/lib/components/FavoriteButton.svelte#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/lib/stores/favorites.test.ts`](src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **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`
|
|
|
|
### DR-120
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](src/routes/library/favorites/+page.svelte#L73)
|
|
- **Line:** 73
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](src/routes/+layout.svelte#L130)
|
|
- **Line:** 130
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1498)
|
|
- **Line:** 1498
|
|
- **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#L285)
|
|
- **Line:** 285
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L319)
|
|
- **Line:** 319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L339)
|
|
- **Line:** 339
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L355)
|
|
- **Line:** 355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L800)
|
|
- **Line:** 800
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L806)
|
|
- **Line:** 806
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L821)
|
|
- **Line:** 821
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L840)
|
|
- **Line:** 840
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L994)
|
|
- **Line:** 994
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L1019)
|
|
- **Line:** 1019
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L46)
|
|
- **Line:** 46
|
|
- **Context:** `pub fn new(online: OnlineRepository, offline: OfflineRepository) -> Se...`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L52)
|
|
- **Line:** 52
|
|
- **Context:** `impl OnlineRepository {`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1339)
|
|
- **Line:** 1339
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-123
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L315)
|
|
- **Line:** 315
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L319)
|
|
- **Line:** 319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L300)
|
|
- **Line:** 300
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/localSource.ts`](src/lib/player/localSource.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L420)
|
|
- **Line:** 420
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L472)
|
|
- **Line:** 472
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L2506)
|
|
- **Line:** 2506
|
|
- **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#L544)
|
|
- **Line:** 544
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-127
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1791)
|
|
- **Line:** 1791
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L276)
|
|
- **Line:** 276
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](src-tauri/src/storage/schema.rs#L813)
|
|
- **Line:** 813
|
|
- **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#L422)
|
|
- **Line:** 422
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-128
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L392)
|
|
- **Line:** 392
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L658)
|
|
- **Line:** 658
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L2465)
|
|
- **Line:** 2465
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-129
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L241)
|
|
- **Line:** 241
|
|
- **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/mod.rs`](src-tauri/src/player/mod.rs#L199)
|
|
- **Line:** 199
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1377)
|
|
- **Line:** 1377
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1407)
|
|
- **Line:** 1407
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1464)
|
|
- **Line:** 1464
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1495)
|
|
- **Line:** 1495
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](src-tauri/src/commands/player/timers.rs#L145)
|
|
- **Line:** 145
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-130
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L264)
|
|
- **Line:** 264
|
|
- **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#L287)
|
|
- **Line:** 287
|
|
- **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#L1464)
|
|
- **Line:** 1464
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](src-tauri/src/commands/player/timers.rs#L299)
|
|
- **Line:** 299
|
|
- **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#L70)
|
|
- **Line:** 70
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L228)
|
|
- **Line:** 228
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L360)
|
|
- **Line:** 360
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L538)
|
|
- **Line:** 538
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L604)
|
|
- **Line:** 604
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L634)
|
|
- **Line:** 634
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L668)
|
|
- **Line:** 668
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L697)
|
|
- **Line:** 697
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L743)
|
|
- **Line:** 743
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L787)
|
|
- **Line:** 787
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L802)
|
|
- **Line:** 802
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L243)
|
|
- **Line:** 243
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1915)
|
|
- **Line:** 1915
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1346)
|
|
- **Line:** 1346
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-132
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **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#L681)
|
|
- **Line:** 681
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](src/routes/+layout.svelte#L272)
|
|
- **Line:** 272
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1152)
|
|
- **Line:** 1152
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2803)
|
|
- **Line:** 2803
|
|
- **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.ts`](src/lib/services/pendingSync.logic.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/pendingSync.logic.test.ts`](src/lib/services/pendingSync.logic.test.ts#L1)
|
|
- **Line:** 1
|
|
- **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#L407)
|
|
- **Line:** 407
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-133
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L241)
|
|
- **Line:** 241
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/localSource.ts`](src/lib/player/localSource.ts#L55)
|
|
- **Line:** 55
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-134
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1018)
|
|
- **Line:** 1018
|
|
- **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#L538)
|
|
- **Line:** 538
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L911)
|
|
- **Line:** 911
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L949)
|
|
- **Line:** 949
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L972)
|
|
- **Line:** 972
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-136
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L489)
|
|
- **Line:** 489
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L668)
|
|
- **Line:** 668
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L1000)
|
|
- **Line:** 1000
|
|
- **Context:** `Unknown`
|
|
|
|
### DR-137
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L319)
|
|
- **Line:** 319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L887)
|
|
- **Line:** 887
|
|
- **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/lib.rs`](src-tauri/src/lib.rs#L1249)
|
|
- **Line:** 1249
|
|
- **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`
|
|
|
|
### DR-140
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L386)
|
|
- **Line:** 386
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L452)
|
|
- **Line:** 452
|
|
- **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/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#L129)
|
|
- **Line:** 129
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L444)
|
|
- **Line:** 444
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](src/routes/search/+page.svelte#L97)
|
|
- **Line:** 97
|
|
- **Context:** `Unknown`
|
|
- **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#L232)
|
|
- **Line:** 232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](src/lib/components/library/EpisodeFocusView.svelte#L353)
|
|
- **Line:** 353
|
|
- **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`
|
|
|
|
### DR-143
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L90)
|
|
- **Line:** 90
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](src/routes/library/music/+page.svelte#L71)
|
|
- **Line:** 71
|
|
- **Context:** `async function load() {`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](src/routes/library/movies/+page.svelte#L73)
|
|
- **Line:** 73
|
|
- **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/routes/library/favorites/+page.svelte`](src/routes/library/favorites/+page.svelte#L85)
|
|
- **Line:** 85
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](src/lib/components/library/GenericMediaListPage.svelte#L101)
|
|
- **Line:** 101
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericGenreBrowser.svelte`](src/lib/components/library/GenericGenreBrowser.svelte#L64)
|
|
- **Line:** 64
|
|
- **Context:** `async function reloadGenreBrowse() {`
|
|
- **File:** [`src/lib/services/offlineCatalog.ts`](src/lib/services/offlineCatalog.ts#L43)
|
|
- **Line:** 43
|
|
- **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/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`
|
|
|
|
### DR-147
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/routes/search/searchPage.test.ts`](src/routes/search/searchPage.test.ts#L14)
|
|
- **Line:** 14
|
|
- **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/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`
|
|
|
|
### DR-148
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/device_profile.rs`](src-tauri/src/repository/device_profile.rs#L80)
|
|
- **Line:** 80
|
|
- **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/repository.rs`](src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.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-005
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **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-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-016
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **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-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/SessionsList.svelte`](src/lib/components/sessions/SessionsList.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/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:** 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/repository.rs`](src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-031
|
|
|
|
**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/repository.rs`](src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-032
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](src/lib/api/repository-client.test.ts#L434)
|
|
- **Line:** 434
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](src/lib/api/repository-client.test.ts#L451)
|
|
- **Line:** 451
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1430)
|
|
- **Line:** 1430
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L599)
|
|
- **Line:** 599
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L104)
|
|
- **Line:** 104
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L129)
|
|
- **Line:** 129
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L452)
|
|
- **Line:** 452
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2375)
|
|
- **Line:** 2375
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2416)
|
|
- **Line:** 2416
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-033
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1498)
|
|
- **Line:** 1498
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L840)
|
|
- **Line:** 840
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L223)
|
|
- **Line:** 223
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L683)
|
|
- **Line:** 683
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1814)
|
|
- **Line:** 1814
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1874)
|
|
- **Line:** 1874
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2602)
|
|
- **Line:** 2602
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-034
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L592)
|
|
- **Line:** 592
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L808)
|
|
- **Line:** 808
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2692)
|
|
- **Line:** 2692
|
|
- **Context:** `Unknown`
|
|
|
|
### JA-035
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L243)
|
|
- **Line:** 243
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1915)
|
|
- **Line:** 1915
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-007
|
|
|
|
**Locations:** 16 file(s)
|
|
|
|
- **File:** [`src/routes/library/music/+page.svelte`](src/routes/library/music/+page.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`
|
|
- **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/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/stores/library.ts`](src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **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-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/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#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L624)
|
|
- **Line:** 624
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-023
|
|
|
|
**Locations:** 24 file(s)
|
|
|
|
- **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/lib/api/bindings.ts`](src/lib/api/bindings.ts#L241)
|
|
- **Line:** 241
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2473)
|
|
- **Line:** 2473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/nextEpisode.ts`](src/lib/stores/nextEpisode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/movies.ts`](src/lib/stores/movies.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/stores/home.ts`](src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](src/lib/services/playerEvents.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **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#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L264)
|
|
- **Line:** 264
|
|
- **Context:** `function handleMediaLoaded(duration: number): void {`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L369)
|
|
- **Line:** 369
|
|
- **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/autoplay.rs`](src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **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#L328)
|
|
- **Line:** 328
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1319)
|
|
- **Line:** 1319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1559)
|
|
- **Line:** 1559
|
|
- **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/settings.rs`](src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-025
|
|
|
|
**Locations:** 42 file(s)
|
|
|
|
- **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#L681)
|
|
- **Line:** 681
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](src/routes/+layout.svelte#L272)
|
|
- **Line:** 272
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1152)
|
|
- **Line:** 1152
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2803)
|
|
- **Line:** 2803
|
|
- **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/utils/validation.test.ts`](src/lib/utils/validation.test.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#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](src/lib/services/playbackReporting.ts#L89)
|
|
- **Line:** 89
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](src/lib/services/playbackReporting.ts#L122)
|
|
- **Line:** 122
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.ts`](src/lib/services/skipReporting.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.test.ts`](src/lib/services/skipReporting.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L156)
|
|
- **Line:** 156
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/pendingSync.logic.ts`](src/lib/services/pendingSync.logic.ts#L9)
|
|
- **Line:** 9
|
|
- **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/syncService.ts`](src/lib/services/syncService.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](src/lib/services/syncService.ts#L57)
|
|
- **Line:** 57
|
|
- **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/playback_reporting.rs`](src-tauri/src/commands/playback_reporting.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/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#L70)
|
|
- **Line:** 70
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L228)
|
|
- **Line:** 228
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L360)
|
|
- **Line:** 360
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L407)
|
|
- **Line:** 407
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L538)
|
|
- **Line:** 538
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L604)
|
|
- **Line:** 604
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L634)
|
|
- **Line:** 634
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L668)
|
|
- **Line:** 668
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L697)
|
|
- **Line:** 697
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L743)
|
|
- **Line:** 743
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L787)
|
|
- **Line:** 787
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L802)
|
|
- **Line:** 802
|
|
- **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/repository/mod.rs`](src-tauri/src/repository/mod.rs#L243)
|
|
- **Line:** 243
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1915)
|
|
- **Line:** 1915
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1346)
|
|
- **Line:** 1346
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-026
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L241)
|
|
- **Line:** 241
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2473)
|
|
- **Line:** 2473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2730)
|
|
- **Line:** 2730
|
|
- **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/stores/sleepTimer.ts`](src/lib/stores/sleepTimer.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#L264)
|
|
- **Line:** 264
|
|
- **Context:** `function handleMediaLoaded(duration: number): void {`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L324)
|
|
- **Line:** 324
|
|
- **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/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/autoplay.rs`](src-tauri/src/player/autoplay.rs#L2)
|
|
- **Line:** 2
|
|
- **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#L328)
|
|
- **Line:** 328
|
|
- **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`
|
|
|
|
### UR-027
|
|
|
|
**Locations:** 23 file(s)
|
|
|
|
- **File:** [`src/routes/settings/+page.svelte`](src/routes/settings/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L181)
|
|
- **Line:** 181
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1931)
|
|
- **Line:** 1931
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L601)
|
|
- **Line:** 601
|
|
- **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/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#L33)
|
|
- **Line:** 33
|
|
- **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#L33)
|
|
- **Line:** 33
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L46)
|
|
- **Line:** 46
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L140)
|
|
- **Line:** 140
|
|
- **Context:** `pub fn with_crossfade_clamped(mut self) -> Self {`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L193)
|
|
- **Line:** 193
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L270)
|
|
- **Line:** 270
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L299)
|
|
- **Line:** 299
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L326)
|
|
- **Line:** 326
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L337)
|
|
- **Line:** 337
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-029
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/routes/settings/+page.svelte`](src/routes/settings/+page.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/components/library/GenericMediaListPage.svelte`](src/lib/components/library/GenericMediaListPage.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/viewMode.test.ts`](src/lib/stores/viewMode.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/library.ts`](src/lib/stores/library.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-034
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/routes/library/music/+page.svelte`](src/routes/library/music/+page.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`
|
|
- **File:** [`src/lib/components/home/HeroBanner.svelte`](src/lib/components/home/HeroBanner.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/home/Carousel.svelte`](src/lib/components/home/Carousel.svelte#L1)
|
|
- **Line:** 1
|
|
- **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/stores/home.ts`](src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/heroMix.ts`](src/lib/utils/heroMix.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-035
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **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`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L4)
|
|
- **Line:** 4
|
|
- **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-040
|
|
|
|
**Locations:** 42 file(s)
|
|
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](src/lib/api/repository-client.test.ts#L434)
|
|
- **Line:** 434
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](src/lib/api/repository-client.test.ts#L451)
|
|
- **Line:** 451
|
|
- **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#L241)
|
|
- **Line:** 241
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L264)
|
|
- **Line:** 264
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1430)
|
|
- **Line:** 1430
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](src/lib/components/player/backgroundAudioHandoff.test.ts#L11)
|
|
- **Line:** 11
|
|
- **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/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/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#L287)
|
|
- **Line:** 287
|
|
- **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/player/stream_end.rs`](src-tauri/src/player/stream_end.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L179)
|
|
- **Line:** 179
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L190)
|
|
- **Line:** 190
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L199)
|
|
- **Line:** 199
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1261)
|
|
- **Line:** 1261
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1275)
|
|
- **Line:** 1275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1288)
|
|
- **Line:** 1288
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1297)
|
|
- **Line:** 1297
|
|
- **Context:** `pub fn exit_background_audio(&self) -> f64 {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1304)
|
|
- **Line:** 1304
|
|
- **Context:** `pub fn is_background_audio_active(&self) -> bool {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1319)
|
|
- **Line:** 1319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1377)
|
|
- **Line:** 1377
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1407)
|
|
- **Line:** 1407
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1464)
|
|
- **Line:** 1464
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1495)
|
|
- **Line:** 1495
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1559)
|
|
- **Line:** 1559
|
|
- **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#L640)
|
|
- **Line:** 640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L743)
|
|
- **Line:** 743
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L599)
|
|
- **Line:** 599
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L104)
|
|
- **Line:** 104
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L129)
|
|
- **Line:** 129
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L452)
|
|
- **Line:** 452
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2375)
|
|
- **Line:** 2375
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2416)
|
|
- **Line:** 2416
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-048
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L1)
|
|
- **Line:** 1
|
|
- **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/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#L265)
|
|
- **Line:** 265
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](src/lib/components/library/EpisodeFocusView.svelte#L353)
|
|
- **Line:** 353
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-049
|
|
|
|
**Locations:** 22 file(s)
|
|
|
|
- **File:** [`src/routes/library/+page.svelte`](src/routes/library/+page.svelte#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/searchPage.test.ts`](src/routes/search/searchPage.test.ts#L14)
|
|
- **Line:** 14
|
|
- **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/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1404)
|
|
- **Line:** 1404
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2705)
|
|
- **Line:** 2705
|
|
- **Context:** `export type SearchResult = { items: MediaItem[]; totalRecordCount: num...`
|
|
- **File:** [`src/lib/components/search/SearchScopeChips.svelte`](src/lib/components/search/SearchScopeChips.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/stores/library.ts`](src/lib/stores/library.ts#L236)
|
|
- **Line:** 236
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/librarySearchScope.test.ts`](src/lib/stores/librarySearchScope.test.ts#L4)
|
|
- **Line:** 4
|
|
- **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/lib/utils/layoutShell.ts`](src/lib/utils/layoutShell.ts#L104)
|
|
- **Line:** 104
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L482)
|
|
- **Line:** 482
|
|
- **Context:** `pub struct SearchUpdateEvent {`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L311)
|
|
- **Line:** 311
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L329)
|
|
- **Line:** 329
|
|
- **Context:** `impl SearchScope {`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L374)
|
|
- **Line:** 374
|
|
- **Context:** `impl SearchOptions {`
|
|
|
|
### UR-052
|
|
|
|
**Locations:** 23 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L90)
|
|
- **Line:** 90
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/music/+page.svelte`](src/routes/library/music/+page.svelte#L71)
|
|
- **Line:** 71
|
|
- **Context:** `async function load() {`
|
|
- **File:** [`src/routes/library/movies/+page.svelte`](src/routes/library/movies/+page.svelte#L73)
|
|
- **Line:** 73
|
|
- **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/routes/library/favorites/+page.svelte`](src/routes/library/favorites/+page.svelte#L85)
|
|
- **Line:** 85
|
|
- **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/GenericMediaListPage.svelte`](src/lib/components/library/GenericMediaListPage.svelte#L101)
|
|
- **Line:** 101
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericGenreBrowser.svelte`](src/lib/components/library/GenericGenreBrowser.svelte#L64)
|
|
- **Line:** 64
|
|
- **Context:** `async function reloadGenreBrowse() {`
|
|
- **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#L245)
|
|
- **Line:** 245
|
|
- **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#L43)
|
|
- **Line:** 43
|
|
- **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/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-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L538)
|
|
- **Line:** 538
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L854)
|
|
- **Line:** 854
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L911)
|
|
- **Line:** 911
|
|
- **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#L2956)
|
|
- **Line:** 2956
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-055
|
|
|
|
**Locations:** 27 file(s)
|
|
|
|
- **File:** [`src/routes/downloads/+page.svelte`](src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L847)
|
|
- **Line:** 847
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1287)
|
|
- **Line:** 1287
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1295)
|
|
- **Line:** 1295
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L97)
|
|
- **Line:** 97
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L26)
|
|
- **Line:** 26
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L31)
|
|
- **Line:** 31
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L315)
|
|
- **Line:** 315
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](src/lib/services/downloadedCatalog.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](src/lib/services/downloadedCatalog.ts#L95)
|
|
- **Line:** 95
|
|
- **Context:** `function sizeOf(itemId: string): number {`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L1938)
|
|
- **Line:** 1938
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L218)
|
|
- **Line:** 218
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L233)
|
|
- **Line:** 233
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L808)
|
|
- **Line:** 808
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L835)
|
|
- **Line:** 835
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L939)
|
|
- **Line:** 939
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3584)
|
|
- **Line:** 3584
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3606)
|
|
- **Line:** 3606
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3640)
|
|
- **Line:** 3640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3686)
|
|
- **Line:** 3686
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3707)
|
|
- **Line:** 3707
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3726)
|
|
- **Line:** 3726
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3787)
|
|
- **Line:** 3787
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L200)
|
|
- **Line:** 200
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L211)
|
|
- **Line:** 211
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-056
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/routes/downloads/+page.svelte`](src/routes/downloads/+page.svelte#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1303)
|
|
- **Line:** 1303
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1856)
|
|
- **Line:** 1856
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L113)
|
|
- **Line:** 113
|
|
- **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#L20)
|
|
- **Line:** 20
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L31)
|
|
- **Line:** 31
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/downloads/DownloadedBrowse.svelte`](src/lib/components/downloads/DownloadedBrowse.svelte#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/formatBytes.ts`](src/lib/utils/formatBytes.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/formatBytes.test.ts`](src/lib/utils/formatBytes.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](src/lib/services/downloadedCatalog.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/downloadedCatalog.ts`](src/lib/services/downloadedCatalog.ts#L95)
|
|
- **Line:** 95
|
|
- **Context:** `function sizeOf(itemId: string): number {`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L259)
|
|
- **Line:** 259
|
|
- **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#L3748)
|
|
- **Line:** 3748
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L218)
|
|
- **Line:** 218
|
|
- **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/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#L129)
|
|
- **Line:** 129
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L215)
|
|
- **Line:** 215
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L444)
|
|
- **Line:** 444
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/search/+page.svelte`](src/routes/search/+page.svelte#L97)
|
|
- **Line:** 97
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](src/routes/+page.svelte#L62)
|
|
- **Line:** 62
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](src/routes/+page.svelte#L86)
|
|
- **Line:** 86
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L39)
|
|
- **Line:** 39
|
|
- **Context:** `Unknown`
|
|
- **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#L232)
|
|
- **Line:** 232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.test.ts`](src/lib/components/library/EpisodeFocusView.test.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-062
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **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#L114)
|
|
- **Line:** 114
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L187)
|
|
- **Line:** 187
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L308)
|
|
- **Line:** 308
|
|
- **Context:** `async function handlePlayAll() {`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1342)
|
|
- **Line:** 1342
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1355)
|
|
- **Line:** 1355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L144)
|
|
- **Line:** 144
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L154)
|
|
- **Line:** 154
|
|
- **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/EpisodeRow.svelte`](src/lib/components/library/EpisodeRow.svelte#L16)
|
|
- **Line:** 16
|
|
- **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#L19)
|
|
- **Line:** 19
|
|
- **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-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L344)
|
|
- **Line:** 344
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L365)
|
|
- **Line:** 365
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/series_progress.rs`](src-tauri/src/repository/series_progress.rs#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-063
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/routes/library/shows/genres/+page.ts`](src/routes/library/shows/genres/+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/movies/all/+page.ts`](src/routes/library/movies/all/+page.ts#L6)
|
|
- **Line:** 6
|
|
- **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/shows/+page.ts`](src/routes/library/tv/shows/+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/lib/components/library/LibraryViewTabs.svelte`](src/lib/components/library/LibraryViewTabs.svelte#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](src/lib/components/library/GenericMediaListPage.svelte#L48)
|
|
- **Line:** 48
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericGenreBrowser.svelte`](src/lib/components/library/GenericGenreBrowser.svelte#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/libraryView.ts`](src/lib/utils/libraryView.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-067
|
|
|
|
**Locations:** 39 file(s)
|
|
|
|
- **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#L41)
|
|
- **Line:** 41
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/library/+page.svelte`](src/routes/library/+page.svelte#L207)
|
|
- **Line:** 207
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](src/routes/+page.svelte#L137)
|
|
- **Line:** 137
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+page.svelte`](src/routes/+page.svelte#L228)
|
|
- **Line:** 228
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1498)
|
|
- **Line:** 1498
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1956)
|
|
- **Line:** 1956
|
|
- **Context:** `export type GetItemsOptions = { startIndex?: number | null; limit?: nu...`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L322)
|
|
- **Line:** 322
|
|
- **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#L151)
|
|
- **Line:** 151
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/GenericMediaListPage.svelte`](src/lib/components/library/GenericMediaListPage.svelte#L167)
|
|
- **Line:** 167
|
|
- **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/stores/favorites.ts`](src/lib/stores/favorites.ts#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](src/lib/stores/favorites.test.ts#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/home.ts`](src/lib/stores/home.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](src/lib/stores/home.ts#L57)
|
|
- **Line:** 57
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/favoritesView.ts`](src/lib/utils/favoritesView.ts#L8)
|
|
- **Line:** 8
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/favoritesView.test.ts`](src/lib/utils/favoritesView.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L840)
|
|
- **Line:** 840
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L877)
|
|
- **Line:** 877
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L298)
|
|
- **Line:** 298
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L1222)
|
|
- **Line:** 1222
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L1953)
|
|
- **Line:** 1953
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4173)
|
|
- **Line:** 4173
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4208)
|
|
- **Line:** 4208
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4253)
|
|
- **Line:** 4253
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L141)
|
|
- **Line:** 141
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L156)
|
|
- **Line:** 156
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L855)
|
|
- **Line:** 855
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L223)
|
|
- **Line:** 223
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L624)
|
|
- **Line:** 624
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L661)
|
|
- **Line:** 661
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L683)
|
|
- **Line:** 683
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1814)
|
|
- **Line:** 1814
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2602)
|
|
- **Line:** 2602
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2624)
|
|
- **Line:** 2624
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2633)
|
|
- **Line:** 2633
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2655)
|
|
- **Line:** 2655
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-068
|
|
|
|
**Locations:** 14 file(s)
|
|
|
|
- **File:** [`src/routes/library/[id]/+page.svelte`](src/routes/library/[id]/+page.svelte#L567)
|
|
- **Line:** 567
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/ArtistDetailView.svelte`](src/lib/components/library/ArtistDetailView.svelte#L133)
|
|
- **Line:** 133
|
|
- **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#L45)
|
|
- **Line:** 45
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L132)
|
|
- **Line:** 132
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/MediaCard.svelte`](src/lib/components/library/MediaCard.svelte#L281)
|
|
- **Line:** 281
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/PlaylistDetailView.svelte`](src/lib/components/library/PlaylistDetailView.svelte#L219)
|
|
- **Line:** 219
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/library/EpisodeFocusView.svelte`](src/lib/components/library/EpisodeFocusView.svelte#L232)
|
|
- **Line:** 232
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/FavoriteButton.svelte`](src/lib/components/FavoriteButton.svelte#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.test.ts`](src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **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`
|
|
|
|
### 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-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`
|
|
|
|
### 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-010
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### 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-024
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-026
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-027
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-028
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-029
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-030
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-031
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-032
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-033
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/backend.rs`](src-tauri/src/player/backend.rs#L245)
|
|
- **Line:** 245
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-042
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L2040)
|
|
- **Line:** 2040
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-043
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L2040)
|
|
- **Line:** 2040
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-052
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L315)
|
|
- **Line:** 315
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-060
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/backgroundAudioHandoff.test.ts`](src/lib/components/player/backgroundAudioHandoff.test.ts#L11)
|
|
- **Line:** 11
|
|
- **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`
|
|
|
|
### 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-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-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-088
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/tapGestures.ts`](src/lib/components/player/tapGestures.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-098
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](src/lib/utils/layoutShell.test.ts#L158)
|
|
- **Line:** 158
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-105
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **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.test.ts`](src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-106
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](src/routes/library/favorites/+page.svelte#L41)
|
|
- **Line:** 41
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.ts`](src/lib/stores/favorites.ts#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/favorites.test.ts`](src/lib/stores/favorites.test.ts#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-066
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/routes/+layout.svelte`](src/routes/+layout.svelte#L254)
|
|
- **Line:** 254
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/BottomUi.svelte`](src/lib/components/BottomUi.svelte#L23)
|
|
- **Line:** 23
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.ts`](src/lib/utils/safeArea.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/safeArea.test.ts`](src/lib/utils/safeArea.test.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](src/lib/utils/layoutShell.ts#L129)
|
|
- **Line:** 129
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](src/lib/utils/layoutShell.test.ts#L158)
|
|
- **Line:** 158
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-069
|
|
|
|
**Locations:** 23 file(s)
|
|
|
|
- **File:** [`src/routes/library/favorites/+page.svelte`](src/routes/library/favorites/+page.svelte#L73)
|
|
- **Line:** 73
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/+layout.svelte`](src/routes/+layout.svelte#L130)
|
|
- **Line:** 130
|
|
- **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#L285)
|
|
- **Line:** 285
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L319)
|
|
- **Line:** 319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L339)
|
|
- **Line:** 339
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L355)
|
|
- **Line:** 355
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L800)
|
|
- **Line:** 800
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L806)
|
|
- **Line:** 806
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L821)
|
|
- **Line:** 821
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L994)
|
|
- **Line:** 994
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L1019)
|
|
- **Line:** 1019
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L678)
|
|
- **Line:** 678
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4301)
|
|
- **Line:** 4301
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L46)
|
|
- **Line:** 46
|
|
- **Context:** `pub fn new(online: OnlineRepository, offline: OfflineRepository) -> Se...`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L52)
|
|
- **Line:** 52
|
|
- **Context:** `impl OnlineRepository {`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L592)
|
|
- **Line:** 592
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L808)
|
|
- **Line:** 808
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2692)
|
|
- **Line:** 2692
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2723)
|
|
- **Line:** 2723
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1339)
|
|
- **Line:** 1339
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-071
|
|
|
|
**Locations:** 45 file(s)
|
|
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L241)
|
|
- **Line:** 241
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L250)
|
|
- **Line:** 250
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L315)
|
|
- **Line:** 315
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/routes/player/[id]/+page.svelte`](src/routes/player/[id]/+page.svelte#L319)
|
|
- **Line:** 319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L300)
|
|
- **Line:** 300
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L887)
|
|
- **Line:** 887
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1791)
|
|
- **Line:** 1791
|
|
- **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-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L392)
|
|
- **Line:** 392
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L420)
|
|
- **Line:** 420
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L472)
|
|
- **Line:** 472
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L658)
|
|
- **Line:** 658
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L2465)
|
|
- **Line:** 2465
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L2506)
|
|
- **Line:** 2506
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L276)
|
|
- **Line:** 276
|
|
- **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/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#L489)
|
|
- **Line:** 489
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L538)
|
|
- **Line:** 538
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L668)
|
|
- **Line:** 668
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L911)
|
|
- **Line:** 911
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L949)
|
|
- **Line:** 949
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L972)
|
|
- **Line:** 972
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L1000)
|
|
- **Line:** 1000
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](src-tauri/src/storage/schema.rs#L813)
|
|
- **Line:** 813
|
|
- **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#L422)
|
|
- **Line:** 422
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](src-tauri/src/download/cache.rs#L544)
|
|
- **Line:** 544
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1018)
|
|
- **Line:** 1018
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1249)
|
|
- **Line:** 1249
|
|
- **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`
|
|
|
|
### 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#L640)
|
|
- **Line:** 640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L743)
|
|
- **Line:** 743
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-061
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](src/lib/api/repository-client.test.ts#L434)
|
|
- **Line:** 434
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.test.ts`](src/lib/api/repository-client.test.ts#L451)
|
|
- **Line:** 451
|
|
- **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#L1430)
|
|
- **Line:** 1430
|
|
- **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#L640)
|
|
- **Line:** 640
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L743)
|
|
- **Line:** 743
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L599)
|
|
- **Line:** 599
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-004
|
|
|
|
**Locations:** 26 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L264)
|
|
- **Line:** 264
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2294)
|
|
- **Line:** 2294
|
|
- **Context:** `export type PlaybackProgress = { itemId: string;`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2398)
|
|
- **Line:** 2398
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/AudioPlayer.svelte`](src/lib/components/player/AudioPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.ts`](src/lib/services/preload.ts#L5)
|
|
- **Line:** 5
|
|
- **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/preload.test.ts`](src/lib/services/preload.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L287)
|
|
- **Line:** 287
|
|
- **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/media.rs`](src-tauri/src/player/media.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](src-tauri/src/player/media.rs#L124)
|
|
- **Line:** 124
|
|
- **Context:** `pub enum MediaType {`
|
|
- **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#L245)
|
|
- **Line:** 245
|
|
- **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/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#L1377)
|
|
- **Line:** 1377
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1464)
|
|
- **Line:** 1464
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1495)
|
|
- **Line:** 1495
|
|
- **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/mod.rs`](src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **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#L80)
|
|
- **Line:** 80
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L386)
|
|
- **Line:** 386
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-107
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1498)
|
|
- **Line:** 1498
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L806)
|
|
- **Line:** 806
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L821)
|
|
- **Line:** 821
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L840)
|
|
- **Line:** 840
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L994)
|
|
- **Line:** 994
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L1019)
|
|
- **Line:** 1019
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-116
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L300)
|
|
- **Line:** 300
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L420)
|
|
- **Line:** 420
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L472)
|
|
- **Line:** 472
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L2506)
|
|
- **Line:** 2506
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-117
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L264)
|
|
- **Line:** 264
|
|
- **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/mod.rs`](src-tauri/src/player/mod.rs#L1377)
|
|
- **Line:** 1377
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1407)
|
|
- **Line:** 1407
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1464)
|
|
- **Line:** 1464
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1495)
|
|
- **Line:** 1495
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/timers.rs`](src-tauri/src/commands/player/timers.rs#L299)
|
|
- **Line:** 299
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-002
|
|
|
|
**Locations:** 19 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2398)
|
|
- **Line:** 2398
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/connectivity.ts`](src/lib/stores/connectivity.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](src/lib/services/syncService.ts#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/offlineCatalog.ts`](src/lib/services/offlineCatalog.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](src-tauri/src/player/media.rs#L124)
|
|
- **Line:** 124
|
|
- **Context:** `pub enum MediaType {`
|
|
- **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/offline.rs`](src-tauri/src/commands/offline.rs#L136)
|
|
- **Line:** 136
|
|
- **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/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#L228)
|
|
- **Line:** 228
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L3)
|
|
- **Line:** 3
|
|
- **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/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/online.rs`](src-tauri/src/repository/online.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1346)
|
|
- **Line:** 1346
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-003
|
|
|
|
**Locations:** 20 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2294)
|
|
- **Line:** 2294
|
|
- **Context:** `export type PlaybackProgress = { itemId: string;`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2398)
|
|
- **Line:** 2398
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/webviewAudio.ts`](src/lib/services/webviewAudio.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/index.ts`](src/lib/player/adapters/index.ts#L11)
|
|
- **Line:** 11
|
|
- **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/types.ts`](src/lib/player/adapters/types.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/webviewAudioAdapter.ts`](src/lib/player/adapters/webviewAudioAdapter.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](src/lib/player/adapters/nativeAdapter.ts#L24)
|
|
- **Line:** 24
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](src/lib/player/adapters/html5Adapter.ts#L19)
|
|
- **Line:** 19
|
|
- **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/media.rs`](src-tauri/src/player/media.rs#L42)
|
|
- **Line:** 42
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](src-tauri/src/player/media.rs#L124)
|
|
- **Line:** 124
|
|
- **Context:** `pub enum MediaType {`
|
|
- **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#L245)
|
|
- **Line:** 245
|
|
- **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/mod.rs`](src-tauri/src/player/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/mod.rs`](src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-005
|
|
|
|
**Locations:** 73 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2416)
|
|
- **Line:** 2416
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2473)
|
|
- **Line:** 2473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2670)
|
|
- **Line:** 2670
|
|
- **Context:** `export type RemoteSessionStatus = { position: number; duration: number...`
|
|
- **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/videoFit.ts`](src/lib/components/player/videoFit.ts#L7)
|
|
- **Line:** 7
|
|
- **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/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/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/AudioPlayer.svelte`](src/lib/components/player/AudioPlayer.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/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/BottomUi.svelte`](src/lib/components/BottomUi.svelte#L23)
|
|
- **Line:** 23
|
|
- **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#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `async function next() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L115)
|
|
- **Line:** 115
|
|
- **Context:** `async function previous() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L120)
|
|
- **Line:** 120
|
|
- **Context:** `async function skipTo(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L125)
|
|
- **Line:** 125
|
|
- **Context:** `async function toggleShuffle() {`
|
|
- **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/utils/duration.test.ts`](src/lib/utils/duration.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](src/lib/utils/layoutShell.ts#L17)
|
|
- **Line:** 17
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.test.ts`](src/lib/utils/layoutShell.test.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](src/lib/services/playerEvents.test.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#L21)
|
|
- **Line:** 21
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](src/lib/services/playbackReporting.ts#L58)
|
|
- **Line:** 58
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playbackReporting.ts`](src/lib/services/playbackReporting.ts#L89)
|
|
- **Line:** 89
|
|
- **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/webviewAudio.ts`](src/lib/services/webviewAudio.ts#L18)
|
|
- **Line:** 18
|
|
- **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#L156)
|
|
- **Line:** 156
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.ts`](src/lib/services/playerEvents.ts#L186)
|
|
- **Line:** 186
|
|
- **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/types.ts`](src/lib/player/adapters/types.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/webviewAudioAdapter.ts`](src/lib/player/adapters/webviewAudioAdapter.ts#L18)
|
|
- **Line:** 18
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/nativeAdapter.ts`](src/lib/player/adapters/nativeAdapter.ts#L24)
|
|
- **Line:** 24
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](src/lib/player/adapters/html5Adapter.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-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`
|
|
- **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/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/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/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#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L553)
|
|
- **Line:** 553
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L561)
|
|
- **Line:** 561
|
|
- **Context:** `pub fn is_html5_active(&self) -> bool {`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L605)
|
|
- **Line:** 605
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1275)
|
|
- **Line:** 1275
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/mod.rs`](src-tauri/src/player/mod.rs#L1288)
|
|
- **Line:** 1288
|
|
- **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/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`
|
|
|
|
### UR-008
|
|
|
|
**Locations:** 2 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`
|
|
|
|
### UR-009
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L573)
|
|
- **Line:** 573
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L589)
|
|
- **Line:** 589
|
|
- **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#L266)
|
|
- **Line:** 266
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](src/lib/stores/auth.ts#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/validation.test.ts`](src/lib/utils/validation.test.ts#L4)
|
|
- **Line:** 4
|
|
- **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#L23)
|
|
- **Line:** 23
|
|
- **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-011
|
|
|
|
**Locations:** 11 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2398)
|
|
- **Line:** 2398
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.ts`](src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.ts`](src/lib/services/preload.ts#L5)
|
|
- **Line:** 5
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/preload.test.ts`](src/lib/services/preload.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/media.rs`](src-tauri/src/player/media.rs#L124)
|
|
- **Line:** 124
|
|
- **Context:** `pub enum MediaType {`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L2040)
|
|
- **Line:** 2040
|
|
- **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/offline.rs`](src-tauri/src/commands/offline.rs#L136)
|
|
- **Line:** 136
|
|
- **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/catalog.rs`](src-tauri/src/commands/catalog.rs#L854)
|
|
- **Line:** 854
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-017
|
|
|
|
**Locations:** 10 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/MiniPlayer.svelte`](src/lib/components/player/MiniPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **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/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#L57)
|
|
- **Line:** 57
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/syncService.ts`](src/lib/services/syncService.ts#L172)
|
|
- **Line:** 172
|
|
- **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/mod.rs`](src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync.rs`](src-tauri/src/commands/sync.rs#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-019
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2473)
|
|
- **Line:** 2473
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/playerEvents.test.ts`](src/lib/services/playerEvents.test.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/playerEvents.ts`](src/lib/services/playerEvents.ts#L8)
|
|
- **Line:** 8
|
|
- **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/commands/storage/mod.rs`](src-tauri/src/commands/storage/mod.rs#L3)
|
|
- **Line:** 3
|
|
- **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/mod.rs`](src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **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-020
|
|
|
|
**Locations:** 8 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](src/lib/components/player/subtitleTracks.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](src/lib/components/player/subtitleTracks.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#L291)
|
|
- **Line:** 291
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1729)
|
|
- **Line:** 1729
|
|
- **Context:** `function toggleSubtitleMenu() {`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](src/lib/player/adapters/types.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](src/lib/player/adapters/html5Adapter.ts#L19)
|
|
- **Line:** 19
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-021
|
|
|
|
**Locations:** 5 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/types.ts`](src/lib/player/adapters/types.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/player/adapters/html5Adapter.ts`](src/lib/player/adapters/html5Adapter.ts#L19)
|
|
- **Line:** 19
|
|
- **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/storage/series_prefs.rs`](src-tauri/src/commands/storage/series_prefs.rs#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-028
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/MiniPlayer.svelte`](src/lib/components/player/MiniPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/AudioPlayer.svelte`](src/lib/components/player/AudioPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-050
|
|
|
|
**Locations:** 9 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1404)
|
|
- **Line:** 1404
|
|
- **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.ts`](src/lib/stores/searchGroupOrder.ts#L6)
|
|
- **Line:** 6
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/searchGroupOrder.test.ts`](src/lib/stores/searchGroupOrder.test.ts#L4)
|
|
- **Line:** 4
|
|
- **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#L240)
|
|
- **Line:** 240
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](src/lib/utils/searchScope.ts#L290)
|
|
- **Line:** 290
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/repository.rs`](src-tauri/src/commands/repository.rs#L482)
|
|
- **Line:** 482
|
|
- **Context:** `pub struct SearchUpdateEvent {`
|
|
|
|
### UR-053
|
|
|
|
**Locations:** 17 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1006)
|
|
- **Line:** 1006
|
|
- **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#L2130)
|
|
- **Line:** 2130
|
|
- **Context:** `export type MergedMediaItem = { id: string; title: string; artist: str...`
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L2139)
|
|
- **Line:** 2139
|
|
- **Context:** `export type NetworkStateWrapperArg = { networkType: NetworkType; unmet...`
|
|
- **File:** [`src/lib/stores/downloads.ts`](src/lib/stores/downloads.ts#L81)
|
|
- **Line:** 81
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/networkType.ts`](src/lib/services/networkType.ts#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/networkType.test.ts`](src/lib/services/networkType.test.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L27)
|
|
- **Line:** 27
|
|
- **Context:** `pub struct DownloadManagerWrapper(pub Mutex<DownloadManager>);`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L36)
|
|
- **Line:** 36
|
|
- **Context:** `pub struct NetworkStateWrapper(pub NetworkStateHandle);`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L79)
|
|
- **Line:** 79
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L92)
|
|
- **Line:** 92
|
|
- **Context:** `pub struct NetworkStateWrapperArg {`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L1312)
|
|
- **Line:** 1312
|
|
- **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 {`
|
|
- **File:** [`src-tauri/src/download/events.rs`](src-tauri/src/download/events.rs#L47)
|
|
- **Line:** 47
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/download/cache.rs`](src-tauri/src/download/cache.rs#L86)
|
|
- **Line:** 86
|
|
- **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.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/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-064
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1369)
|
|
- **Line:** 1369
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/api/repository-client.ts`](src/lib/api/repository-client.ts#L165)
|
|
- **Line:** 165
|
|
- **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#L387)
|
|
- **Line:** 387
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L235)
|
|
- **Line:** 235
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1874)
|
|
- **Line:** 1874
|
|
- **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-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-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-092
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **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/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-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-104
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/api/bindings.ts`](src/lib/api/bindings.ts#L1956)
|
|
- **Line:** 1956
|
|
- **Context:** `export type GetItemsOptions = { startIndex?: number | null; limit?: nu...`
|
|
- **File:** [`src-tauri/src/repository/types.rs`](src-tauri/src/repository/types.rs#L298)
|
|
- **Line:** 298
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L1222)
|
|
- **Line:** 1222
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4253)
|
|
- **Line:** 4253
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L624)
|
|
- **Line:** 624
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L661)
|
|
- **Line:** 661
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2655)
|
|
- **Line:** 2655
|
|
- **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-119
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L392)
|
|
- **Line:** 392
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L2465)
|
|
- **Line:** 2465
|
|
- **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-123
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/services/pendingSync.logic.ts`](src/lib/services/pendingSync.logic.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/pendingSync.logic.test.ts`](src/lib/services/pendingSync.logic.test.ts#L1)
|
|
- **Line:** 1
|
|
- **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-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.ts`](src/lib/components/player/subtitleTracks.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](src/lib/components/player/subtitleTracks.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L291)
|
|
- **Line:** 291
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-144
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/components/player/subtitleTracks.ts`](src/lib/components/player/subtitleTracks.ts#L15)
|
|
- **Line:** 15
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/subtitleTracks.test.ts`](src/lib/components/player/subtitleTracks.test.ts#L16)
|
|
- **Line:** 16
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/player/VideoPlayer.svelte`](src/lib/components/player/VideoPlayer.svelte#L291)
|
|
- **Line:** 291
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-010
|
|
|
|
**Locations:** 15 file(s)
|
|
|
|
- **File:** [`src/lib/components/sessions/SessionCard.svelte`](src/lib/components/sessions/SessionCard.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/components/sessions/RemoteControls.svelte`](src/lib/components/sessions/RemoteControls.svelte#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/components/sessions/CastButton.svelte`](src/lib/components/sessions/CastButton.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/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/lib/stores/lmsSync.ts`](src/lib/stores/lmsSync.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playbackMode.ts`](src/lib/stores/playbackMode.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/playbackMode.test.ts`](src/lib/stores/playbackMode.test.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/player/mod.rs`](src-tauri/src/commands/player/mod.rs#L1)
|
|
- **Line:** 1
|
|
- **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/sessions.rs`](src-tauri/src/commands/sessions.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`
|
|
|
|
### UR-012
|
|
|
|
**Locations:** 9 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#L293)
|
|
- **Line:** 293
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/auth.ts`](src/lib/stores/auth.ts#L445)
|
|
- **Line:** 445
|
|
- **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/mod.rs`](src-tauri/src/commands/mod.rs#L2)
|
|
- **Line:** 2
|
|
- **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/credentials.rs`](src-tauri/src/credentials.rs#L10)
|
|
- **Line:** 10
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-013
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.ts`](src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
|
|
### 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-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#L105)
|
|
- **Line:** 105
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L110)
|
|
- **Line:** 110
|
|
- **Context:** `async function next() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L115)
|
|
- **Line:** 115
|
|
- **Context:** `async function previous() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L120)
|
|
- **Line:** 120
|
|
- **Context:** `async function skipTo(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L125)
|
|
- **Line:** 125
|
|
- **Context:** `async function toggleShuffle() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L130)
|
|
- **Line:** 130
|
|
- **Context:** `async function cycleRepeat() {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L135)
|
|
- **Line:** 135
|
|
- **Context:** `async function removeFromQueue(index: number) {`
|
|
- **File:** [`src/lib/stores/queue.ts`](src/lib/stores/queue.ts#L140)
|
|
- **Line:** 140
|
|
- **Context:** `async function moveInQueue(fromIndex: number, toIndex: number) {`
|
|
- **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/commands/player/queue.rs`](src-tauri/src/commands/player/queue.rs#L3)
|
|
- **Line:** 3
|
|
- **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#L251)
|
|
- **Line:** 251
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-018
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src/lib/stores/downloads.ts`](src/lib/stores/downloads.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/downloads.test.ts`](src/lib/stores/downloads.test.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/download/mod.rs`](src-tauri/src/commands/download/mod.rs#L2040)
|
|
- **Line:** 2040
|
|
- **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-024
|
|
|
|
**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`
|
|
|
|
### 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-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/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L601)
|
|
- **Line:** 601
|
|
- **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/settings.rs`](src-tauri/src/settings.rs#L1)
|
|
- **Line:** 1
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L193)
|
|
- **Line:** 193
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-033
|
|
|
|
**Locations:** 12 file(s)
|
|
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L563)
|
|
- **Line:** 563
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/player/android/mod.rs`](src-tauri/src/player/android/mod.rs#L601)
|
|
- **Line:** 601
|
|
- **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/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`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L193)
|
|
- **Line:** 193
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L210)
|
|
- **Line:** 210
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L234)
|
|
- **Line:** 234
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-036
|
|
|
|
**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/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`
|
|
|
|
### 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:** 1 file(s)
|
|
|
|
- **File:** [`src/lib/utils/pictureInPicture.ts`](src/lib/utils/pictureInPicture.ts#L4)
|
|
- **Line:** 4
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-042
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/auth.rs`](src-tauri/src/commands/auth.rs#L3)
|
|
- **Line:** 3
|
|
- **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-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-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-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`
|
|
|
|
### 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-054
|
|
|
|
**Locations:** 6 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/lib/components/account/AccountMenu.svelte`](src/lib/components/account/AccountMenu.svelte#L7)
|
|
- **Line:** 7
|
|
- **Context:** `Unknown`
|
|
- **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#L82)
|
|
- **Line:** 82
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/layoutShell.ts`](src/lib/utils/layoutShell.ts#L104)
|
|
- **Line:** 104
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-059
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.ts`](src/lib/stores/continueWatchingFilter.ts#L12)
|
|
- **Line:** 12
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/continueWatchingFilter.test.ts`](src/lib/stores/continueWatchingFilter.test.ts#L9)
|
|
- **Line:** 9
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/tv.ts`](src/lib/stores/tv.ts#L3)
|
|
- **Line:** 3
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/stores/home.ts`](src/lib/stores/home.ts#L2)
|
|
- **Line:** 2
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.ts`](src/lib/services/skipReporting.ts#L14)
|
|
- **Line:** 14
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/services/skipReporting.test.ts`](src/lib/services/skipReporting.test.ts#L9)
|
|
- **Line:** 9
|
|
- **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`
|
|
|
|
### UR-060
|
|
|
|
**Locations:** 7 file(s)
|
|
|
|
- **File:** [`src/lib/utils/searchScope.ts`](src/lib/utils/searchScope.ts#L155)
|
|
- **Line:** 155
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src/lib/utils/searchScope.ts`](src/lib/utils/searchScope.ts#L221)
|
|
- **Line:** 221
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L96)
|
|
- **Line:** 96
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/storage/schema.rs`](src-tauri/src/storage/schema.rs#L769)
|
|
- **Line:** 769
|
|
- **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#L3017)
|
|
- **Line:** 3017
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/domain/search_rank.rs`](src-tauri/src/domain/search_rank.rs#L106)
|
|
- **Line:** 106
|
|
- **Context:** `Unknown`
|
|
|
|
### UR-065
|
|
|
|
**Locations:** 22 file(s)
|
|
|
|
- **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/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#L326)
|
|
- **Line:** 326
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L740)
|
|
- **Line:** 740
|
|
- **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/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#L2478)
|
|
- **Line:** 2478
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L2518)
|
|
- **Line:** 2518
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3017)
|
|
- **Line:** 3017
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3074)
|
|
- **Line:** 3074
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3183)
|
|
- **Line:** 3183
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3236)
|
|
- **Line:** 3236
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3292)
|
|
- **Line:** 3292
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/hybrid.rs`](src-tauri/src/repository/hybrid.rs#L63)
|
|
- **Line:** 63
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/lib.rs`](src-tauri/src/lib.rs#L1332)
|
|
- **Line:** 1332
|
|
- **Context:** `Unknown`
|
|
|
|
### IT-016
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L2956)
|
|
- **Line:** 2956
|
|
- **Context:** `Unknown`
|
|
|
|
### IT-017
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L854)
|
|
- **Line:** 854
|
|
- **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-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-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#L3787)
|
|
- **Line:** 3787
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-059
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L452)
|
|
- **Line:** 452
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2375)
|
|
- **Line:** 2375
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2416)
|
|
- **Line:** 2416
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-067
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L2956)
|
|
- **Line:** 2956
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-072
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3584)
|
|
- **Line:** 3584
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-073
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3707)
|
|
- **Line:** 3707
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-074
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3726)
|
|
- **Line:** 3726
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-075
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3748)
|
|
- **Line:** 3748
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-076
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3606)
|
|
- **Line:** 3606
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-077
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3640)
|
|
- **Line:** 3640
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-078
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3686)
|
|
- **Line:** 3686
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-079
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L270)
|
|
- **Line:** 270
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-080
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L299)
|
|
- **Line:** 299
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-081
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L326)
|
|
- **Line:** 326
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-082
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/settings.rs`](src-tauri/src/settings.rs#L337)
|
|
- **Line:** 337
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-099
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L592)
|
|
- **Line:** 592
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2692)
|
|
- **Line:** 2692
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2723)
|
|
- **Line:** 2723
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-100
|
|
|
|
**Locations:** 6 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L223)
|
|
- **Line:** 223
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L683)
|
|
- **Line:** 683
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L1814)
|
|
- **Line:** 1814
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2602)
|
|
- **Line:** 2602
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2624)
|
|
- **Line:** 2624
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L2633)
|
|
- **Line:** 2633
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-101
|
|
|
|
**Locations:** 4 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L1953)
|
|
- **Line:** 1953
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4173)
|
|
- **Line:** 4173
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4208)
|
|
- **Line:** 4208
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/mod.rs`](src-tauri/src/repository/mod.rs#L223)
|
|
- **Line:** 223
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-102
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L678)
|
|
- **Line:** 678
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L4301)
|
|
- **Line:** 4301
|
|
- **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#L285)
|
|
- **Line:** 285
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L319)
|
|
- **Line:** 319
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L339)
|
|
- **Line:** 339
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/favorites.rs`](src-tauri/src/commands/favorites.rs#L355)
|
|
- **Line:** 355
|
|
- **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#L544)
|
|
- **Line:** 544
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-109
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3236)
|
|
- **Line:** 3236
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-110
|
|
|
|
**Locations:** 1 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L3292)
|
|
- **Line:** 3292
|
|
- **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#L2478)
|
|
- **Line:** 2478
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/offline.rs`](src-tauri/src/repository/offline.rs#L2518)
|
|
- **Line:** 2518
|
|
- **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#L3183)
|
|
- **Line:** 3183
|
|
- **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#L3074)
|
|
- **Line:** 3074
|
|
- **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#L3017)
|
|
- **Line:** 3017
|
|
- **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#L740)
|
|
- **Line:** 740
|
|
- **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#L422)
|
|
- **Line:** 422
|
|
- **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#L70)
|
|
- **Line:** 70
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L228)
|
|
- **Line:** 228
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L538)
|
|
- **Line:** 538
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L604)
|
|
- **Line:** 604
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L634)
|
|
- **Line:** 634
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L668)
|
|
- **Line:** 668
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L697)
|
|
- **Line:** 697
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L743)
|
|
- **Line:** 743
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L787)
|
|
- **Line:** 787
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/sync_drain.rs`](src-tauri/src/commands/sync_drain.rs#L802)
|
|
- **Line:** 802
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-125
|
|
|
|
**Locations:** 3 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L911)
|
|
- **Line:** 911
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L949)
|
|
- **Line:** 949
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L972)
|
|
- **Line:** 972
|
|
- **Context:** `Unknown`
|
|
|
|
### UT-126
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L489)
|
|
- **Line:** 489
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/commands/catalog.rs`](src-tauri/src/commands/catalog.rs#L1000)
|
|
- **Line:** 1000
|
|
- **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-130
|
|
|
|
**Locations:** 2 file(s)
|
|
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L386)
|
|
- **Line:** 386
|
|
- **Context:** `Unknown`
|
|
- **File:** [`src-tauri/src/repository/online.rs`](src-tauri/src/repository/online.rs#L452)
|
|
- **Line:** 452
|
|
- **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#L80)
|
|
- **Line:** 80
|
|
- **Context:** `Unknown`
|
|
|
|
|