├── .github └── workflows │ ├── ci.yml │ ├── release.yml │ └── tag.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── analysis_options.yaml ├── docs ├── DeepFaceLabClientWorkspace.png └── windows-protected-your-pc.png ├── lib ├── class │ ├── action │ │ └── switch_theme_action.dart │ ├── answer.dart │ ├── answer.g.dart │ ├── app_state.dart │ ├── conda_env_list.dart │ ├── conda_env_list.g.dart │ ├── deepfacelab_command_group.dart │ ├── device.dart │ ├── folder_property.dart │ ├── folder_property.g.dart │ ├── locale_storage_question.dart │ ├── locale_storage_question.g.dart │ ├── locale_storage_question_child.dart │ ├── locale_storage_question_child.g.dart │ ├── question.dart │ ├── question.g.dart │ ├── release.dart │ ├── release.g.dart │ ├── release_asset.dart │ ├── release_asset.g.dart │ ├── source.dart │ ├── start_process.dart │ ├── storage.dart │ ├── storage.g.dart │ ├── valid_answer_regex.dart │ ├── valid_answer_regex.g.dart │ ├── window_command.dart │ ├── window_command.g.dart │ ├── workspace.dart │ └── workspace.g.dart ├── main.dart ├── screens │ ├── dashboard_screen.dart │ ├── help_screen.dart │ ├── loading_screen.dart │ ├── settings_screen.dart │ ├── window_command_screen.dart │ └── workspace_screen.dart ├── service │ ├── file_manager_service.dart │ ├── locale_storage_service.dart │ ├── platform_service.dart │ ├── process_service.dart │ ├── python_service.dart │ ├── window_command_service.dart │ └── workspace_service.dart └── widget │ ├── common │ ├── context_menu_region.dart │ ├── deepfacelab_command_widget.dart │ ├── devices_widget.dart │ ├── divider_with_text_widget.dart │ ├── file_manager_widget.dart │ ├── form │ │ ├── checkbox_form_fiel_widget.dart │ │ └── deepfacelab_command_form_widget.dart │ ├── open_issue_widget.dart │ ├── release_widget.dart │ ├── select_theme_widget.dart │ ├── self_promotion_widget.dart │ └── start_process_widget.dart │ ├── form │ └── workspace │ │ ├── delete_workspace_form_widget.dart │ │ └── workspace_form_widget.dart │ └── installation │ ├── has_requirements_widget.dart │ ├── installation_widget.dart │ ├── requirement_linux_widget.dart │ └── requirement_windows_widget.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── pubspec.lock ├── pubspec.yaml ├── requirements ├── linux │ └── import_lib.sh └── windows │ ├── .gitkeep │ ├── msvcp140.dll │ ├── vcruntime140.dll │ └── vcruntime140_1.dll ├── script ├── linux │ └── install_release.sh ├── python │ └── getDevices.py └── windows │ └── install_release.bat └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /docs/DeepFaceLabClientWorkspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/docs/DeepFaceLabClientWorkspace.png -------------------------------------------------------------------------------- /docs/windows-protected-your-pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/docs/windows-protected-your-pc.png -------------------------------------------------------------------------------- /lib/class/action/switch_theme_action.dart: -------------------------------------------------------------------------------- 1 | class SwitchThemeAction {} 2 | -------------------------------------------------------------------------------- /lib/class/answer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/answer.dart -------------------------------------------------------------------------------- /lib/class/answer.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/answer.g.dart -------------------------------------------------------------------------------- /lib/class/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/app_state.dart -------------------------------------------------------------------------------- /lib/class/conda_env_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/conda_env_list.dart -------------------------------------------------------------------------------- /lib/class/conda_env_list.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/conda_env_list.g.dart -------------------------------------------------------------------------------- /lib/class/deepfacelab_command_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/deepfacelab_command_group.dart -------------------------------------------------------------------------------- /lib/class/device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/device.dart -------------------------------------------------------------------------------- /lib/class/folder_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/folder_property.dart -------------------------------------------------------------------------------- /lib/class/folder_property.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/folder_property.g.dart -------------------------------------------------------------------------------- /lib/class/locale_storage_question.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/locale_storage_question.dart -------------------------------------------------------------------------------- /lib/class/locale_storage_question.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/locale_storage_question.g.dart -------------------------------------------------------------------------------- /lib/class/locale_storage_question_child.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/locale_storage_question_child.dart -------------------------------------------------------------------------------- /lib/class/locale_storage_question_child.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/locale_storage_question_child.g.dart -------------------------------------------------------------------------------- /lib/class/question.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/question.dart -------------------------------------------------------------------------------- /lib/class/question.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/question.g.dart -------------------------------------------------------------------------------- /lib/class/release.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/release.dart -------------------------------------------------------------------------------- /lib/class/release.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/release.g.dart -------------------------------------------------------------------------------- /lib/class/release_asset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/release_asset.dart -------------------------------------------------------------------------------- /lib/class/release_asset.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/release_asset.g.dart -------------------------------------------------------------------------------- /lib/class/source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/source.dart -------------------------------------------------------------------------------- /lib/class/start_process.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/start_process.dart -------------------------------------------------------------------------------- /lib/class/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/storage.dart -------------------------------------------------------------------------------- /lib/class/storage.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/storage.g.dart -------------------------------------------------------------------------------- /lib/class/valid_answer_regex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/valid_answer_regex.dart -------------------------------------------------------------------------------- /lib/class/valid_answer_regex.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/valid_answer_regex.g.dart -------------------------------------------------------------------------------- /lib/class/window_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/window_command.dart -------------------------------------------------------------------------------- /lib/class/window_command.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/window_command.g.dart -------------------------------------------------------------------------------- /lib/class/workspace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/workspace.dart -------------------------------------------------------------------------------- /lib/class/workspace.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/class/workspace.g.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/screens/dashboard_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/screens/dashboard_screen.dart -------------------------------------------------------------------------------- /lib/screens/help_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/screens/help_screen.dart -------------------------------------------------------------------------------- /lib/screens/loading_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/screens/loading_screen.dart -------------------------------------------------------------------------------- /lib/screens/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/screens/settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/window_command_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/screens/window_command_screen.dart -------------------------------------------------------------------------------- /lib/screens/workspace_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/screens/workspace_screen.dart -------------------------------------------------------------------------------- /lib/service/file_manager_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/service/file_manager_service.dart -------------------------------------------------------------------------------- /lib/service/locale_storage_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/service/locale_storage_service.dart -------------------------------------------------------------------------------- /lib/service/platform_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/service/platform_service.dart -------------------------------------------------------------------------------- /lib/service/process_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/service/process_service.dart -------------------------------------------------------------------------------- /lib/service/python_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/service/python_service.dart -------------------------------------------------------------------------------- /lib/service/window_command_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/service/window_command_service.dart -------------------------------------------------------------------------------- /lib/service/workspace_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/service/workspace_service.dart -------------------------------------------------------------------------------- /lib/widget/common/context_menu_region.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/context_menu_region.dart -------------------------------------------------------------------------------- /lib/widget/common/deepfacelab_command_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/deepfacelab_command_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/devices_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/devices_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/divider_with_text_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/divider_with_text_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/file_manager_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/file_manager_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/form/checkbox_form_fiel_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/form/checkbox_form_fiel_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/form/deepfacelab_command_form_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/form/deepfacelab_command_form_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/open_issue_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/open_issue_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/release_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/release_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/select_theme_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/select_theme_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/self_promotion_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/self_promotion_widget.dart -------------------------------------------------------------------------------- /lib/widget/common/start_process_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/common/start_process_widget.dart -------------------------------------------------------------------------------- /lib/widget/form/workspace/delete_workspace_form_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/form/workspace/delete_workspace_form_widget.dart -------------------------------------------------------------------------------- /lib/widget/form/workspace/workspace_form_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/form/workspace/workspace_form_widget.dart -------------------------------------------------------------------------------- /lib/widget/installation/has_requirements_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/installation/has_requirements_widget.dart -------------------------------------------------------------------------------- /lib/widget/installation/installation_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/installation/installation_widget.dart -------------------------------------------------------------------------------- /lib/widget/installation/requirement_linux_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/installation/requirement_linux_widget.dart -------------------------------------------------------------------------------- /lib/widget/installation/requirement_windows_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/lib/widget/installation/requirement_windows_widget.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /requirements/linux/import_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/requirements/linux/import_lib.sh -------------------------------------------------------------------------------- /requirements/windows/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements/windows/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/requirements/windows/msvcp140.dll -------------------------------------------------------------------------------- /requirements/windows/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/requirements/windows/vcruntime140.dll -------------------------------------------------------------------------------- /requirements/windows/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/requirements/windows/vcruntime140_1.dll -------------------------------------------------------------------------------- /script/linux/install_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/script/linux/install_release.sh -------------------------------------------------------------------------------- /script/python/getDevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/script/python/getDevices.py -------------------------------------------------------------------------------- /script/windows/install_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/script/windows/install_release.bat -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenny4/DeepFaceLabClient/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------