Update season number to 11, and move trade deadline to week 13 on schedule view

This commit is contained in:
Peter 2024-12-02 17:10:00 -06:00
parent b7e78aa8bc
commit dff053fa77
4 changed files with 13 additions and 6 deletions

View File

@ -5,13 +5,13 @@
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta property="og:title" content="SBa Season 10" />
<meta property="og:title" content="SBa Season 11" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://sba.manticorum.com" />
<meta property="og:image" content="https://sba.manticorum.com/sba-network.png" />
<meta property="og:description" content="The home of the Strat-o-matic Baseball Association" />
<meta name="theme-color" content="#A6CE39">
<title>SBa Season 10</title>
<title>SBa Season 11</title>
</head>
<body>

View File

@ -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

View File

@ -2,12 +2,12 @@
<div class="rules-view centerDiv">
<div class="row">
<div class="col-sm-12">
<h1>Season 10 Rules and Guidelines</h1>
<h1>Season {{ CURRENT_SEASON }} Rules and Guidelines</h1>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<h2>Season 10 Rules Reference</h2>
<h2>Season {{ CURRENT_SEASON }} Rules Reference</h2>
<a target="_blank" href="https://docs.google.com/document/d/1bY3vWcoFRh8noOE_QdSMLXrqbG4tgn7jdCCNq0uoLYU">
View in Google Docs
</a>
@ -27,7 +27,14 @@
</template>
<script lang="ts">
import { CURRENT_SEASON } from '@/services/utilities'
export default {
name: 'RulesView',
data() {
return {
CURRENT_SEASON
}
}
}
</script>

View File

@ -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'