mirror of
https://github.com/p-ranav/indicators.git
synced 2025-12-15 11:58:52 +08:00
Updated enums to lowercase per the core guidelines. Bumped to wip v1.7
This commit is contained in:
@@ -5,7 +5,7 @@ int main() {
|
||||
using namespace indicators;
|
||||
BlockProgressBar bar1{
|
||||
option::BarWidth{50},
|
||||
option::ForegroundColor{Color::YELLOW},
|
||||
option::ForegroundColor{Color::yellow},
|
||||
option::ShowElapsedTime{true},
|
||||
option::ShowRemainingTime{true},
|
||||
option::PrefixText{"Progress Bar #1 "}
|
||||
@@ -13,7 +13,7 @@ int main() {
|
||||
|
||||
BlockProgressBar bar2{
|
||||
option::BarWidth{50},
|
||||
option::ForegroundColor{Color::CYAN},
|
||||
option::ForegroundColor{Color::cyan},
|
||||
option::ShowElapsedTime{true},
|
||||
option::ShowRemainingTime{true},
|
||||
option::PrefixText{"Progress Bar #2 "}
|
||||
@@ -21,7 +21,7 @@ int main() {
|
||||
|
||||
BlockProgressBar bar3{
|
||||
option::BarWidth{50},
|
||||
option::ForegroundColor{Color::RED},
|
||||
option::ForegroundColor{Color::red},
|
||||
option::ShowElapsedTime{true},
|
||||
option::ShowRemainingTime{true},
|
||||
option::PrefixText{"Progress Bar #3 "}
|
||||
|
||||
Reference in New Issue
Block a user