Merge branch 'master' of github.com:ornicar/lila into ublog

* 'master' of github.com:ornicar/lila:
  Fix dubious puzzle rating showing differently from no puzzle rating (#9701)
  fix `Robert Hübner` name.
  Update specs2-core to 4.12.6
ublog
Thibault Duplessis 2021-09-01 08:09:58 +02:00
commit bc2da9f192
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ object side {
},
span(
h3(perfType.trans),
if (isPuzzle && u.perfs.dubiousPuzzle && !ctx.is(u)) st.rating("?")
if (isPuzzle && u.perfs.dubiousPuzzle && !ctx.is(u)) st.rating(strong("?"))
else
st.rating(
if (perf.glicko.clueless) strong("?")

View File

@ -512,7 +512,7 @@ object Quote {
"It is not a move, even the best move that you must seek, but a realizable plan.",
"Eugene Znosko-Borovsky"
),
new Quote("Those who say they understand chess, understand nothing.", "Robert Hubner"),
new Quote("Those who say they understand chess, understand nothing.", "Robert Hübner"),
new Quote("Good offense and good defense both begin with good development.", "Bruce A. Moon"),
new Quote(
"Botvinnik tried to take the mystery out of chess, always relating it to situations in ordinary life. He used to call chess a typical inexact problem similar to those which people are always having to solve in everyday life.",

View File

@ -22,7 +22,7 @@ object Dependencies {
val autoconfig = "io.methvin.play" %% "autoconfig-macros" % "0.3.2" % "provided"
val scalatest = "org.scalatest" %% "scalatest" % "3.1.0" % Test
val uaparser = "org.uaparser" %% "uap-scala" % "0.13.0"
val specs2 = "org.specs2" %% "specs2-core" % "4.12.3" % Test
val specs2 = "org.specs2" %% "specs2-core" % "4.12.6" % Test
val apacheText = "org.apache.commons" % "commons-text" % "1.9"
val bloomFilter = "com.github.alexandrnikitin" %% "bloom-filter" % "0.13.1"