mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
3.13.0
This commit is contained in:
commit
2a9d9c739f
7 changed files with 26 additions and 18 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -1,14 +1,22 @@
|
|||
# Release Notes
|
||||
|
||||
======
|
||||
### Unreleased changes
|
||||
## Upcomming Version
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
### Version 3.13.0
|
||||
|
||||
- Correcting the print when ST assigns roles (adding spaces)
|
||||
- Changing the default value of "isNightOrder"
|
||||
|
||||
---
|
||||
### Version 3.12.0
|
||||
Printing the number of alive non-Travellers
|
||||
Adding the picture leaf-top6.png
|
||||
Some corrections in the jinxes (in French)
|
||||
Correcting Atheist's french description
|
||||
- Printing the number of alive non-Travellers
|
||||
- Adding the picture leaf-top6.png
|
||||
- Some corrections in the jinxes (in French)
|
||||
- Correcting Atheist's french description
|
||||
|
||||
---
|
||||
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "townsquare",
|
||||
"version": "3.12.0",
|
||||
"version": "3.13.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "townsquare",
|
||||
"version": "3.12.0",
|
||||
"version": "3.13.0",
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.32",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "townsquare",
|
||||
"version": "3.12.0",
|
||||
"version": "3.13.0",
|
||||
"description": "Blood on the Clocktower Town Square",
|
||||
"author": "Pingumaskt",
|
||||
"scripts": {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
locale.modal.roles.titleStart +
|
||||
nonTravelers +
|
||||
locale.modal.roles.titleEnd
|
||||
}}:
|
||||
}}
|
||||
</h3>
|
||||
<ul class="tokens" v-for="(teamRoles, team) in roleSelection" :key="team">
|
||||
<li class="count" :class="[team]">
|
||||
|
|
|
@ -103,7 +103,7 @@ export default new Vuex.Store({
|
|||
state: {
|
||||
grimoire: {
|
||||
isNight: false,
|
||||
isNightOrder: true,
|
||||
isNightOrder: false,
|
||||
isRinging: false,
|
||||
isPublic: true,
|
||||
isMenuOpen: false,
|
||||
|
|
|
@ -221,12 +221,12 @@
|
|||
"otherTravelers": "Other Travelers"
|
||||
},
|
||||
"roles": {
|
||||
"titleStart": "Select the characters for",
|
||||
"titleEnd": "players:",
|
||||
"titleStart": "Select the characters for ",
|
||||
"titleEnd": " players:",
|
||||
"warning":"Warning: there are characters selected that modify the game setup! The randomizer does not account for these characters.",
|
||||
"allowMultiple": "Allow duplicate characters",
|
||||
"assignStart": "Assign ",
|
||||
"assignEnd": "characters randomly",
|
||||
"assignEnd": " characters randomly",
|
||||
"shuffle": "Shuffle characters"
|
||||
},
|
||||
"voteHistory":{
|
||||
|
|
|
@ -221,12 +221,12 @@
|
|||
"otherTravelers": "Autres Voyageurs"
|
||||
},
|
||||
"roles": {
|
||||
"titleStart": "Selectionner les personnages pour",
|
||||
"titleEnd": "joueurs:",
|
||||
"warning":"Attention: certains des personnages sélectionnés changent la distribution de début de partie ! La distribution aléatoire n'effectue pas elle même ces changements, pensez à modifier les attributions en conséquence avant d'envoyer les rôles aux joueurs.",
|
||||
"titleStart": "Selectionner les personnages pour ",
|
||||
"titleEnd": " joueurs:",
|
||||
"warning":"Attention: certains des personnages sélectionnés changent la distribution de début de partie ! La distribution aléatoire n'effectue pas elle-même ces changements, pensez à modifier les attributions en conséquence avant d'envoyer les rôles aux joueurs.",
|
||||
"allowMultiple": "Permettre les doublons de personnages",
|
||||
"assignStart": "Attribuer aléatoirement ces ",
|
||||
"assignEnd": "rôles",
|
||||
"assignEnd": " rôles",
|
||||
"shuffle": "Tirer les personnages au sort"
|
||||
},
|
||||
"voteHistory":{
|
||||
|
|
Loading…
Add table
Reference in a new issue