AetherGUI
Independent production-ready Windows GUI for Aether — Tauri v2 and Rust
File Explorer
- release.yml
- AetherVpnService.java
- AethonTileService.java
- AppSelectionActivity.java
- AppUpdateManager.java
- AppUpdateReceiver.java
- ConnectionDefaults.java
- ConnectionOrbView.java
- MainActivity.java
- UpdateConfig.java
- UpdateInfo.java
- UpdateWorker.java
- VpnConnectionController.java
- TProxyService.java
- drawer_header_background.xml
- home_atmosphere.xml
- ic_aethon_mono.xml
- ic_back.xml
- ic_info.xml
- ic_menu.xml
- ic_notification.xml
- ic_power.xml
- ic_settings.xml
- ic_telegram.xml
- ic_tune.xml
- metric_background.xml
- navigation_item_background.xml
- status_dot.xml
- status_dot_connected.xml
- status_dot_connecting.xml
- status_pill_background.xml
- activity_app_selection.xml
- activity_main.xml
- drawer_header.xml
- item_app_picker.xml
- item_dropdown.xml
- drawer_menu.xml
- main_toolbar.xml
- ic_launcher.xml
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- arrays.xml
- colors.xml
- ic_launcher_background.xml
- strings.xml
- themes.xml
- arrays.xml
- home_strings.xml
- strings.xml
- colors.xml
- themes.xml
- data_extraction_rules.xml
- network_security_config.xml
- update_file_paths.xml
- AndroidManifest.xml
- AppUpdateManagerTest.java
- ConnectionDefaultsTest.java
- build.gradle
- proguard-rules.pro
- gradle-wrapper.jar
- gradle-wrapper.properties
- build.gradle
- gradle.properties
- gradlew
- gradlew.bat
- README.md
- settings.gradle
- aethergui-v1.6.0.png
- android-v1.8.0.png
- build-frontend.mjs
- dev-server.mjs
- fetch-aether.ps1
- fetch-android-assets.ps1
- fetch-routing-engine.ps1
- package-release.ps1
- prepare-sidecar.mjs
- app.js
- i18n.js
- index.html
- styles.css
- default.json
- ic_launcher.xml
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher_background.xml
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- 128x128.png
- [email protected]
- 32x32.png
- 64x64.png
- icon.icns
- icon.ico
- icon.png
- icon.svg
- Square107x107Logo.png
- Square142x142Logo.png
- Square150x150Logo.png
- Square284x284Logo.png
- Square30x30Logo.png
- Square310x310Logo.png
- Square44x44Logo.png
- Square71x71Logo.png
- Square89x89Logo.png
- StoreLogo.png
- lib.rs
- main.rs
- process.rs
- routing.rs
- settings.rs
- update.rs
- hooks.nsh
- build.rs
- Cargo.lock
- Cargo.toml
- tauri.conf.json
- frontend.test.mjs
- hev-socks5-tunnel-LICENSE.txt
- sing-box-LICENSE.txt
- .gitignore
- CONTRIBUTING.md
- LICENSE
- NOTICE.md
- package-lock.json
- package.json
- PROMPT.md
- README.md
- SECURITY.md
- TRADEMARK.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo test
View Details ▼
cargo test
Execute the unit and integration tests of a Rust package.
cargo {{[t|test]}} {{test_name}}
Only run tests containing a specific string in their names:
cargo {{[t|test]}} -- --test-threads {{count}}
Set the number of simultaneous running test cases:
cargo {{[t|test]}} {{[-r|--release]}}
Test artifacts in release mode, with optimizations:
npm ci
View Details ▼
npm ci
Clean install of `npm` project dependencies for automated environments.
Installs packages based on `package-lock.json` or `npm-shrinkwrap.json`.
npm ci
Install project dependencies from `package-lock.json` or `npm-shrinkwrap.json`:
npm ci --omit {{dev|optional|peer}}
Install project dependencies but skip the specified dependency type:
npm ci --ignore-scripts
Install project dependencies without running any pre-/post-scripts defined in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
