Skip to content

Commit

Permalink
package.sh add android (#4094)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatedier authored Mar 21, 2024
1 parent f16ef00 commit 86f90f4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 25 deletions.
24 changes: 0 additions & 24 deletions Release.md
Original file line number Diff line number Diff line change
@@ -1,25 +1 @@
### Features

* Support range ports mapping in TOML/YAML/JSON configuration file by using go template syntax.

For example:

```
{{- range $_, $v := parseNumberRangePair "6000-6006,6007" "6000-6006,6007" }}
[[proxies]]
name = "tcp-{{ $v.First }}"
type = "tcp"
localPort = {{ $v.First }}
remotePort = {{ $v.Second }}
{{- end }}
```

This will create 8 proxies such as `tcp-6000, tcp-6001, ... tcp-6007`.

* Health check supports custom request headers.
* Enable compatibility mode for the Android system to solve the issues of incorrect log time caused by time zone problems and default DNS resolution failures.

### Fixes

* Fix the issue of incorrect interval time for rotating the log by day.
* Disable quic-go's ECN support by default. It may cause issues on certain operating systems.
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ make -f ./Makefile.cross-compiles
rm -rf ./release/packages
mkdir -p ./release/packages

os_all='linux windows darwin freebsd'
os_all='linux windows darwin freebsd android'
arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'

cd ./release
Expand Down

0 comments on commit 86f90f4

Please sign in to comment.