Skip to content
Merged
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
6 changes: 5 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name = "DefaultApplication"
uuid = "3f0dd361-4fe0-5fc6-8523-80b14ec94d85"
authors = ["Tamas K. Papp <tkpapp@gmail.com>"]
version = "0.1.3"
version = "0.1.4"

[deps]
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"

[compat]
julia = "^1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Julia library for opening a file with the default application determined by the

Many packages implement variations on the same short code snippet. This package maintains a version that can be shared or tested.

This package intends to be very lightweight, and has no dependencies. Nevertheless, if you still don't want to use this as a dependency, you can of course also copy the code of `DefaultApplication.open()` to another package, but then you will have to repeat this to keep up with bugfixes and developments.
This package intends to be very lightweight, and has no dependencies outside the standard libraries. Nevertheless, if you still don't want to use this as a dependency, you can of course also copy the code of `DefaultApplication.open()` to another package, but then you will have to repeat this to keep up with bugfixes and developments.

## Usage

Expand Down
4 changes: 3 additions & 1 deletion src/DefaultApplication.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module DefaultApplication

import InteractiveUtils

"""
DefaultApplication.open(filename; wait = false)

Expand Down Expand Up @@ -36,7 +38,7 @@ function test()
If the file was not opened, please copy the output and open an issue at
https://github.com/tpapp/DefaultApplication.jl/issues
""")
versioninfo()
InteractiveUtils.versioninfo(stdout; verbose = true)
if Sys.iswindows()
@info("Version information for windows",
windows_version = Sys.windows_version())
Expand Down