Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
likexian committed Aug 14, 2015
1 parent 0fdb429 commit b3d8417
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGS-ZH.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.12.2 Beta 版本的变更 2015-08-14

- 特性:禁止蜘蛛爬虫请求页面

- 修正:完善了服务端和客户端安装


0.11.2 Beta 版本的变更 2015-08-08

- 修正:完善了服务端和客户端安装
Expand Down
7 changes: 7 additions & 0 deletions CHANGS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Changes with Stat Hub 0.12.2 Beta 2015-08-14

- Feature: block spider/bot requests

- Bugfix: improve server and client setup


Changes with Stat Hub 0.11.2 Beta 2015-08-08

- Bugfix: improve server and client setup
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.2
0.12.2
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ type Stat struct {
}

func Version() string {
return "0.11.2"
return "0.12.2"
}

func Author() string {
Expand Down
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ type Status struct {
}

func Version() string {
return "0.11.2"
return "0.12.2"
}

func Author() string {
Expand Down
4 changes: 2 additions & 2 deletions server/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -6421,7 +6421,7 @@ function stat_hub_version_result(update) {
if (!update) $('update').style.display = 'block';
}
c = do_start();
var ver = '0.11.2';
var ver = '0.12.2';
var v = getCookie('chkver');
if (v === false) {
var u = document.createElement('script');
Expand Down Expand Up @@ -6458,7 +6458,7 @@ if (v === false) {
{{end}}`
Template_Node = `#!/bin/bash
VERSION="0.11.2"
VERSION="0.12.2"
STATHUB_URL="https://github.com/likexian/stathub-go/releases/download/v${VERSION}/client_$(uname -m).tar.gz"
[ $(id -u) -ne 0 ] && sudo="sudo" || sudo=""
Expand Down
2 changes: 1 addition & 1 deletion server/template/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
if (!update) $('update').style.display = 'block';
}
c = do_start();
var ver = '0.11.2';
var ver = '0.12.2';
var v = getCookie('chkver');
if (v === false) {
var u = document.createElement('script');
Expand Down
2 changes: 1 addition & 1 deletion server/template/node.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="0.11.2"
VERSION="0.12.2"
STATHUB_URL="https://github.com/likexian/stathub-go/releases/download/v${VERSION}/client_$(uname -m).tar.gz"

[ $(id -u) -ne 0 ] && sudo="sudo" || sudo=""
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="0.11.2"
VERSION="0.12.2"
STATHUB_URL="https://github.com/likexian/stathub-go/releases/download/v${VERSION}/server_$(uname -m).tar.gz"

[ $(id -u) -ne 0 ] && sudo="sudo" || sudo=""
Expand Down

0 comments on commit b3d8417

Please sign in to comment.