-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: appversion in export, bump version to 3.0.0
- Loading branch information
1 parent
91bba72
commit a1d1e02
Showing
5 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,11 @@ | |
* Defines various constants used elsewhere. | ||
* | ||
* Copyright (c) 2024, Michael Pascale <[email protected]> | ||
* Last modified: 2023-07-26 | ||
* Last modified: 2024-08-26 | ||
*/ | ||
|
||
export const VERSION = '3.0.0'; | ||
|
||
// Time conversion factors. | ||
export const CVT_MS_S = 1000; | ||
export const CVT_S_MIN = 60; | ||
|
@@ -17,14 +19,14 @@ export const CVT_MS_DAY = CVT_MS_S * CVT_S_MIN * CVT_MIN_HR * CVT_HR_DAY; | |
export const CAL_HEIGHT_DIFF = 205; | ||
|
||
|
||
export const COLOR_WHITE = '#FFFFFF' | ||
export const COLOR_TEXT = '#15141A' | ||
export const COLOR_WHITE = '#FFFFFF'; | ||
export const COLOR_TEXT = '#15141A'; | ||
|
||
export const COLOR_PURPLE = '#485FC7' | ||
export const COLOR_ORANGE = '#E67975' | ||
export const COLOR_YELLOW = '#F7DBA7' | ||
export const COLOR_GREEN = '#041F1E' | ||
export const COLOR_BROWN = '#5A352A' | ||
export const COLOR_PURPLE = '#485FC7'; | ||
export const COLOR_ORANGE = '#E67975'; | ||
export const COLOR_YELLOW = '#F7DBA7'; | ||
export const COLOR_GREEN = '#041F1E'; | ||
export const COLOR_BROWN = '#5A352A'; | ||
|
||
// Regular Expressions for input validation. | ||
export const RGX_INTEGER = /^\d+$/; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters