4 Commits
Author SHA1 Message Date
Seongjae Lee 6fe704aad1 Prepare 0.9.2 release 2015-10-16 23:49:32 -07:00
Seongjae Lee 669839750c Fix the double padding problem in the search window 2015-10-16 23:49:20 -07:00
Seongjae Lee ee5dc2a87a Prepare 0.9.1 release 2015-10-16 22:33:32 -07:00
Seongjae Lee bd7d47474c Add interlink menu item 2015-10-16 22:33:11 -07:00
3 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ class NotationalVelocityView extends SelectListView
initialize: (state) -> initialize: (state) ->
@initializedAt = new Date() @initializedAt = new Date()
super super
@addClass('nvatom from-top overlay') @addClass('nvatom')
@rootDirectory = Utility.getNoteDirectory() @rootDirectory = Utility.getNoteDirectory()
unless fs.existsSync(@rootDirectory) unless fs.existsSync(@rootDirectory)
throw new Error("The given directory #{@rootDirectory} does not exist. " throw new Error("The given directory #{@rootDirectory} does not exist. "
+4
View File
@@ -9,6 +9,10 @@
'label': 'Toggle' 'label': 'Toggle'
'command': 'nvatom:toggle' 'command': 'nvatom:toggle'
} }
{
'label': 'Open Interlink'
'command': 'nvatom:openInterlink'
}
] ]
] ]
} }
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "nvatom", "name": "nvatom",
"main": "./lib/notational-velocity", "main": "./lib/notational-velocity",
"version": "0.9.0", "version": "0.9.2",
"private": true, "private": true,
"contributors": [ "contributors": [
"Seongjae Lee <seongjae@gmail.com>", "Seongjae Lee <seongjae@gmail.com>",