From dff053fa77742a678a750826b0b39603111b2381 Mon Sep 17 00:00:00 2001 From: Peter Date: Mon, 2 Dec 2024 17:10:00 -0600 Subject: [PATCH] Update season number to 11, and move trade deadline to week 13 on schedule view --- index.html | 4 ++-- src/services/utilities.ts | 2 +- src/views/RulesView.vue | 11 +++++++++-- src/views/ScheduleView.vue | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 3aec90c..07ad976 100644 --- a/index.html +++ b/index.html @@ -5,13 +5,13 @@ - + - SBa Season 10 + SBa Season 11 diff --git a/src/services/utilities.ts b/src/services/utilities.ts index 02055e5..0a3606a 100644 --- a/src/services/utilities.ts +++ b/src/services/utilities.ts @@ -4,7 +4,7 @@ dayjs.extend(customParseFormat) export const SITE_URL = 'https://sba.manticorum.com' -export const CURRENT_SEASON = 10 +export const CURRENT_SEASON = 11 export const MODERN_STAT_ERA_START = 8 diff --git a/src/views/RulesView.vue b/src/views/RulesView.vue index a14a09f..299bd2a 100644 --- a/src/views/RulesView.vue +++ b/src/views/RulesView.vue @@ -2,12 +2,12 @@
-

Season 10 Rules and Guidelines

+

Season {{ CURRENT_SEASON }} Rules and Guidelines

-

Season 10 Rules Reference

+

Season {{ CURRENT_SEASON }} Rules Reference

View in Google Docs @@ -27,7 +27,14 @@ \ No newline at end of file diff --git a/src/views/ScheduleView.vue b/src/views/ScheduleView.vue index eba3a5c..7edfc30 100644 --- a/src/views/ScheduleView.vue +++ b/src/views/ScheduleView.vue @@ -225,7 +225,7 @@ export default { weekSpecialInfo(weekNumber: number): string { if (weekNumber === 1) return 'Spring Begins' if (weekNumber === 6) return 'Summer Begins' - if (weekNumber === 14) return 'Trade Deadline' + if (weekNumber === 13) return 'Trade Deadline' if (weekNumber === 15) return 'Fall Begins' if (weekNumber === 18) return 'Regular Season Ends' if (weekNumber === 19) return 'Division Series - Best of 5'