X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FSettings.vue;h=6adf9b0bdaf405c4bb3125498c6615ca9d598c67;hb=f35b9960e1c527fc400ebac85321bd4712459da3;hp=d01f2cd44ea12f95cd44404f670a2fc50d4d697b;hpb=db1f1f9adb920605c7a16b060a7737e54636ee08;p=vchess.git diff --git a/client/src/components/Settings.vue b/client/src/components/Settings.vue index d01f2cd4..6adf9b0b 100644 --- a/client/src/components/Settings.vue +++ b/client/src/components/Settings.vue @@ -47,11 +47,17 @@ div option(value="chesstempo") {{ st.tr["blue"] }} fieldset label(for="setSound") - | {{ st.tr["Sound on new game?"] }} + | {{ st.tr["Sound alert when game starts?"] }} input#setSound( type="checkbox" v-model="st.settings.sound" ) + fieldset + label(for="setRandomness") {{ st.tr["Randomness against computer"] }} + select#setRandomness(v-model="st.settings.randomness") + option(value="0") {{ st.tr["Deterministic"] }} + option(value="1") {{ st.tr["Symmetric random"] }} + option(value="2") {{ st.tr["Asymmetric random"] }}