Skip to content

Commit

Permalink
clearer option for adding stockfish for analysis boards
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Sep 6, 2024
1 parent 5ebd06b commit 3e4fd09
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions command/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,17 @@ fn prompt_for_services() -> Result<Vec<OptionalService<'static>>, Error> {
compose_profile: vec!["stockfish-analysis"].into(),
repositories: None,
},
"Stockfish Analysis",
"Stockfish Game Analysis",
"for requesting computer analysis of games",
)
.item(
OptionalService {
compose_profile: None,
repositories: vec![Repository::new("lichess-org", "lifat")].into(),
},
"Stockfish Analysis Board",
"for toggling engine when analyzing positions",
)
.item(
OptionalService {
compose_profile: vec!["external-engine"].into(),
Expand All @@ -505,7 +513,7 @@ fn prompt_for_services() -> Result<Vec<OptionalService<'static>>, Error> {
repositories: vec![Repository::new("lichess-org", "lifat")].into(),
},
"Larger static assets",
"Analysis board engines, background images, voice move models, etc",
"Background images, voice move models, etc",
)
.item(
OptionalService {
Expand Down

0 comments on commit 3e4fd09

Please sign in to comment.