Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion changelog.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
// Version tracking
export const APP_VERSION = '1.0.28';
export const APP_VERSION = '1.0.29';

export const CHANGELOG = {
'1.0.29': {
date: '2026-05-21',
changes: {
features: [
'Show the current time underneath the Day display on the timer screen',
'Add Time settings tab to show or hide the clock and choose 12-hour or 24-hour format',
'Add optional session countdown under Wake Up with configurable end time',
],
},
},
'1.0.28': {
date: '2026-04-02',
changes: {
Expand Down
81 changes: 71 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,13 @@

<div class="container">
<div class="timer-display" role="timer" aria-live="polite">
<output class="day-display" aria-label="Current game day">
<span id="currentDay">-</span>
<div class="pace-indicator">Normal</div>
</output>
<div class="day-info">
<output class="day-display" aria-label="Current game day">
<span id="currentDay">-</span>
<div class="pace-indicator">Normal</div>
</output>
<time id="currentTime" class="current-time" aria-label="Current time"></time>
</div>
<div class="time" aria-label="Timer display">
<span id="minutes" aria-label="minutes">00</span>:<span
id="seconds"
Expand All @@ -158,12 +161,21 @@
>
Nominations open in <span id="nominationsCountdownSeconds">0</span>s
</output>
<button id="startBtn" aria-label="Start or pause timer">
<span class="button-content">
<span class="button-text">⏰ Wake Up!</span>
<span id="wakeUpShortcutHint" class="shortcut-hint"></span>
</span>
</button>
<div class="timer-actions">
<button id="startBtn" aria-label="Start or pause timer">
<span class="button-content">
<span class="button-text">⏰ Wake Up!</span>
<span id="wakeUpShortcutHint" class="shortcut-hint"></span>
</span>
</button>
<output
id="sessionCountdown"
class="session-countdown"
aria-live="polite"
aria-label="Time until session end"
hidden
></output>
</div>
</div>
<fieldset class="controls">
<legend>Timer controls</legend>
Expand Down Expand Up @@ -362,6 +374,7 @@ <h2>Settings</h2>
<div class="settings-tabs">
<button class="tab-button active" data-tab="game">Game</button>
<button class="tab-button" data-tab="display">Display</button>
<button class="tab-button" data-tab="time">Time</button>
<button class="tab-button" data-tab="effects">Effects</button>
<button class="tab-button" data-tab="music">Music</button>
<button class="tab-button" data-tab="shortcuts">Shortcuts</button>
Expand Down Expand Up @@ -472,6 +485,54 @@ <h3>Display Settings</h3>
</div>
</div>

<!-- Time Settings Panel -->
<div class="settings-panel" data-panel="time">
<div class="setting-group">
<h3>Clock Display</h3>
<label>
<span>Show current time</span>
<input type="checkbox" id="showCurrentTime" checked />
</label>
<label>
<span>24-hour (15:06)</span>
<input
type="radio"
name="clockFormat"
id="clockFormat24"
value="24"
checked
/>
</label>
<label>
<span>12-hour (3:06 PM)</span>
<input
type="radio"
name="clockFormat"
id="clockFormat12"
value="12"
/>
</label>
</div>
<div class="setting-group">
<h3>Session Countdown</h3>
<label>
<span>Show session countdown</span>
<input type="checkbox" id="showSessionCountdown" />
</label>
<label id="sessionEndTimeLabel">
<span>Session end time</span>
<div class="session-end-time-inputs">
<select id="sessionEndHour" class="session-end-select"></select>
<span class="session-end-separator">:</span>
<select
id="sessionEndMinute"
class="session-end-select"
></select>
</div>
</label>
</div>
</div>

<!-- Sound Effects Panel -->
<div class="settings-panel" data-panel="effects">
<div class="setting-group">
Expand Down
Loading
Loading