diff --git a/CHANGELOG.md b/CHANGELOG.md index 018907b..7a1cc1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +### Release v1.15 + 2020.01.02 - 增加 指令配置项 `instruction`, 可以通过预定义的指令来控制 command 的行为 diff --git a/README.md b/README.md index ec63b00..164a7c4 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ go version 1.13 ### 下载二进制文件 -Github: [download v1.12](https://github.com/dengsgo/fileboy/releases) -Gitee: [dowmload v1.12](https://gitee.com/dengsgo/fileboy/releases) +Github: [download v1.15](https://github.com/dengsgo/fileboy/releases) +Gitee: [dowmload v1.15](https://gitee.com/dengsgo/fileboy/releases) 下载已经编译好的对应平台二进制文件,重命名为`fileboy`, 加入系统 Path 中即可。 @@ -150,7 +150,7 @@ notifier: # 请求超时 15 秒 # POST 格式: # Content-Type: application/json;charset=UTF-8 - # User-Agent: FileBoy Net Notifier v1.12 + # User-Agent: FileBoy Net Notifier v1.15 # Body: {"project_folder":"/project/path","file":"main.go","changed":1576567861913824940,"ext":".go","event":"write"} # 例: http://example.com/notifier/fileboy-listener # 不启用通知,请留空 "" diff --git a/README_EN.md b/README_EN.md index 57f6258..cf33cdb 100644 --- a/README_EN.md +++ b/README_EN.md @@ -32,8 +32,8 @@ go version 1.13 ### BINARIES -Github: [download v1.12](https://github.com/dengsgo/fileboy/releases) -Gitee: [dowmload v1.12](https://gitee.com/dengsgo/fileboy/releases) +Github: [download v1.15](https://github.com/dengsgo/fileboy/releases) +Gitee: [dowmload v1.15](https://gitee.com/dengsgo/fileboy/releases) Download the compiled binary file of the corresponding platform, rename it `fileboy`, and add it to the system Path. @@ -146,7 +146,7 @@ notifier: # timeout 15 second # POST : # Content-Type: application/json;charset=UTF-8 - # User-Agent: FileBoy Net Notifier v1.12 + # User-Agent: FileBoy Net Notifier v1.15 # Body: {"project_folder":"/project/path","file":"main.go","changed":1576567861913824940,"ext":".go","event":"write"} # e.g: http://example.com/notifier/fileboy-listener # no notice is enabled. Please leave it blank. "" diff --git a/notifer.go b/notifer.go index 5d50dc1..e1b7ab2 100644 --- a/notifer.go +++ b/notifer.go @@ -61,7 +61,7 @@ func (n *NetNotifier) dispatch(params *postParams) { return } req.Header.Set("Content-Type", "application/json;charset=UTF-8") - req.Header.Set("User-Agent", "FileBoy Net Notifier v1.12") + req.Header.Set("User-Agent", "FileBoy Net Notifier v1.15") resp, err := client.Do(req) if err != nil { logError("notifier call failed. err:", err) diff --git a/raw.go b/raw.go index 51c1694..4d4c697 100644 --- a/raw.go +++ b/raw.go @@ -89,7 +89,7 @@ notifier: # 请求超时 15 秒 # POST 格式: # Content-Type: application/json;charset=UTF-8 - # User-Agent: FileBoy Net Notifier v1.12 + # User-Agent: FileBoy Net Notifier v1.15 # Body: {"project_folder":"/project/path","file":"main.go","changed":1576567861913824940,"ext":".go","event":"write"} # 例: http://example.com/notifier/fileboy-listener # 不启用通知,请留空 "" @@ -136,13 +136,13 @@ var logo = ` _____ _ | | _____ ____) ) | | | |___| | | ___) | | | | | ___) | __ (| | | |\_____/ | | _| |_| |_____| |_____| |__) ) |___| | ___ -|_| (_____)_______)_______)______/ \_____/ (___) V1.12 +|_| (_____)_______)_______)______/ \_____/ (___) V1.15 ` var statement = `Dengsgo [dengsgo@gmail.com] Open Source with MIT License` var versionDesc = ` - Version fileboy: v1.12 filegirl: v` + strconv.Itoa(Version) + ` -Released 2019.12.18 + Version fileboy: v1.15 filegirl: v` + strconv.Itoa(Version) + ` +Released 2020.01.05 Licence MIT Author dengsgo [dengsgo@gmail.com] Website https://github.com/dengsgo/fileboy