From 5f0a7dc6b046f66f1ebfa931772531e870c125ce Mon Sep 17 00:00:00 2001 From: Rene Vergara Date: Thu, 9 May 2024 14:09:35 -0500 Subject: [PATCH] Version bump --- app/Main.hs | 2 +- src/Zenith/CLI.hs | 3 ++- zenith.cabal | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/Main.hs b/app/Main.hs index eb13ce7..5911cfc 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -221,7 +221,6 @@ main = do } (root nodeUser nodePwd) "cli" -> runZenithCLI myConfig - "sync" -> testSync myConfig "rescan" -> clearSync myConfig _ -> printUsage else printUsage @@ -232,3 +231,4 @@ printUsage = do putStrLn "Available commands:" putStrLn "legacy\tLegacy CLI for zcashd" putStrLn "cli\tCLI for zebrad" + putStrLn "rescan\tRescan the existing wallet(s)" diff --git a/src/Zenith/CLI.hs b/src/Zenith/CLI.hs index 4dabde1..73409e8 100644 --- a/src/Zenith/CLI.hs +++ b/src/Zenith/CLI.hs @@ -346,7 +346,8 @@ drawUI s = [splashDialog s, helpDialog s, displayDialog s, inputDialog s, ui s] titleAttr (str " _____ _ _ _ \n|__ /___ _ __ (_) |_| |__\n / // _ \\ '_ \\| | __| '_ \\\n / /| __/ | | | | |_| | | |\n/____\\___|_| |_|_|\\__|_| |_|") <=> - C.hCenter (withAttr titleAttr (str "Zcash Wallet v0.5.0.0")) <=> + C.hCenter + (withAttr titleAttr (str "Zcash Wallet v0.5.1.0-beta")) <=> C.hCenter (withAttr blinkAttr $ str "Press any key...")) else emptyWidget capCommand :: String -> String -> Widget Name diff --git a/zenith.cabal b/zenith.cabal index 12e0b6c..3101182 100644 --- a/zenith.cabal +++ b/zenith.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: zenith -version: 0.5.0.0 +version: 0.5.1.0-beta license: MIT license-file: LICENSE author: Rene Vergara