Review and update the suggested game durations

Blitz Chess is typically five minutes per player (10 minutes total). If
you want to go faster than that, you can always set a custom duration.

Most players will probably be most comfortable with a longer limit such
as 90 minutes/player.
This commit is contained in:
Michael Catanzaro 2013-07-27 13:43:21 -05:00
parent d05c9aa1cd
commit dcbbd976d4
2 changed files with 13 additions and 9 deletions

View file

@ -65,21 +65,25 @@
<col id="1">0</col>
</row>
<row>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for game timer of one minute">One minute</col>
<col id="1">60</col>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for game timer of ten minutes">Ten minutes</col>
<col id="1">600</col>
</row>
<row>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for game timer of five minutes">Five minutes</col>
<col id="1">300</col>
</row>
<row>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for game timer of thirty minutes">30 minutes</col>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for game timer of thirty minutes">Thirty minutes</col>
<col id="1">1800</col>
</row>
<row>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for game timer of one hour">One hour</col>
<col id="1">3600</col>
</row>
<row>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for game timer of two hours">Two hours</col>
<col id="1">7200</col>
</row>
<row>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for game timer of three hours">Three hours</col>
<col id="1">10800</col>
</row>
<row>
<col id="0" translatable="yes" comments="Preferences Dialog: Combo box entry for custom game timer">Custom</col>
<col id="1">-1</col>

View file

@ -1538,9 +1538,9 @@ public class Application : Gtk.Application
if (duration >= 0)
set_duration (duration, false);
/* Default to 5 minutes when setting custom duration */
/* Default to one hour (30 minutes/player) when setting custom duration */
else if (get_duration () <= 0)
set_duration (5 * 60, false);
set_duration (60 * 60, false);
save_duration ();
}