mirror of
https://github.com/deepfakes/faceswap
synced 2025-06-09 04:36:50 -04:00
* lib.gui: Update icons * tools.cli: Add video filetype flag to mask input * lib.gui.popup_configure: Refresh GUI on config save * lib.gui._config: Add Icon size and load last session options * lib.gui.control_helper - Add control modification tracking * lib.gui - Add Projects and Last Session - Main root title handled by projects - Add Hotkeys - Create projects module - split fsw and fst filetypes - Add last_session saving * lib.project - Documentation - Ask confirm on closing unsaved project -Fixups * Track model folder changes - Shuffle some globals - Activate System Verbosity for GUI * lib.gui.utils - Documentation and clean up - lib.gui.custom_widgets - Create and document * Add GUI config option to disable auto loading model stats
10 lines
483 B
Python
10 lines
483 B
Python
from lib.gui.command import CommandNotebook
|
|
from lib.gui.custom_widgets import ConsoleOut, StatusBar
|
|
from lib.gui.display import DisplayNotebook
|
|
from lib.gui.options import CliOptions
|
|
from lib.gui.menu import MainMenuBar, TaskBar
|
|
from lib.gui.popup_configure import popup_config
|
|
from lib.gui.project import LastSession
|
|
from lib.gui.stats import Session
|
|
from lib.gui.utils import get_config, get_images, initialize_config, initialize_images
|
|
from lib.gui.wrapper import ProcessWrapper
|