EasyTier/easytier-gui
Sijie.Sun 54c6418f97
only add necessary conn to alive urls (#277)
too many alive conns may cause high cpu usage and lagged broadcast
recv.
2024-08-25 11:12:01 +08:00
..
.vscode 🐳 chore: eslint config 2024-05-07 23:01:06 +08:00
locales Android Support (#166) 2024-07-15 00:03:55 +08:00
src use autostart plugin and hide window when autostart 2024-08-17 02:15:15 +08:00
src-tauri only add necessary conn to alive urls (#277) 2024-08-25 11:12:01 +08:00
.gitignore Android Support (#166) 2024-07-15 00:03:55 +08:00
.npmrc 🐳 chore: eslint config 2024-05-07 23:01:06 +08:00
eslint.config.js 🐳 chore: eslint config and script 2024-05-07 23:01:06 +08:00
index.html introduce gui based on tauri (#52) 2024-04-14 23:29:34 +08:00
package.json use autostart plugin and hide window when autostart 2024-08-17 02:15:15 +08:00
pnpm-lock.yaml use autostart plugin and hide window when autostart 2024-08-17 02:15:15 +08:00
postcss.config.js introduce gui based on tauri (#52) 2024-04-14 23:29:34 +08:00
README.md Android Support (#166) 2024-07-15 00:03:55 +08:00
tailwind.config.js 🌈 style: eslint lint 2024-05-07 22:57:56 +08:00
tsconfig.json 🌈 style: eslint lint 2024-05-07 22:57:56 +08:00
vite.config.ts fix bugs (#236) 2024-08-08 22:03:22 +08:00

GUI for EasyTier

this is a GUI implementation for EasyTier, based on Tauri2.

Compile

Install prerequisites

apt install npm
npm install -g pnpm

For Desktop (Win/Mac/Linux)

pnpm install
pnpm tauri build

For Android

Need to install android SDK / emulator / NDK / Java (easy with android studio)

# For ArchLinux
sudo pacman -Sy sdkmanager
sudo sdkmanager --install platform-tools platforms\;android-34 ndk\;r26 build-tools
export PATH=/opt/android-sdk/platform-tools:$PATH
export ANDROID_HOME=/opt/android-sdk/
export NDK_HOME=/opt/android-sdk/ndk/26.0.10792818/
rustup target add aarch64-linux-android

install java 20

Java version depend on gradle version specified in (easytier-gui\src-tauri\gen\android\build.gradle.kts)

See Gradle compatibility matrix for detail .

pnpm install
pnpm tauri android init
pnpm tauri android build