Skip to content

V0.2.0 documentation #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guide/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ docker run -d --name mqtt --network=host \
```

#### Deploy Server Docker
There is two config file: `application.conf` and `logback.xml`, you can get the example <a :href="$sourceUrl + 'tree/main/command/docker/backend/config'">here</a>.
There is two config file: `application.conf` and `logback.xml`, you can get the example <a :href="$sourceUrl + '/tree/main/command/docker/backend/config'">here</a>.
More details about config can be found [here](config.md).

```shell
Expand Down
27 changes: 27 additions & 0 deletions guide/quick-test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Quick Test
This is for quick test.
## linux
### Backend
```shell
# cd $fornet_project_path
docker start mqtt nginx postgres
# docker rmi ghcr.io/fornetcode/fornet-backend:latest

docker run --rm -v $PWD/backend/src/main/resources:/config --network=host ghcr.io/fornetcode/fornet-backend:latest
```

### Client
```shell
wget https://github.com/ForNetCode/fornet/releases/download/v0.1.0/fornet-linux-x86_64.tar.gz

#docker run
```

## Windows
### Client
```pwsh
wget https://github.com/ForNetCode/fornet/releases/download/v0.1.0/fornet-win11-x86_64.zip

```

##
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "0.1.0",
"version": "0.2.0",
"directories": {
"doc": "./"
},
Expand Down
49 changes: 22 additions & 27 deletions plan.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,28 @@
# Roadmap

If you have any idea, feel free to open <a :href="$sourceUrl + '/issues/new'">issue</a>.
## Firstly To Do

## Doing Feature
- [ ] Android App
## Secondly To Do
* Desktop App (0.2 or 0.3 Vesrion)
* error info report to server
* Windows auto launch
* DNS(DNS Resolver)
* usage statistic(server)

## Plan Feature(No Order)
- [ ] Windows auto launch
- [ ] admin web turn to white theme
- [ ] admin web tutoril(blocked by white theme)
- [ ] Win10 support
- [ ] punch hole(p2p)
- [ ] error info report to server
- [ ] iOS App
- [ ] DNS(DNS Resolver)
- [ ] WireGuard Relay support
- [ ] mDNS support for Lan
- [ ] usage statistic(server)
- [ ] Ingress、Outgress
- [ ] Ingress LoadBalance
- [ ] k8s deploy
- [ ] OpenBSD/FreeBSD support
- [ ] Windows arm64 support
- [ ] Windows Tun Driver performance improve(all in driver, only provide api to userspace)
- [ ] run without manager sc-manager, read config from local file

## Blocked Feature
- [x] MacOS desktop(release when user really need it)
- [x] Windows desktop(release when user really need it)
- [ ] Linux desktop
## Easy To Do
* user online status show at admin web
* admin web change to white theme
* admin web tutorial (0.1.x Version)

## Thinking Feature
replace wireguard to webrtc, then P2P is more easy to be done.
## Blocked, Waiting For User Feedback
* Android App
* Win10 support
* iOS App
* OpenBSD/FreeBSD support
* Windows arm64 support


## Just remark
* Windows Tun Driver performance improve(all in driver, only provide api to userspace)
10 changes: 10 additions & 0 deletions version_change.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Changelog

### V0.2.0
- [x] support WebRTC protocol and turn relay(add doc)


### V0.1.1
This is a fixed bug version, we have tested it in production environment of SAAS, and every thing is ok.
- [x] fix: multifarious bugs
- [x] feat: aarch64 client support with Github Actions, make the distribution zip file more clean
- [x] feat: add SAAS production config and bash

### V0.1.0
**This is not compatible with V0.0.4.**

Expand Down