diff --git a/changelog.md b/changelog.md index 7094e3e..f98bc1b 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/src/lib/models/debateStyle.ts b/src/lib/models/debateStyle.ts index a71348c..a4fb5f3 100644 --- a/src/lib/models/debateStyle.ts +++ b/src/lib/models/debateStyle.ts @@ -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, diff --git a/src/routes/app/+page.svelte b/src/routes/app/+page.svelte index 7cb778b..718b58a 100644 --- a/src/routes/app/+page.svelte +++ b/src/routes/app/+page.svelte @@ -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