├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── core ├── __init__.py ├── cleanup_engine.py ├── disk_manager.py ├── migration_engine.py ├── partition_models.py ├── partition_scanner.py └── partition_writer.py ├── gui ├── __init__.py ├── disk_selector.py ├── log_panel.py ├── main_window.py ├── migration_options.py ├── partition_viewer.py └── progress_panel.py ├── images └── preview.jpg └── main.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: sthetixofficial -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/cleanup_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/core/cleanup_engine.py -------------------------------------------------------------------------------- /core/disk_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/core/disk_manager.py -------------------------------------------------------------------------------- /core/migration_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/core/migration_engine.py -------------------------------------------------------------------------------- /core/partition_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/core/partition_models.py -------------------------------------------------------------------------------- /core/partition_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/core/partition_scanner.py -------------------------------------------------------------------------------- /core/partition_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/core/partition_writer.py -------------------------------------------------------------------------------- /gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/gui/__init__.py -------------------------------------------------------------------------------- /gui/disk_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/gui/disk_selector.py -------------------------------------------------------------------------------- /gui/log_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/gui/log_panel.py -------------------------------------------------------------------------------- /gui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/gui/main_window.py -------------------------------------------------------------------------------- /gui/migration_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/gui/migration_options.py -------------------------------------------------------------------------------- /gui/partition_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/gui/partition_viewer.py -------------------------------------------------------------------------------- /gui/progress_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/gui/progress_panel.py -------------------------------------------------------------------------------- /images/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/images/preview.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthetix/NX-Migrator-Pro/HEAD/main.py --------------------------------------------------------------------------------