Skip to content

Commit

Permalink
Merge branch 'master' into prevent-select-diff-platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoknjas authored Dec 21, 2024
2 parents dca6c4c + 3010f9a commit 19f87c4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bin/dependency-graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def pick(essentials, providers_dict):
print()

pydot_graph = nx.drawing.nx_pydot.to_pydot(G)
pydot_graph.set_rankdir('LR')
# pydot_graph.set_rankdir('LR')
# pydot_graph.set_ratio(1)

sink_nodes = pydot.Subgraph(rank="same")
Expand All @@ -120,6 +120,6 @@ def pick(essentials, providers_dict):
pydot_graph.add_edge(edge)

edge.set_color('red')
edge.set_penwidth(2)
edge.set_penwidth(1)

pydot_graph.write_png(output_path)
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ lazy val notifyModule = module("notify",
)

lazy val recap = module("recap",
Seq(memo, ui, user, game, puzzle),
Seq(user, game, puzzle),
Seq()
)

Expand Down
4 changes: 1 addition & 3 deletions modules/recap/src/main/RecapBuilder.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package lila.recap

import reactivemongo.akkastream.{ AkkaStreamCursor, cursorProducer }
import reactivemongo.api.bson.BSONNull
import chess.ByColor
import chess.opening.OpeningDb
import chess.format.pgn.SanStr
Expand All @@ -9,11 +10,8 @@ import scalalib.model.Days
import lila.common.SimpleOpening
import lila.db.dsl.{ *, given }
import lila.game.Query
import lila.puzzle.PuzzleRound
import lila.common.LichessDay
import lila.core.game.Source
import java.time.LocalDate
import reactivemongo.api.bson.BSONNull

private final class RecapBuilder(
repo: RecapRepo,
Expand Down
2 changes: 1 addition & 1 deletion translation/source/appeal.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<string name="boosterMarked">Your account is marked for rating manipulation.</string>
<string name="boosterMarkedInfo">We define this as deliberately manipulating rating by losing games on purpose or by playing against another account that is deliberately losing games.</string>
<string name="accountMuted">Your account is muted.</string>
<string name="accountMutedInfo">Read our %s. Failure to follow the communication guidelines can result in accounts being muted.</string>
<string name="accountMutedInfo">Read our %s. Failure to comply with the communication guidelines may result in accounts being muted.</string>
<string name="excludedFromLeaderboards">Your account has been excluded from leaderboards.</string>
<string name="excludedFromLeaderboardsInfo">We define this as using any unfair way to get on the leaderboard.</string>
<string name="closedByModerators">Your account was closed by moderators.</string>
Expand Down

0 comments on commit 19f87c4

Please sign in to comment.