From fabf02942a6fbc3004f6fe5894a489cbbe84fe42 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Mon, 7 Sep 2020 14:29:03 +0530 Subject: [PATCH] Minor bug fix Signed-off-by: Joseph Nuthalapati --- CHANGELOG.md | 4 ++++ nimcoon.nimble | 2 +- src/nimcoon.nim | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2223b0c..8ae8caf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.6.1 + +- Minor bug fix + # 0.6.0 - Scrape from YouTube directly, no dependence on Invidious instances diff --git a/nimcoon.nimble b/nimcoon.nimble index e76c22e..d5eccc0 100644 --- a/nimcoon.nimble +++ b/nimcoon.nimble @@ -1,6 +1,6 @@ # Package -version = "0.6.0" +version = "0.6.1" author = "Joseph Nuthalapati" description = "A command-line YouTube player and more" license = "GPL-3.0" diff --git a/src/nimcoon.nim b/src/nimcoon.nim index e1cbb23..4f75d82 100644 --- a/src/nimcoon.nim +++ b/src/nimcoon.nim @@ -36,7 +36,7 @@ proc parseArguments(): CommandLineOptions = (searchQuery, options) -proc isValidOptions(options: Options): bool = +proc isValidOptions*(options: Options): bool = # Check for invalid combinations of options var invalidCombinations = [("musicOnly", "fullScreen"), ("download", "fullScreen")] result = true -- 2.43.0