[PR #7] [MERGED] Release version 0.2.0 #4095

Closed
opened 2026-05-05 14:35:35 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fatedier/frp/pull/7
Author: @fatedier
Created: 3/17/2016
Status: Merged
Merged: 3/17/2016
Merged by: @fatedier

Base: masterHead: dev


📝 Commits (10+)

  • f02ed95 enable client to connect non-local [ip:port]
  • 586d63f Merge pull request #6 from Hurricanezwf/add_func
  • 3cbe432 cmd/client: if no local_ip set in proxy config, use 127.0.0.1 as default
  • 838dc10 [utils/version] add version.go
  • 975c2a9 add support for command line
  • 3218eda models/server: fix bug, program will core if listener is nil
  • a56b29b add support for command line with frpc
  • 6e45822 add license info
  • b4acba9 doc: add architecture.png
  • db3abd3 doc: update architecture.png

📊 Changes

35 files changed (+3064 additions, -49 deletions)

View changed files

📝 .gitignore (+0 -1)
Dockerfile (+14 -0)
📝 Godeps/Godeps.json (+5 -0)
Godeps/_workspace/src/github.com/docopt/docopt-go/.gitignore (+25 -0)
Godeps/_workspace/src/github.com/docopt/docopt-go/.travis.yml (+31 -0)
Godeps/_workspace/src/github.com/docopt/docopt-go/LICENSE (+20 -0)
Godeps/_workspace/src/github.com/docopt/docopt-go/README.md (+88 -0)
Godeps/_workspace/src/github.com/docopt/docopt-go/docopt.go (+1239 -0)
Godeps/_workspace/src/github.com/docopt/docopt-go/test_golang.docopt (+9 -0)
Godeps/_workspace/src/github.com/docopt/docopt-go/testcases.docopt (+957 -0)
📝 Makefile (+2 -3)
📝 README.md (+29 -1)
📝 conf/frpc.ini (+6 -6)
📝 conf/frps.ini (+4 -5)
doc/pic/architecture.png (+0 -0)
doc/quick_start_en.md (+68 -0)
doc/quick_start_zh.md (+66 -0)
📝 src/frp/cmd/frpc/control.go (+16 -1)
📝 src/frp/cmd/frpc/main.go (+75 -1)
📝 src/frp/cmd/frps/control.go (+14 -0)

...and 15 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/fatedier/frp/pull/7 **Author:** [@fatedier](https://github.com/fatedier) **Created:** 3/17/2016 **Status:** ✅ Merged **Merged:** 3/17/2016 **Merged by:** [@fatedier](https://github.com/fatedier) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`f02ed95`](https://github.com/fatedier/frp/commit/f02ed95ef1e1b1d7fbcaa630d6f5b63f3e6dcf8c) enable client to connect non-local [ip:port] - [`586d63f`](https://github.com/fatedier/frp/commit/586d63f662db6e983d8af5a16d526f4e41cba6f1) Merge pull request #6 from Hurricanezwf/add_func - [`3cbe432`](https://github.com/fatedier/frp/commit/3cbe432889d368ec4ab97f4621be24e1093744f7) cmd/client: if no local_ip set in proxy config, use 127.0.0.1 as default - [`838dc10`](https://github.com/fatedier/frp/commit/838dc10c6e6fcc5955209e23f5e583c82837b517) [utils/version] add version.go - [`975c2a9`](https://github.com/fatedier/frp/commit/975c2a97c804aa06de4bc90dc8890d4a029095f8) add support for command line - [`3218eda`](https://github.com/fatedier/frp/commit/3218eda4819a5a41537ab31ccc2d2ecab6353a75) models/server: fix bug, program will core if listener is nil - [`a56b29b`](https://github.com/fatedier/frp/commit/a56b29b153bf7294ecb5b691c1614a61504f4384) add support for command line with frpc - [`6e45822`](https://github.com/fatedier/frp/commit/6e458229f60be23b278bbeb4065941f928eb89bc) add license info - [`b4acba9`](https://github.com/fatedier/frp/commit/b4acba94802094838457115ec1965952b5a21e3e) doc: add architecture.png - [`db3abd3`](https://github.com/fatedier/frp/commit/db3abd304ed4e956d79d6683cb59d7705b8b3b8f) doc: update architecture.png ### 📊 Changes **35 files changed** (+3064 additions, -49 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+0 -1) ➕ `Dockerfile` (+14 -0) 📝 `Godeps/Godeps.json` (+5 -0) ➕ `Godeps/_workspace/src/github.com/docopt/docopt-go/.gitignore` (+25 -0) ➕ `Godeps/_workspace/src/github.com/docopt/docopt-go/.travis.yml` (+31 -0) ➕ `Godeps/_workspace/src/github.com/docopt/docopt-go/LICENSE` (+20 -0) ➕ `Godeps/_workspace/src/github.com/docopt/docopt-go/README.md` (+88 -0) ➕ `Godeps/_workspace/src/github.com/docopt/docopt-go/docopt.go` (+1239 -0) ➕ `Godeps/_workspace/src/github.com/docopt/docopt-go/test_golang.docopt` (+9 -0) ➕ `Godeps/_workspace/src/github.com/docopt/docopt-go/testcases.docopt` (+957 -0) 📝 `Makefile` (+2 -3) 📝 `README.md` (+29 -1) 📝 `conf/frpc.ini` (+6 -6) 📝 `conf/frps.ini` (+4 -5) ➕ `doc/pic/architecture.png` (+0 -0) ➕ `doc/quick_start_en.md` (+68 -0) ➕ `doc/quick_start_zh.md` (+66 -0) 📝 `src/frp/cmd/frpc/control.go` (+16 -1) 📝 `src/frp/cmd/frpc/main.go` (+75 -1) 📝 `src/frp/cmd/frps/control.go` (+14 -0) _...and 15 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 14:35:35 -06:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/frp#4095
No description provided.