mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Re-order instructions
This commit is contained in:
parent
12be16417f
commit
29845ba6e5
4 changed files with 35 additions and 28 deletions
|
|
@ -208,7 +208,7 @@ impl Execute for Archive {
|
|||
format.stream.resolution,
|
||||
format.stream.fps,
|
||||
format.season_number,
|
||||
format.number,
|
||||
format.episode_number,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
@ -234,7 +234,7 @@ impl Execute for Archive {
|
|||
format.stream.resolution,
|
||||
format.stream.fps,
|
||||
format.season_number,
|
||||
format.number
|
||||
format.episode_number
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
@ -266,7 +266,7 @@ impl Execute for Archive {
|
|||
tab_info!(
|
||||
"Episode: S{:02}E{:02}",
|
||||
primary.season_number,
|
||||
primary.number
|
||||
primary.episode_number
|
||||
);
|
||||
tab_info!(
|
||||
"Audio: {} (primary), {}",
|
||||
|
|
@ -318,7 +318,7 @@ impl Execute for Archive {
|
|||
|
||||
// Remove subtitles of deleted video
|
||||
if only_audio {
|
||||
subtitles.retain(|s| s.episode_id != additional.id);
|
||||
subtitles.retain(|s| s.episode_id != additional.episode_id);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ impl Execute for Download {
|
|||
format.stream.resolution,
|
||||
format.stream.fps,
|
||||
format.season_number,
|
||||
format.number,
|
||||
format.episode_number,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
@ -202,7 +202,7 @@ impl Execute for Download {
|
|||
format.stream.resolution,
|
||||
format.stream.fps,
|
||||
format.season_number,
|
||||
format.number
|
||||
format.episode_number
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
@ -229,7 +229,11 @@ impl Execute for Download {
|
|||
path.file_name().unwrap().to_str().unwrap()
|
||||
}
|
||||
);
|
||||
tab_info!("Episode: S{:02}E{:02}", format.season_number, format.number);
|
||||
tab_info!(
|
||||
"Episode: S{:02}E{:02}",
|
||||
format.season_number,
|
||||
format.episode_number
|
||||
);
|
||||
tab_info!("Audio: {}", format.audio);
|
||||
tab_info!(
|
||||
"Subtitles: {}",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue