]> njoseph.me Git - nimcoon.git/commitdiff
Minor bug fix 0.6.1
authorJoseph Nuthalapati <njoseph@riseup.net>
Mon, 7 Sep 2020 08:59:03 +0000 (14:29 +0530)
committerJoseph Nuthalapati <njoseph@riseup.net>
Mon, 7 Sep 2020 08:59:03 +0000 (14:29 +0530)
Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net>
CHANGELOG.md
nimcoon.nimble
src/nimcoon.nim

index 2223b0c8a9e11eee33a641da4a529234c16202ee..8ae8cafdb8c3a4651f0fb25c298bfc45fd1e95a8 100644 (file)
@@ -1,3 +1,7 @@
+# 0.6.1
+
+- Minor bug fix
+
 # 0.6.0
 
 - Scrape from YouTube directly, no dependence on Invidious instances
index e76c22e5c8830728d4e3d1cec3364b21d9841e20..d5eccc07a3de1bd0847ecc8216d67f153fc1444a 100644 (file)
@@ -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"
index e1cbb23bf562bf03cd851fd5b6a67f7d10a2cb94..4f75d826f6d640fa091949edbce364370c13addf 100644 (file)
@@ -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