Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 1.0.3 - BUG fix - shell.openItem deprecated
* Shell function openItem substituted with openPath
## 0.1.0 - First Release
* Every feature added
* Every bug fixed
4 changes: 2 additions & 2 deletions lib/open-unsupported-files.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports =
if extension in @extensions
if e.detail is 2
shell = require('shell')
shell.openItem(path)
shell.openPath(path)
return false
else
@originalFileViewEntryClicked.call(tv, e)
@originalFileViewEntryClicked.call(tv, e)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "open-unsupported-files",
"main": "./lib/open-unsupported-files",
"version": "1.0.20",
"version": "1.0.3",
"description": "Open Unsupported File Format",
"keywords": [
"word document",
Expand Down