From 640cef4e1440deada4e6dbcdaf0411cb5052c3e7 Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Wed, 1 Dec 2021 15:02:23 -0600 Subject: [PATCH 1/4] Removed the state for today's date. Set the initial selected month to today's date. --- contexts/CalenderContext.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/contexts/CalenderContext.tsx b/contexts/CalenderContext.tsx index f8eb3e6..dc584fd 100644 --- a/contexts/CalenderContext.tsx +++ b/contexts/CalenderContext.tsx @@ -33,11 +33,8 @@ const CalenderContextProvider = ({ }: { children: ReactNode; }): JSX.Element => { - // Today's date - const [today] = useState(new Date()); - // Selected month & year - const [selectedMonth, setSelectedMonth] = useState(today); + const [selectedMonth, setSelectedMonth] = useState(new Date()); const [endOfSelectedMonth, SetEndOfSelectedDMonth] = useState( getDate(endOfMonth(selectedMonth)) ); -- 2.49.1 From 56b15decac524faebea5a3990d59c125d46ab1d0 Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Wed, 1 Dec 2021 15:04:04 -0600 Subject: [PATCH 2/4] Update meta description. --- pages/_document.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/_document.tsx b/pages/_document.tsx index 8f3a61e..db979dd 100644 --- a/pages/_document.tsx +++ b/pages/_document.tsx @@ -4,7 +4,8 @@ import { ColorModeScript } from "@chakra-ui/react"; import AppTheme from "../theme/AppTheme"; const description = - "Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like."; + // "Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like."; + "Pre-alpha preview of the behavior and progress tracker for ABDLs and babyfurs."; class Document extends NextDocument { render(): JSX.Element { -- 2.49.1 From 89f0ea7dcdba492acd8b9de6f5541f3522b6efd5 Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Wed, 1 Dec 2021 15:04:16 -0600 Subject: [PATCH 3/4] Update version info. --- theme/layout/Header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/layout/Header.tsx b/theme/layout/Header.tsx index 2fdda23..67a27bc 100644 --- a/theme/layout/Header.tsx +++ b/theme/layout/Header.tsx @@ -13,7 +13,7 @@ import MobileNav from "./MobileNav"; const Header = (): JSX.Element => { const appName = "LCM Potty Chart"; - const appVersion = "v0.0.3.0-pre-alpha"; + const appVersion = "v0.0.3.1-pre-alpha"; // Add transparency while not at the top of the page. const [transparentNavbar, setTransparentNavbar] = useState(false); -- 2.49.1 From aa8c4084045652d29c593f727537179cca708ea6 Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Wed, 1 Dec 2021 15:05:51 -0600 Subject: [PATCH 4/4] Update version and homepage. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 957725d..489391b 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "private": true, "name": "lucid-creations-media-potty-chart", - "homepage": "https://github.com/LucidCreationsMedia/", - "version": "0.1.0", + "homepage": "https://lucidcreations.media/introducing-code-name-potty-chart/", + "version": "0.0.3.1-pre-alpha", "author": { "name": "Lucid Creations Media", "url": "https://lucidcreations.media", -- 2.49.1