mirror of https://github.com/bra1n/townsquare.git
show vote results at the end of a vote
This commit is contained in:
parent
85a7e259ea
commit
ac70021767
|
@ -1,5 +1,12 @@
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
|
## Version 2.1.1
|
||||||
|
- show vote results at the end of a vote
|
||||||
|
- fixed global reminders not showing up anymore when the associated role is assigned to a player
|
||||||
|
- adjusted backend metrics
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Version 2.1.0
|
## Version 2.1.0
|
||||||
- reduced countdown volume by 10db
|
- reduced countdown volume by 10db
|
||||||
- added a mute toggle to the Grimoire menu (currently only silences the countdown)
|
- added a mute toggle to the Grimoire menu (currently only silences the countdown)
|
||||||
|
|
|
@ -22,14 +22,14 @@
|
||||||
<em>majority</em>.
|
<em>majority</em>.
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<div v-if="session.isVoteInProgress">
|
<div v-if="session.isVoteInProgress || session.lockedVote > 1">
|
||||||
<em class="blue" v-if="voters.length">{{ voters.join(", ") }} </em>
|
<em class="blue" v-if="voters.length">{{ voters.join(", ") }} </em>
|
||||||
<span v-else>nobody</span>
|
<span v-else>nobody</span>
|
||||||
had their hand <em>UP</em>
|
had their hand <em>UP</em>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<template v-if="!session.isSpectator">
|
<template v-if="!session.isSpectator">
|
||||||
<div v-if="!session.isVoteInProgress">
|
<div v-if="!session.isVoteInProgress && session.lockedVote < 1">
|
||||||
Time per player:
|
Time per player:
|
||||||
<font-awesome-icon
|
<font-awesome-icon
|
||||||
@mousedown.prevent="setVotingSpeed(-500)"
|
@mousedown.prevent="setVotingSpeed(-500)"
|
||||||
|
|
Loading…
Reference in New Issue