diff options
author | Colin Okay <okay@toyful.space> | 2022-03-01 06:20:14 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-03-01 06:20:14 -0600 |
commit | 850f5f38ad15871c92f4d800e757c844daf2f077 (patch) | |
tree | 70d5d1395cf7d643bf035ff67ac6a635018e22f1 | |
parent | f4404c0a0f679825a148ae1ec4f4b1e46a0c9d01 (diff) |
removed unimplemented option
-rw-r--r-- | build-app.lisp | 7 | ||||
-rw-r--r-- | oneliners.cli.asd | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/build-app.lisp b/build-app.lisp index 72e5f5b..0f62f62 100644 --- a/build-app.lisp +++ b/build-app.lisp @@ -40,12 +40,7 @@ my1337pw.") (flag :long-name "not-flagged" :description "Request that no flagged oneliners are returned.") (flag :long-name "newest" - :description "Return newest oneliners. Ignores TAGs. Respects --limit up to server specified maxiumum.") - (stropt :long-name "brief-like" - :argument-name :optional - :default-value ".*" - :argument-name "REGEX" - :description "A regular expression that must match some portion of the oneliner's title.")) + :description "Return newest oneliners. Ignores TAGs. Respects --limit up to server specified maxiumum.")) (text :contents " ") (group (:header "ONELINER EXECUTION OPTIONS") (text :contents "Runs the Nth search result with possible arguments ARGS.") diff --git a/oneliners.cli.asd b/oneliners.cli.asd index f7b4a4c..47d0c1c 100644 --- a/oneliners.cli.asd +++ b/oneliners.cli.asd @@ -1,5 +1,5 @@ (defsystem "oneliners.cli" - :version "0.1.0" + :version "0.2.0" :author "Colin Okay" :license "AGPLv3" :depends-on ("trivial-clipboard" |