na 1.2.55 → 1.2.57
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/bin/commands/next.rb +1 -1
- data/lib/na/next_action.rb +7 -2
- 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: c03dd74aa5ba19d5a9c43177cdded736a7e679634ae0adedded1875a88c838e6
|
4
|
+
data.tar.gz: 46c70464363e14637bc72324c6731b971b97b03a385a07bd16aeb7b005eaebe9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea8ad6bc44298b305cce2c77d8d6ca787bf3240f69f5494e9a580cef4d803c0b6aaa5205e75187901aba73358440192ed56ba2ff55e024a98914a02221b987ce
|
7
|
+
data.tar.gz: 8b842f443cec04f487700a8f2a31914df683c558dbb1ebcf8196d2987a8f5bb23344c60a26cbbfcac4caed8ed617a50d77634bbe80bf54d6628f7ff2e07c9987
|
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.57
|
13
13
|
.
|
14
14
|
|
15
15
|
`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.
|
@@ -77,7 +77,7 @@ SYNOPSIS
|
|
77
77
|
na [global options] command [command options] [arguments...]
|
78
78
|
|
79
79
|
VERSION
|
80
|
-
1.2.
|
80
|
+
1.2.57
|
81
81
|
|
82
82
|
GLOBAL OPTIONS
|
83
83
|
-a, --add - Add a next action (deprecated, for backwards compatibility)
|
data/bin/commands/next.rb
CHANGED
@@ -174,7 +174,7 @@ class App
|
|
174
174
|
search: search_tokens,
|
175
175
|
project: options[:project],
|
176
176
|
require_na: require_na })
|
177
|
-
if todo.files.empty?
|
177
|
+
if todo.files.empty? && tokens
|
178
178
|
NA.notify("#{NA.theme[:error]}No matches found for #{tokens[0][:token]}.
|
179
179
|
Run `na todos` to see available todo files.")
|
180
180
|
end
|
data/lib/na/next_action.rb
CHANGED
@@ -647,9 +647,14 @@ module NA
|
|
647
647
|
##
|
648
648
|
def backup_files
|
649
649
|
db = database_path(file: 'last_modified.txt')
|
650
|
-
|
650
|
+
if File.exist?(db)
|
651
|
+
IO.read(db).strip.split(/\n/).map(&:strip)
|
652
|
+
else
|
653
|
+
NA.notify("#{NA.theme[:error]}Backup database not found")
|
654
|
+
File.open(db, 'w') { |f| f.puts }
|
655
|
+
[]
|
656
|
+
end
|
651
657
|
|
652
|
-
IO.read(db).strip.split(/\n/).map(&:strip)
|
653
658
|
end
|
654
659
|
|
655
660
|
def move_deprecated_backups
|
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.56<!--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
|
|