2 Commits
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog for passman
## current
- minor UI tweak
- minor refactoring
## 0.3.1.1
- updated documentation to on longer mention GitHub
+1 -1
View File
@@ -142,7 +142,7 @@ buildData = do
searchServ :: S.StateT Status IO ()
searchServ = do
svc <- req $ prompt "service name: " reqResp
svc <- req $ prompt "\nservice name: " reqResp
db <- S.gets $ view database
case pwSearch svc db of
[] -> do
+2 -2
View File
@@ -105,9 +105,9 @@ confirm :: String -> Request Bool
confirm x = prompt (x ++ " (y/n): ") $ reqAgree Nothing $ fmap return reqChar
loadFrom :: FilePath -> Request PWDatabase
loadFrom path = reqDefault
loadFrom path = fromMaybe newPWDatabase <$> reqDefault
(reqIO (decodeFileStrict path))
(Just newPWDatabase) >>= (return . fromMaybe newPWDatabase)
(Just newPWDatabase)
save :: S.StateT Status IO ()
save = do