na 1.2.67 → 1.2.68
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/lib/na/next_action.rb +1 -1
- data/lib/na/todo.rb +1 -0
- data/lib/na/version.rb +1 -1
- data/src/_README.md +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4bab4837fdfd785bf98e3cfb57be87b633b89cb96bdd113b123a32f0b36d345
|
4
|
+
data.tar.gz: b485160151d82ff3fc74725eaa481fe454aafbf82248f7fe1b8373ca17c2d2f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e294883202f7ffbf90d2aca9868cd63d9abc6509eb9fed08177b7b616e5edf9247daa38a7bc1b2bcc1501f62888dde39f7a2c7f2c473aa6159d01f231bb88e1
|
7
|
+
data.tar.gz: ed451f210ba65a9c9fe375122842d37a572abd5ffc3a0c97ec06789450bc4fab1660e4cde5e9ce1d022ba27144a6dbf815043cf7e4479720ae3b69c4da2ae80a
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
_If you're one of the rare people like me who find this useful, feel free to
|
10
10
|
[buy me some coffee][donate]._
|
11
11
|
|
12
|
-
The current version of `na` is 1.2.
|
12
|
+
The current version of `na` is 1.2.68.
|
13
13
|
|
14
14
|
`na` ("next action") is a command line tool designed to make it easy to see what your next actions are for any project, right from the command line. It works with TaskPaper-formatted files (but any plain text format will do), looking for `@na` tags (or whatever you specify) in todo files in your current folder.
|
15
15
|
|
@@ -76,7 +76,7 @@ SYNOPSIS
|
|
76
76
|
na [global options] command [command options] [arguments...]
|
77
77
|
|
78
78
|
VERSION
|
79
|
-
1.2.
|
79
|
+
1.2.68
|
80
80
|
|
81
81
|
GLOBAL OPTIONS
|
82
82
|
-a, --add - Add a next action (deprecated, for backwards compatibility)
|
data/lib/na/next_action.rb
CHANGED
@@ -579,7 +579,7 @@ module NA
|
|
579
579
|
|
580
580
|
dirs = dirs.sort_by { |d| File.basename(d) }.uniq
|
581
581
|
|
582
|
-
dirs = find_exact_dir(dirs, search)
|
582
|
+
dirs = find_exact_dir(dirs, search) unless optional == ['*']
|
583
583
|
|
584
584
|
if dirs.empty? && require_last
|
585
585
|
NA.notify("#{NA.theme[:warning]}No matches, loosening search", debug: true)
|
data/lib/na/todo.rb
CHANGED
data/lib/na/version.rb
CHANGED
data/src/_README.md
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
_If you're one of the rare people like me who find this useful, feel free to
|
10
10
|
[buy me some coffee][donate]._
|
11
11
|
|
12
|
-
The current version of `na` is <!--VER-->1.2.
|
12
|
+
The current version of `na` is <!--VER-->1.2.67<!--END VER-->.
|
13
13
|
|
14
14
|
`na` ("next action") is a command line tool designed to make it easy to see what your next actions are for any project, right from the command line. It works with TaskPaper-formatted files (but any plain text format will do), looking for `@na` tags (or whatever you specify) in todo files in your current folder.
|
15
15
|
|