Skip to content

Commit

Permalink
fixed timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashwagandhae committed Oct 29, 2023
1 parent ec1b0a5 commit 567c228
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
- Added crossing out arguments (u/Low_Road_6511)
- Added tab switching shortcut (u/SuperQuivocal)
- Merged upload & download buttons into file button
- Added sharing (u/MeasurementFeisty889 & u/OutrageousAd9355)
- Added auto-save
- Added timer
10 changes: 10 additions & 0 deletions src/lib/models/debateStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,21 @@ export const debateStyles: {
time: 8 * 60 * 1000,
secondary: false
},
{
name: 'CX',
time: 3 * 60 * 1000,
secondary: false
},
{
name: '2NC',
time: 8 * 60 * 1000,
secondary: true
},
{
name: 'CX',
time: 3 * 60 * 1000,
secondary: true
},
{
name: '1NR',
time: 5 * 60 * 1000,
Expand Down
3 changes: 1 addition & 2 deletions src/routes/app/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,10 @@
let switchSpeakers = false;
// TODO:
// add tab switch keyboard shortcut
// add cross out
// add command K
// add command f
// add capitalization
// fix pf timer speaking order
</script>

<svelte:body
Expand Down

0 comments on commit 567c228

Please sign in to comment.