Remove deck size from the table
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
- [x] Event log button should be the same size and position when expanded and collapsed in all screens
|
- [x] Event log button should be the same size and position when expanded and collapsed in all screens
|
||||||
- [x] Align the "Current Difficulty" and "Successes" boxes
|
- [x] Align the "Current Difficulty" and "Successes" boxes
|
||||||
- [x] Don't have dev mode toggling appear in the event log
|
- [x] Don't have dev mode toggling appear in the event log
|
||||||
- [ ] Remove display of current deck size
|
- [x] Remove display of current deck size
|
||||||
- [ ] Voting status in the between-scenes phase should be visual, not text-based
|
- [ ] Voting status in the between-scenes phase should be visual, not text-based
|
||||||
- [ ] Players should be able to see who they voted for
|
- [ ] Players should be able to see who they voted for
|
||||||
- [ ] The "ready" button between scenes is redundant. Allow players to vote, and allow them to change their vote, but once all players have voted, display the result and move on
|
- [ ] The "ready" button between scenes is redundant. Allow players to vote, and allow them to change their vote, but once all players have voted, display the result and move on
|
||||||
|
|||||||
@@ -221,11 +221,7 @@
|
|||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.deck-counter {
|
|
||||||
font-size: 0.85rem;
|
|
||||||
color: var(--accent);
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* --- Obstacles --- */
|
/* --- Obstacles --- */
|
||||||
.obstacles-container {
|
.obstacles-container {
|
||||||
|
|||||||
@@ -56,7 +56,6 @@
|
|||||||
<div class="card glass-panel obstacle-list-card">
|
<div class="card glass-panel obstacle-list-card">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h3>🌊 Obstacles</h3>
|
<h3>🌊 Obstacles</h3>
|
||||||
<span class="deck-counter">🎴 Deck: {state.game.deck_cards ? JSON.parse(state.game.deck_cards).length : 0} cards left</span>
|
|
||||||
</div>
|
</div>
|
||||||
<ObstacleBoard {state} />
|
<ObstacleBoard {state} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -6,10 +6,11 @@
|
|||||||
// - Add a CHANGELOG entry only when a commit changes something players can
|
// - Add a CHANGELOG entry only when a commit changes something players can
|
||||||
// see. Skip refactors, tests, and tooling. Keep wording player-facing.
|
// see. Skip refactors, tests, and tooling. Keep wording player-facing.
|
||||||
|
|
||||||
export const VERSION = 28;
|
export const VERSION = 29;
|
||||||
|
|
||||||
// Newest first. Each entry: { version, date: 'YYYY-MM-DD', changes: [string, ...] }.
|
// Newest first. Each entry: { version, date: 'YYYY-MM-DD', changes: [string, ...] }.
|
||||||
export const CHANGELOG = [
|
export const CHANGELOG = [
|
||||||
|
{ version: 29, date: '2026-09-04', changes: ['Removed the remaining deck count from the table.'] },
|
||||||
{ version: 28, date: '2026-09-04', changes: ['The Event Log toggle keeps the same size when opened or closed.', 'Dev Mode changes no longer clutter the Event Log.'] },
|
{ version: 28, date: '2026-09-04', changes: ['The Event Log toggle keeps the same size when opened or closed.', 'Dev Mode changes no longer clutter the Event Log.'] },
|
||||||
{ version: 27, date: '2026-09-04', changes: ['Shorter labels make the table easier to scan.', 'Difficulty and Successes now line up side by side, including on small screens.'] },
|
{ version: 27, date: '2026-09-04', changes: ['Shorter labels make the table easier to scan.', 'Difficulty and Successes now line up side by side, including on small screens.'] },
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user