mirror of
https://github.com/zhigang1992/cow.git
synced 2026-04-29 01:45:39 +08:00
Bump version to 0.9
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
0.9 (Not released)
|
||||
0.9 (2013-12-02)
|
||||
* New feature: two COW servers can be connected using encrypted
|
||||
connection, thus we have an encrypted HTTP proxy chain that can
|
||||
be used to bypass the firewall
|
||||
* Allow client to use HTTP basic authentication
|
||||
* Simplified configuration syntax
|
||||
* Simplify configuration syntax
|
||||
* Better reuse for HTTP parent connections
|
||||
* Reduce direct/blocked delta
|
||||
* Generate new PAC every minute
|
||||
|
||||
0.8 (2013-08-10)
|
||||
* Share server connections between different clients
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
COW 是一个简化穿墙的 HTTP 代理服务器。它能自动检测被墙网站,仅对这些网站使用二级代理。
|
||||
|
||||
当前版本:0.9-rc1 [CHANGELOG](CHANGELOG)
|
||||
当前版本:0.9 [CHANGELOG](CHANGELOG)
|
||||
[](https://travis-ci.org/cyfdecyf/cow)
|
||||
|
||||
**欢迎在 develop branch 进行开发并发送 pull request :)**
|
||||
@@ -18,7 +18,7 @@ COW 的设计目标是自动化,理想情况下用户无需关心哪些网站
|
||||
- 自动生成包含直连网站的 PAC,访问这些网站时可绕过 COW
|
||||
- 内置[常见可直连网站](site_direct.go),如国内社交、视频、银行、电商等网站(可手工添加)
|
||||
|
||||
# Quick Start
|
||||
# 快速开始
|
||||
|
||||
安装:
|
||||
|
||||
@@ -27,7 +27,7 @@ COW 的设计目标是自动化,理想情况下用户无需关心哪些网站
|
||||
curl -L git.io/cow | bash
|
||||
|
||||
- **Windows:** [点此下载](http://dl.chenyufei.info/cow/)
|
||||
- 熟悉 Go 的用户可用 `go get` 从源码安装
|
||||
- 熟悉 Go 的用户可用 `go get github.com/cyfdecyf/cow` 从源码安装
|
||||
|
||||
编辑 `~/.cow/rc` (Linux) 或 `rc.txt` (Windows),简单的配置例子如下:
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
version = "0.9-rc1"
|
||||
version = "0.9"
|
||||
defaultListenAddr = "127.0.0.1:7777"
|
||||
)
|
||||
|
||||
|
||||
@@ -66,7 +66,7 @@ listen = http://127.0.0.1:7777
|
||||
#
|
||||
# authinfo 中指定加密方法和密码,所有支持的加密方法如下:
|
||||
# aes-128-cfb, aes-192-cfb, aes-256-cfb,
|
||||
# bf-cfb, cast5-cfb, des-cfb
|
||||
# bf-cfb, cast5-cfb, des-cfb, table, rc4
|
||||
# 推荐使用 aes-128-cfb
|
||||
#
|
||||
# cow:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
version=0.9-rc1
|
||||
version=0.9
|
||||
|
||||
arch=`uname -m`
|
||||
case $arch in
|
||||
|
||||
Reference in New Issue
Block a user