Compare commits

..

No commits in common. "93048d60539958d8b9e79f4edb507030ca1b6b99" and "a5679cb1fc8387e9c66f8e7c7d28f363eb6332e8" have entirely different histories.

3 changed files with 4 additions and 7 deletions

View File

@ -1,12 +1,9 @@
# Changelog for mtlstats # Changelog for mtlstats
## 0.17.0.1 ## current
- fixed autocapitalization
## 0.17.0
- updated code to use brick instead of ncurses - updated code to use brick instead of ncurses
## 0.16.1 ## 0.17.0
- Don't automatically start a new game on new season - Don't automatically start a new game on new season
## 0.16.0 ## 0.16.0

View File

@ -1,5 +1,5 @@
name: mtlstats name: mtlstats
version: 0.17.0.1 version: 0.17.0
license: GPL-3.0-or-later license: GPL-3.0-or-later
author: "Jonathan Lamothe" author: "Jonathan Lamothe"
maintainer: "jlamothe1980@gmail.com" maintainer: "jlamothe1980@gmail.com"

View File

@ -127,7 +127,7 @@ ucStrPrompt
-- ^ The callback function for the result -- ^ The callback function for the result
-> Prompt -> Prompt
ucStrPrompt pStr act = (strPrompt pStr act) ucStrPrompt pStr act = (strPrompt pStr act)
{ promptProcessChar = \ch -> editContentsL %~ insertChar (toUpper ch) } { promptProcessChar = \ch -> editContentsL %~ insertChar ch }
-- | Creates a prompt which forces capitalization of input to -- | Creates a prompt which forces capitalization of input to
-- accomodate a player or goalie name -- accomodate a player or goalie name