X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FSettings.vue;h=b9a2b6374fdd074cf9c031f0f5a4691c6c88ffaa;hb=dfeb96ea90e880a2557cbb5953dbb7258c912283;hp=92b463ef14416d0f8faa6d0507706b498dbdc0b8;hpb=41c80bb63b85b2696d3925c10784c3d7bb5d2aa3;p=vchess.git diff --git a/client/src/components/Settings.vue b/client/src/components/Settings.vue index 92b463ef..b9a2b637 100644 --- a/client/src/components/Settings.vue +++ b/client/src/components/Settings.vue @@ -5,40 +5,25 @@ div aria-labelledby="settingsTitle") .card.smallpad(@change="updateSettings") label.modal-close(for="modalSettings") - h3#settingsTitle.section {{ st.tr["Preferences"] }} fieldset - label(for="setSqSize") - | {{ st.tr["Square size (in pixels). 0 for 'adaptative'"] }} - input#setSqSize(type="number" v-model="st.settings.sqSize") - fieldset - label(for="selectHints") {{ st.tr["Show move hints?"] }} - select#setHints(v-model="st.settings.hints") - option(value="0") {{ st.tr["None"] }} - option(value="1") {{ st.tr["Moves from a square"] }} - option(value="2") {{ st.tr["Pieces which can move"] }} + label(for="setHints") {{ st.tr["Show possible moves?"] }} + input#setHints(type="checkbox" v-model="st.settings.hints") fieldset label(for="setHighlight") - | {{ st.tr["Highlight squares? (Last move & checks)"] }} + | {{ st.tr["Highlight last move and checks?"] }} input#setHighlight(type="checkbox" v-model="st.settings.highlight") fieldset - label(for="setCoords") {{ st.tr["Show board coordinates?"] }} - input#setCoords(type="checkbox" v-model="st.settings.coords") - fieldset - label(for="selectColor") {{ st.tr["Board colors"] }} + label(for="setBcolor") {{ st.tr["Board colors"] }} select#setBcolor(v-model="st.settings.bcolor") option(value="lichess") {{ st.tr["brown"] }} option(value="chesscom") {{ st.tr["green"] }} option(value="chesstempo") {{ st.tr["blue"] }} fieldset - label(for="selectSound") {{ st.tr["Play sounds?"] }} + label(for="setSound") {{ st.tr["Play sounds?"] }} select#setSound(v-model="st.settings.sound") option(value="0") {{ st.tr["None"] }} option(value="1") {{ st.tr["New game"] }} option(value="2") {{ st.tr["All"] }} - fieldset - .slidecontainer - input#myRange.slider(type="range" min="0" max="100" value="50" - @input="adjustBoard")