Enhancements

Fix compatibility with some non-standard ShadowsocksR subscription.
Add local rulesets from ConnersHua, lhie1 and NobyDa.
Add support for conversion of some nodes between Shadowsocks and ShadowsocksR format.
Add some build scripts.
Optimize default groups and rulesets.
Optimize Gist uploader.
Optimize codes and performance.
This commit is contained in:
Tindy X
2019-11-19 21:37:18 +08:00
parent 5347540475
commit abada4ec8b
101 changed files with 23754 additions and 130 deletions

17
config.termux.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
set -xe
apt update
apt install git cmake clang
apt isntall libevent libcurl openssl
git clone https://github.com/jbeder/yaml-cpp
cd yaml-cpp
cmake -DCMAKE_INSTALL_PREFIX=/data/data/com.termux/files/usr .
make install -j3
cd ..
git clone https://github.com/tencent/rapidjson
cd rapidjson
cp -r include/* /data/data/com.termux/files/usr/include/
cd ..