gitextract_n5skmjta/ ├── .github/ │ ├── pull_request_template.md │ └── workflows/ │ ├── build.yml │ ├── virusTotal.yml │ └── winget.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── assets/ │ └── tray.icns ├── distribute_options.yaml ├── l10n.yaml ├── lib/ │ ├── app.dart │ ├── const/ │ │ └── const.dart │ ├── core/ │ │ ├── checksum.dart │ │ ├── core_config.dart │ │ └── core_manager.dart │ ├── dashboard.dart │ ├── error.dart │ ├── home.dart │ ├── l10n/ │ │ ├── app_en.arb │ │ ├── app_localizations.dart │ │ ├── app_localizations_en.dart │ │ ├── app_localizations_zh.dart │ │ └── app_zh.arb │ ├── main.dart │ ├── model/ │ │ └── app.dart │ ├── theme.dart │ ├── tr.dart │ ├── tray.dart │ ├── util/ │ │ ├── elevate.dart │ │ ├── notifier.dart │ │ ├── process_manager.dart │ │ └── utils.dart │ └── widget/ │ ├── app_body.dart │ ├── app_bottom_bar.dart │ ├── app_header_bar.dart │ ├── error/ │ │ ├── core_run_error_handler.dart │ │ └── release_mode_error_widget.dart │ ├── progress_indicator.dart │ ├── proxy_item_action_menu.dart │ ├── proxy_list_card.dart │ └── proxy_list_item.dart ├── macos/ │ ├── .gitignore │ ├── Flutter/ │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── MainMenu.xib │ │ ├── Configs/ │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ ├── Runner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ ├── RunnerTests/ │ │ └── RunnerTests.swift │ └── packaging/ │ └── dmg/ │ └── make_config.yaml ├── pubspec.yaml ├── scripts/ │ ├── constant.dart │ ├── init.dart │ └── update_core_sha256.dart ├── test/ │ └── widget_test.dart └── windows/ ├── .gitignore ├── CMakeLists.txt ├── flutter/ │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── packaging/ │ └── exe/ │ ├── make_config.yaml │ └── setup.iss └── runner/ ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h