Skip to content

Commit 3e11f68

Browse files
author
Alex D'Andrea
committed
Release Wormhole GO 1.1.0
Improve documentation, update ChangeLog.
1 parent c491a46 commit 3e11f68

File tree

2 files changed

+22
-9
lines changed

2 files changed

+22
-9
lines changed

ChangeLog.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
Wormhole
2-
=========
1+
Wormhole GO
2+
===========
3+
4+
2016-04-19 - Release 1.1.0
5+
--------------------------
6+
* Improved support for program invocations with spaces
7+
in the path (@kiesel)
8+
* Improved test suite (@kiesel)
9+
310

411
2016-04-15 - Release 1.0.0
512
---------------------------

wormhole.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1-
listen: :5115
1+
# Address and port to listen to; for security reasons,
2+
# this should only be bound to a local interface (which also
3+
# is the default)
4+
listen: 127.0.0.1:5115
25

6+
# Paths mappings that are being translated in invocations
37
mapping:
48
"/home/idev": "A:"
59

10+
# Registered apps
611
apps:
7-
"sublime": "C:/Program Files/Sublime Text 3/sublime_text.exe"
8-
"atom": "C:/Users/kiesel/AppData/Local/atom/bin/atom.cmd"
9-
"explore": "C:/Windows/explorer.exe"
10-
"terminal": "C:/tools/cygwin/bin/mintty"
12+
sublime: "C:/Program Files/Sublime Text 3/sublime_text.exe"
13+
atom: "C:/Users/kiesel/AppData/Local/atom/bin/atom.cmd"
14+
explore: "C:/Windows/explorer.exe"
15+
terminal: "C:/tools/cygwin/bin/mintty"
1116

12-
# Dangerous:
13-
"start": "cmd.exe /c start"
17+
# Example of invocation w/ arguments: put them into array.
18+
# first element is executable
19+
start: ["cmd.exe", "/c", "start"]
1420

0 commit comments

Comments
 (0)