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
11 changes: 10 additions & 1 deletion changelog.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
// Version tracking
export const APP_VERSION = '1.0.23';
export const APP_VERSION = '1.0.24';

export const CHANGELOG = {
'1.0.24': {
date: '2026-02-02',
changes: {
features: [
'Add Discover More link to info dialog',
'Add auto-open-nominations',
],
},
},
'1.0.23': {
date: '2026-02-02',
changes: {
Expand Down
52 changes: 52 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,16 @@
>00</span
>
</div>
<div
id="nominationsCountdown"
class="nominations-countdown"
role="status"
aria-live="polite"
aria-label="Time until nominations open"
hidden
>
Nominations open in <span id="nominationsCountdownSeconds">0</span>s
</div>
<button id="startBtn" aria-label="Start or pause timer">
<span class="button-content">
<span class="button-text">⏰ Wake Up!</span>
Expand Down Expand Up @@ -394,6 +404,20 @@ <h3>Game Setup</h3>
<span class="info-value-note">(plus nominations)</span>
</span>
</div>
<label class="auto-nominations-row">
<span class="auto-nominations-label">
<input type="checkbox" id="autoOpenNominations" />
Automatically open nominations after
</span>
<select
id="autoOpenNominationsDelay"
class="auto-nominations-delay-select"
>
<option value="30">30s</option>
<option value="60" selected>60s</option>
<option value="90">90s</option>
</select>
</label>
</div>
</div>

Expand Down Expand Up @@ -483,6 +507,25 @@ <h3>Sound Effects</h3>
</button>
</div>
</label>
<label>
<span>Nominations Open</span>
<div class="sound-selection">
<select id="nominationsOpenSound">
<option value="nominations-open-laura.mp3">Laura</option>
<option value="nominations-open-russell.mp3">
Russell
</option>
<option value="nominations-open-serafina.mp3">
Serafina
</option>
</select>
<button class="preview-sound" data-type="nominations-open">
<svg viewBox="0 0 24 24" width="16" height="16">
<path fill="currentColor" d="M8 5v14l11-7z" />
</svg>
</button>
</div>
</label>
</div>
</div>

Expand Down Expand Up @@ -672,6 +715,15 @@ <h2>About Tower Timer</h2>
/>
</a>
</div>
<p class="main-site-link">
<a
href="https://arcane-scripts.net/"
target="_blank"
rel="noopener noreferrer"
>
Discover more on the main Arcane Scripts site
</a>
</p>
<p class="disclaimer">
This timer is an open source project and is not affiliated with
<a
Expand Down
Loading