Skip to content

Commit

Permalink
Update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jet2jet committed Dec 21, 2020
1 parent a79d671 commit a74e60b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.1.2

- Add `--wsl-timeout` and `--wsl-socat-log-level` options
- Fix default bind address to localhost (`127.0.0.1` / `[::1]`)

## 0.1.1

- Add workaround for pipe connection busy
Expand Down
25 changes: 23 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,15 @@ Usage: stream-connector.exe <options>
-n <name>, --name <name> : User-defined name
--log <level> : Set log level
<level>: error, info, debug (default: error)
--wsl-socat-log-level <level> : Set log level for WSL socat
<level>: 0 (nothing), 1 (-d), 2 (-dd), 3 (-ddd), 4 (-dddd) (default: 0)
--wsl-timeout <millisec> : Set timeout for WSL preparing (default: 30000)
<listener>:
tcp-socket [-4 | -6] [<address>:]<port> : TCP socket listener (port num. can be 0 for auto-assign)
alias for 'tcp-socke't: s, sock, socket, tcp
alias for 'tcp-socket': s, sock, socket, tcp
unix-socket [--abstract] <file-path> : Unix socket listener (listener with the socket file)
alias for 'unix-socket': u
alias for 'unix-socket': u, unix
cygwin-sockfile <win-file-path> : Listener with Cygwin-spec socket file
alias for 'cygwin-sockfile': c
pipe <pipe-name> : Named-pipe listener
Expand Down Expand Up @@ -194,6 +197,24 @@ Specifies any user-defined name. This name is used for the taskbar icon name and

Specifies the log level (logged on the status window). Valid `<level>` values are: `error` (default; only logged for errors), `info` (a bit verbose), `debug` (more verbose)

### --wsl-timeout <millisec>

Specifies the timeout value for preparing WSL processes (default: 30000)

### --wsl-socat-log-level <level>

> Alias: `--wsl-socat-log`
Specifies the log-level value for WSL socat. Following values are valid:

- 0 : Default logs (default)
- 1 : `-d`
- 2 : `-dd`
- 3 : `-ddd`
- 4 : `-dddd`

> Note: `-d`, `-dd`, `-ddd`, and `-dddd` can be used as `<level>` value.
### -x <proxy-id>, --proxy <proxy-id>

Used internally.
Expand Down
10 changes: 5 additions & 5 deletions source/main.rc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "About"
FONT 9, "MS UI Gothic", 0, 0, 0x1
BEGIN
LTEXT "stream-connector 0.1.1",IDC_STATIC,7,7,114,8,SS_NOPREFIX
LTEXT "stream-connector 0.1.2",IDC_STATIC,7,7,114,8,SS_NOPREFIX
LTEXT "Copyright (c) 2020 jet",IDC_STATIC,7,19,114,8
DEFPUSHBUTTON "OK",IDOK,71,33,50,14,WS_GROUP
END
Expand Down Expand Up @@ -124,8 +124,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,1,1,0
PRODUCTVERSION 0,1,1,0
FILEVERSION 0,1,2,0
PRODUCTVERSION 0,1,2,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -141,11 +141,11 @@ BEGIN
BLOCK "040004b0"
BEGIN
VALUE "FileDescription", "stream-connector : transfers data between sockets and pipes"
VALUE "FileVersion", "0.1.1.0"
VALUE "FileVersion", "0.1.2.0"
VALUE "InternalName", "stream-connector"
VALUE "OriginalFilename", "stream-connector.exe"
VALUE "ProductName", "stream-connector"
VALUE "ProductVersion", "0.1.1.0"
VALUE "ProductVersion", "0.1.2.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit a74e60b

Please sign in to comment.