X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FSettings.vue;h=7e90b0f21a1b120f81754c20f26456ac5f23cc4b;hb=9d4a02185291aad8d8af5d35c1d6a808a1e11c9f;hp=6e623ba4858d4e4185ba42de912b6c8325c5d6df;hpb=3b959cfaf3d3a28373d7ebb48d80087150a98006;p=vchess.git diff --git a/client/src/components/Settings.vue b/client/src/components/Settings.vue index 6e623ba4..7e90b0f2 100644 --- a/client/src/components/Settings.vue +++ b/client/src/components/Settings.vue @@ -52,6 +52,19 @@ div 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"] }}