X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FSettings.vue;h=7e90b0f21a1b120f81754c20f26456ac5f23cc4b;hb=aae89b49a846b2c101d74db7dff9151392d6db34;hp=d01f2cd44ea12f95cd44404f670a2fc50d4d697b;hpb=db1f1f9adb920605c7a16b060a7737e54636ee08;p=vchess.git diff --git a/client/src/components/Settings.vue b/client/src/components/Settings.vue index d01f2cd4..7e90b0f2 100644 --- a/client/src/components/Settings.vue +++ b/client/src/components/Settings.vue @@ -47,11 +47,24 @@ 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="setGotonext") + | {{ st.tr["Show next game after move?"] }} + input#setGotonext( + type="checkbox" + v-model="st.settings.gotonext" + ) + 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"] }}