├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── lint_and_test.yaml ├── .gitignore ├── .gitmodules ├── .python-version ├── .vscode └── module.code-snippets ├── Changelog.md ├── Hardlinks.md ├── LICENSE ├── Mod-Manager-Migrator.code-workspace ├── README.md ├── compile_qrc.bat ├── compile_qts.bat ├── concepts ├── Concept_MainPageRedesign.png └── Illustrator │ └── Mod-Manager-Labels.ai ├── generate_nm_description.bat ├── misc_assets ├── GiO_NM.png ├── HeadLineGH.ai ├── HeadLineGH.svg ├── KoFi.png ├── VC_GitHub.png ├── modpage │ ├── GitHUB_LowRes.png │ ├── Header_Contributing.png │ ├── Header_Credits.png │ ├── Header_Description.png │ ├── Header_Features.png │ ├── Header_Planned.png │ ├── Header_Usage.png │ ├── Headlines │ │ ├── Contributing.png │ │ ├── Contributing.svg │ │ ├── Credits.png │ │ ├── Credits.svg │ │ ├── Description.png │ │ ├── Description.svg │ │ ├── Features.png │ │ ├── Features.svg │ │ ├── Usage.png │ │ └── Usage.svg │ ├── Images │ │ ├── Thumbnail.png │ │ └── old v1.xx │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── Headline.png │ │ │ └── Thumbnail.png │ ├── Ko-Fi_LowRes.png │ ├── MainIcon_LowRes_128.png │ ├── MainIcon_LowRes_256.png │ └── ModpageAssets.url └── nm_description.bbc ├── pyproject.toml ├── res ├── 7-zip │ ├── 7z.dll │ ├── 7z.exe │ ├── 7z_History.txt │ ├── 7z_License.txt │ └── 7z_readme.txt ├── blacklist ├── dark_theme.json ├── ext_resources.json ├── fonts │ └── BebasNeue Book.otf ├── games.json ├── icons │ ├── Cyberpunk2077.ico │ ├── Enderal.ico │ ├── EnderalSpecialEdition.ico │ ├── Fallout3.ico │ ├── Fallout4.ico │ ├── FalloutNV.ico │ ├── Oblivion.ico │ ├── Skyrim.ico │ ├── SkyrimSE.ico │ ├── mmm.ico │ ├── mmm.svg │ ├── mo2.png │ └── vortex.png ├── light_theme.json ├── loc │ ├── de.ts │ └── pt_BR.ts ├── resources.qrc └── style.qss ├── scripts ├── build.py ├── compare_folders.py ├── dump_leveldb_to_json.py ├── generate_nm_description.py └── hash_folder.py ├── src ├── app.py ├── core │ ├── __init__.py │ ├── config │ │ ├── __init__.py │ │ └── app_config.py │ ├── game │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── game.py │ ├── instance │ │ ├── __init__.py │ │ ├── instance.py │ │ ├── metadata.py │ │ ├── mod.py │ │ └── tool.py │ ├── migrator │ │ ├── __init__.py │ │ ├── file_blacklist.py │ │ ├── migration_report.py │ │ └── migrator.py │ ├── mod_manager │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── instance_info.py │ │ ├── mod_manager.py │ │ ├── modorganizer │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── mo2_instance_info.py │ │ │ └── modorganizer.py │ │ └── vortex │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── profile_info.py │ │ │ └── vortex.py │ └── utilities │ │ ├── __init__.py │ │ ├── downloader.py │ │ ├── exceptions.py │ │ ├── filesystem.py │ │ ├── filter.py │ │ ├── ini_file.py │ │ ├── leveldb.py │ │ ├── licenses.py │ │ ├── localisation.py │ │ ├── progress_update.py │ │ ├── reverse_dict.py │ │ └── unique.py ├── main.py └── ui │ ├── __init__.py │ ├── instance │ ├── __init__.py │ ├── instance_widget.py │ ├── modlist_menu.py │ ├── modlist_widget.py │ ├── tools_menu.py │ └── tools_widget.py │ ├── main_widget.py │ ├── main_window.py │ ├── menubar.py │ ├── migrator │ ├── __init__.py │ ├── instance_creator │ │ ├── __init__.py │ │ ├── base_creator_widget.py │ │ ├── instance_creator_widget.py │ │ ├── modorganizer_creator_widget.py │ │ └── vortex_creator_widget.py │ ├── instance_selector │ │ ├── __init__.py │ │ ├── base_selector_widget.py │ │ ├── instance_selector_widget.py │ │ ├── modorganizer_selector_widget.py │ │ └── vortex_selector_widget.py │ ├── migration_report_dialog.py │ └── migrator_widget.py │ ├── settings │ ├── __init__.py │ ├── settings_dialog.py │ └── settings_widget.py │ ├── statusbar.py │ ├── utilities │ ├── __init__.py │ └── theme_manager.py │ └── widgets │ ├── __init__.py │ ├── about_dialog.py │ └── shadow_scroll_area.py ├── stubs ├── darkdetect │ └── __init__.pyi └── plyvel │ └── __init__.pyi ├── tests ├── __init__.py ├── base_test.py ├── core │ ├── __init__.py │ ├── game │ │ ├── __init__.py │ │ └── test_game.py │ ├── instance │ │ ├── __init__.py │ │ └── test_instance.py │ ├── migrator │ │ ├── __init__.py │ │ ├── test_file_blacklist.py │ │ └── test_migrator.py │ ├── mod_manager │ │ ├── __init__.py │ │ ├── test_modorganizer.py │ │ └── test_vortex.py │ └── utilities │ │ ├── __init__.py │ │ ├── test_leveldb.py │ │ └── test_localisation.py ├── data │ ├── empty_state.v2.json │ ├── full_state.v2.json │ ├── mod_instance │ │ ├── ModOrganizer.ini │ │ ├── ModOrganizer_global.ini │ │ ├── mods │ │ │ ├── (Part 2) Engine Fixes - skse64 Preloader and TBB Lib │ │ │ │ ├── Root │ │ │ │ │ ├── d3dx9_42.dll │ │ │ │ │ ├── tbb.dll │ │ │ │ │ └── tbbmalloc.dll │ │ │ │ └── meta.ini │ │ │ ├── DIP_separator │ │ │ │ └── meta.ini │ │ │ ├── Dynamic Interface Patcher - DIP │ │ │ │ ├── DIP │ │ │ │ │ └── DIP.exe │ │ │ │ └── meta.ini │ │ │ ├── Obsidian Weathers and Seasons - German │ │ │ │ ├── Obsidian Weathers.esp │ │ │ │ ├── meta.ini │ │ │ │ └── scripts │ │ │ │ │ ├── obsidianpresets.pex │ │ │ │ │ └── obsidianseasons.pex │ │ │ ├── Obsidian Weathers and Seasons │ │ │ │ ├── Obsidian Weathers.bsa │ │ │ │ ├── Obsidian Weathers.esp │ │ │ │ └── meta.ini │ │ │ ├── Ordinator - Perks of Skyrim │ │ │ │ ├── Ordinator - Perks of Skyrim.bsa │ │ │ │ ├── Ordinator - Perks of Skyrim.esp │ │ │ │ └── meta.ini │ │ │ ├── RS Children Overhaul │ │ │ │ ├── RSChildren Patch - BS Bruma.esp │ │ │ │ ├── RSChildren.esp │ │ │ │ ├── RSkyrimChildren.esm │ │ │ │ ├── meta.ini │ │ │ │ └── scripts │ │ │ │ │ ├── PlayerVampireQuestScript.pex │ │ │ │ │ └── _RSkyrimChildren_Init.pex │ │ │ ├── Test Mods_separator │ │ │ │ └── meta.ini │ │ │ ├── Wet and Cold SE - German │ │ │ │ ├── WetandCold.esp │ │ │ │ ├── interface │ │ │ │ │ └── translations │ │ │ │ │ │ └── wetandcold_german.txt │ │ │ │ ├── meta.ini │ │ │ │ └── scripts │ │ │ │ │ ├── _wetquestscript.pex │ │ │ │ │ └── _wetskyuiconfig.pex.mohidden │ │ │ └── Wet and Cold SE │ │ │ │ ├── WetandCold.esp │ │ │ │ ├── interface │ │ │ │ ├── translations │ │ │ │ │ ├── wetandcold_czech.txt │ │ │ │ │ ├── wetandcold_english.txt │ │ │ │ │ ├── wetandcold_french.txt │ │ │ │ │ ├── wetandcold_german.txt │ │ │ │ │ ├── wetandcold_italian.txt │ │ │ │ │ ├── wetandcold_japanese.txt │ │ │ │ │ ├── wetandcold_polish.txt │ │ │ │ │ ├── wetandcold_russian.txt │ │ │ │ │ └── wetandcold_spanish.txt │ │ │ │ └── wetandcold │ │ │ │ │ └── title.dds │ │ │ │ ├── meta.ini │ │ │ │ └── scripts │ │ │ │ ├── _wetbpautoadjust.pex │ │ │ │ ├── _wetcoldbreath.pex │ │ │ │ ├── _wetcoldbreathaction.pex │ │ │ │ ├── _wetcoldbreathfrigid.pex │ │ │ │ ├── _wetcoldregions.pex │ │ │ │ ├── _wetequipash.pex │ │ │ │ ├── _wetequipcold.pex │ │ │ │ ├── _wetequiprain.pex │ │ │ │ ├── _wetequipsurvival.pex │ │ │ │ ├── _weteyeblur.pex │ │ │ │ ├── _wetfootwet.pex │ │ │ │ ├── _wetgohome.pex │ │ │ │ ├── _wetnpcalias.pex │ │ │ │ ├── _wetoldconfig.pex │ │ │ │ ├── _wetplayeralias.pex │ │ │ │ ├── _wetpolling.pex │ │ │ │ ├── _wetquestscript.pex │ │ │ │ ├── _wetshelterdetect.pex │ │ │ │ ├── _wetskyuiconfig.pex │ │ │ │ └── _wetswim.pex │ │ ├── overwrite │ │ │ └── test.txt │ │ └── profiles │ │ │ ├── Default │ │ │ ├── Skyrim.ini │ │ │ ├── SkyrimCustom.ini │ │ │ ├── SkyrimPrefs.ini │ │ │ ├── loadorder.txt │ │ │ ├── modlist.txt │ │ │ └── plugins.txt │ │ │ └── TestProfile │ │ │ └── modlist.txt │ ├── ready_state.v2.json │ ├── skyrimse │ │ ├── masterlist │ │ │ └── masterlist.yaml │ │ ├── profiles │ │ │ ├── 1a2b3c4d │ │ │ │ ├── Skyrim.ini │ │ │ │ ├── SkyrimCustom.ini │ │ │ │ ├── SkyrimPrefs.ini │ │ │ │ ├── loadorder.txt │ │ │ │ └── plugins.txt │ │ │ └── BkIX54nayg │ │ │ │ ├── loadorder.txt │ │ │ │ └── plugins.txt │ │ ├── snapshots │ │ │ └── snapshot.json │ │ └── userlist.yaml │ └── skyrimse_mods │ │ ├── (Part 2) Engine Fixes - skse64 Preloader and TBB Lib-17230-2020-3-1611367474 │ │ ├── d3dx9_42.dll │ │ ├── tbb.dll │ │ └── tbbmalloc.dll │ │ ├── Dynamic Interface Patcher-96891-v2-1-5-1739022413 │ │ └── DIP │ │ │ └── DIP.exe │ │ ├── Obsidian Weathers - 1.07a-12125-1-07a-1620568126 │ │ ├── Obsidian Weathers.bsa │ │ └── Obsidian Weathers.esp │ │ ├── Obsidian Weathers SE - Deutsch 1.07-16286-1-07-1549797197 │ │ ├── Obsidian Weathers.esp │ │ └── scripts │ │ │ ├── obsidianpresets.pex │ │ │ └── obsidianseasons.pex │ │ ├── Ordinator 9.31.0-1137-9-31-0-1635693140 │ │ ├── Ordinator - Perks of Skyrim.bsa │ │ └── Ordinator - Perks of Skyrim.esp │ │ ├── RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543 │ │ ├── RSChildren Patch - BS Bruma.esp │ │ ├── RSChildren.esp │ │ ├── RSkyrimChildren.esm │ │ └── scripts │ │ │ ├── PlayerVampireQuestScript.pex │ │ │ └── _RSkyrimChildren_Init.pex │ │ ├── Wet and Cold SE - Deutsch-89391-2-4-0-1716634410 │ │ ├── WetandCold.esp │ │ ├── interface │ │ │ └── translations │ │ │ │ └── wetandcold_german.txt │ │ └── scripts │ │ │ ├── _wetquestscript.pex │ │ │ └── _wetskyuiconfig.pex │ │ ├── Wet and Cold SE v2.4.0-644-2-4-0-1601332084 │ │ ├── WetandCold.esp │ │ ├── interface │ │ │ ├── translations │ │ │ │ ├── wetandcold_czech.txt │ │ │ │ ├── wetandcold_english.txt │ │ │ │ ├── wetandcold_french.txt │ │ │ │ ├── wetandcold_german.txt │ │ │ │ ├── wetandcold_italian.txt │ │ │ │ ├── wetandcold_japanese.txt │ │ │ │ ├── wetandcold_polish.txt │ │ │ │ ├── wetandcold_russian.txt │ │ │ │ └── wetandcold_spanish.txt │ │ │ └── wetandcold │ │ │ │ └── title.dds │ │ └── scripts │ │ │ ├── _wetbpautoadjust.pex │ │ │ ├── _wetcoldbreath.pex │ │ │ ├── _wetcoldbreathaction.pex │ │ │ ├── _wetcoldbreathfrigid.pex │ │ │ ├── _wetcoldregions.pex │ │ │ ├── _wetequipash.pex │ │ │ ├── _wetequipcold.pex │ │ │ ├── _wetequiprain.pex │ │ │ ├── _wetequipsurvival.pex │ │ │ ├── _weteyeblur.pex │ │ │ ├── _wetfootwet.pex │ │ │ ├── _wetgohome.pex │ │ │ ├── _wetnpcalias.pex │ │ │ ├── _wetoldconfig.pex │ │ │ ├── _wetplayeralias.pex │ │ │ ├── _wetpolling.pex │ │ │ ├── _wetquestscript.pex │ │ │ ├── _wetshelterdetect.pex │ │ │ ├── _wetskyuiconfig.pex │ │ │ └── _wetswim.pex │ │ └── __vortex_staging_folder ├── setup │ ├── __init__.py │ └── mock_plyvel.py └── ui │ ├── __init__.py │ ├── instance │ ├── __init__.py │ └── test_modlist_widget.py │ └── migrator │ ├── __init__.py │ ├── instance_creator │ ├── __init__.py │ └── test_modorganizer_creator_widget.py │ ├── instance_selector │ ├── __init__.py │ └── test_modorganizer_selector_widget.py │ └── test_migrator_widget.py ├── update.json ├── update_lupdate_file.bat ├── update_qts.bat ├── uv.lock └── version /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/lint_and_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/.github/workflows/lint_and_test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /.vscode/module.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/.vscode/module.code-snippets -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/Changelog.md -------------------------------------------------------------------------------- /Hardlinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/Hardlinks.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/LICENSE -------------------------------------------------------------------------------- /Mod-Manager-Migrator.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/Mod-Manager-Migrator.code-workspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/README.md -------------------------------------------------------------------------------- /compile_qrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/compile_qrc.bat -------------------------------------------------------------------------------- /compile_qts.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | uv run pyside6-lrelease -project qt_lupdate.json 3 | -------------------------------------------------------------------------------- /concepts/Concept_MainPageRedesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/concepts/Concept_MainPageRedesign.png -------------------------------------------------------------------------------- /concepts/Illustrator/Mod-Manager-Labels.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/concepts/Illustrator/Mod-Manager-Labels.ai -------------------------------------------------------------------------------- /generate_nm_description.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/generate_nm_description.bat -------------------------------------------------------------------------------- /misc_assets/GiO_NM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/GiO_NM.png -------------------------------------------------------------------------------- /misc_assets/HeadLineGH.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/HeadLineGH.ai -------------------------------------------------------------------------------- /misc_assets/HeadLineGH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/HeadLineGH.svg -------------------------------------------------------------------------------- /misc_assets/KoFi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/KoFi.png -------------------------------------------------------------------------------- /misc_assets/VC_GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/VC_GitHub.png -------------------------------------------------------------------------------- /misc_assets/modpage/GitHUB_LowRes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/GitHUB_LowRes.png -------------------------------------------------------------------------------- /misc_assets/modpage/Header_Contributing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Header_Contributing.png -------------------------------------------------------------------------------- /misc_assets/modpage/Header_Credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Header_Credits.png -------------------------------------------------------------------------------- /misc_assets/modpage/Header_Description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Header_Description.png -------------------------------------------------------------------------------- /misc_assets/modpage/Header_Features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Header_Features.png -------------------------------------------------------------------------------- /misc_assets/modpage/Header_Planned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Header_Planned.png -------------------------------------------------------------------------------- /misc_assets/modpage/Header_Usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Header_Usage.png -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Contributing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Contributing.png -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Contributing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Contributing.svg -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Credits.png -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Credits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Credits.svg -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Description.png -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Description.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Description.svg -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Features.png -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Features.svg -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Usage.png -------------------------------------------------------------------------------- /misc_assets/modpage/Headlines/Usage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Headlines/Usage.svg -------------------------------------------------------------------------------- /misc_assets/modpage/Images/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Images/Thumbnail.png -------------------------------------------------------------------------------- /misc_assets/modpage/Images/old v1.xx/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Images/old v1.xx/1.png -------------------------------------------------------------------------------- /misc_assets/modpage/Images/old v1.xx/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Images/old v1.xx/2.png -------------------------------------------------------------------------------- /misc_assets/modpage/Images/old v1.xx/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Images/old v1.xx/3.png -------------------------------------------------------------------------------- /misc_assets/modpage/Images/old v1.xx/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Images/old v1.xx/4.png -------------------------------------------------------------------------------- /misc_assets/modpage/Images/old v1.xx/Headline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Images/old v1.xx/Headline.png -------------------------------------------------------------------------------- /misc_assets/modpage/Images/old v1.xx/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Images/old v1.xx/Thumbnail.png -------------------------------------------------------------------------------- /misc_assets/modpage/Ko-Fi_LowRes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/Ko-Fi_LowRes.png -------------------------------------------------------------------------------- /misc_assets/modpage/MainIcon_LowRes_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/MainIcon_LowRes_128.png -------------------------------------------------------------------------------- /misc_assets/modpage/MainIcon_LowRes_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/MainIcon_LowRes_256.png -------------------------------------------------------------------------------- /misc_assets/modpage/ModpageAssets.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/modpage/ModpageAssets.url -------------------------------------------------------------------------------- /misc_assets/nm_description.bbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/misc_assets/nm_description.bbc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /res/7-zip/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/7-zip/7z.dll -------------------------------------------------------------------------------- /res/7-zip/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/7-zip/7z.exe -------------------------------------------------------------------------------- /res/7-zip/7z_History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/7-zip/7z_History.txt -------------------------------------------------------------------------------- /res/7-zip/7z_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/7-zip/7z_License.txt -------------------------------------------------------------------------------- /res/7-zip/7z_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/7-zip/7z_readme.txt -------------------------------------------------------------------------------- /res/blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/blacklist -------------------------------------------------------------------------------- /res/dark_theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/dark_theme.json -------------------------------------------------------------------------------- /res/ext_resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/ext_resources.json -------------------------------------------------------------------------------- /res/fonts/BebasNeue Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/fonts/BebasNeue Book.otf -------------------------------------------------------------------------------- /res/games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/games.json -------------------------------------------------------------------------------- /res/icons/Cyberpunk2077.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/Cyberpunk2077.ico -------------------------------------------------------------------------------- /res/icons/Enderal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/Enderal.ico -------------------------------------------------------------------------------- /res/icons/EnderalSpecialEdition.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/EnderalSpecialEdition.ico -------------------------------------------------------------------------------- /res/icons/Fallout3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/Fallout3.ico -------------------------------------------------------------------------------- /res/icons/Fallout4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/Fallout4.ico -------------------------------------------------------------------------------- /res/icons/FalloutNV.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/FalloutNV.ico -------------------------------------------------------------------------------- /res/icons/Oblivion.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/Oblivion.ico -------------------------------------------------------------------------------- /res/icons/Skyrim.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/Skyrim.ico -------------------------------------------------------------------------------- /res/icons/SkyrimSE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/SkyrimSE.ico -------------------------------------------------------------------------------- /res/icons/mmm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/mmm.ico -------------------------------------------------------------------------------- /res/icons/mmm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/mmm.svg -------------------------------------------------------------------------------- /res/icons/mo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/mo2.png -------------------------------------------------------------------------------- /res/icons/vortex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/icons/vortex.png -------------------------------------------------------------------------------- /res/light_theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/light_theme.json -------------------------------------------------------------------------------- /res/loc/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/loc/de.ts -------------------------------------------------------------------------------- /res/loc/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/loc/pt_BR.ts -------------------------------------------------------------------------------- /res/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/resources.qrc -------------------------------------------------------------------------------- /res/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/res/style.qss -------------------------------------------------------------------------------- /scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/scripts/build.py -------------------------------------------------------------------------------- /scripts/compare_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/scripts/compare_folders.py -------------------------------------------------------------------------------- /scripts/dump_leveldb_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/scripts/dump_leveldb_to_json.py -------------------------------------------------------------------------------- /scripts/generate_nm_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/scripts/generate_nm_description.py -------------------------------------------------------------------------------- /scripts/hash_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/scripts/hash_folder.py -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/app.py -------------------------------------------------------------------------------- /src/core/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/core/config/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/core/config/app_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/config/app_config.py -------------------------------------------------------------------------------- /src/core/game/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/core/game/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/game/exceptions.py -------------------------------------------------------------------------------- /src/core/game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/game/game.py -------------------------------------------------------------------------------- /src/core/instance/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/core/instance/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/instance/instance.py -------------------------------------------------------------------------------- /src/core/instance/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/instance/metadata.py -------------------------------------------------------------------------------- /src/core/instance/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/instance/mod.py -------------------------------------------------------------------------------- /src/core/instance/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/instance/tool.py -------------------------------------------------------------------------------- /src/core/migrator/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/core/migrator/file_blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/migrator/file_blacklist.py -------------------------------------------------------------------------------- /src/core/migrator/migration_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/migrator/migration_report.py -------------------------------------------------------------------------------- /src/core/migrator/migrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/migrator/migrator.py -------------------------------------------------------------------------------- /src/core/mod_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/__init__.py -------------------------------------------------------------------------------- /src/core/mod_manager/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/exceptions.py -------------------------------------------------------------------------------- /src/core/mod_manager/instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/instance_info.py -------------------------------------------------------------------------------- /src/core/mod_manager/mod_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/mod_manager.py -------------------------------------------------------------------------------- /src/core/mod_manager/modorganizer/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/core/mod_manager/modorganizer/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/modorganizer/exceptions.py -------------------------------------------------------------------------------- /src/core/mod_manager/modorganizer/mo2_instance_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/modorganizer/mo2_instance_info.py -------------------------------------------------------------------------------- /src/core/mod_manager/modorganizer/modorganizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/modorganizer/modorganizer.py -------------------------------------------------------------------------------- /src/core/mod_manager/vortex/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/core/mod_manager/vortex/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/vortex/exceptions.py -------------------------------------------------------------------------------- /src/core/mod_manager/vortex/profile_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/vortex/profile_info.py -------------------------------------------------------------------------------- /src/core/mod_manager/vortex/vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/mod_manager/vortex/vortex.py -------------------------------------------------------------------------------- /src/core/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/core/utilities/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/downloader.py -------------------------------------------------------------------------------- /src/core/utilities/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/exceptions.py -------------------------------------------------------------------------------- /src/core/utilities/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/filesystem.py -------------------------------------------------------------------------------- /src/core/utilities/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/filter.py -------------------------------------------------------------------------------- /src/core/utilities/ini_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/ini_file.py -------------------------------------------------------------------------------- /src/core/utilities/leveldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/leveldb.py -------------------------------------------------------------------------------- /src/core/utilities/licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/licenses.py -------------------------------------------------------------------------------- /src/core/utilities/localisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/localisation.py -------------------------------------------------------------------------------- /src/core/utilities/progress_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/progress_update.py -------------------------------------------------------------------------------- /src/core/utilities/reverse_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/reverse_dict.py -------------------------------------------------------------------------------- /src/core/utilities/unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/core/utilities/unique.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/main.py -------------------------------------------------------------------------------- /src/ui/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/ui/instance/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/ui/instance/instance_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/instance/instance_widget.py -------------------------------------------------------------------------------- /src/ui/instance/modlist_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/instance/modlist_menu.py -------------------------------------------------------------------------------- /src/ui/instance/modlist_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/instance/modlist_widget.py -------------------------------------------------------------------------------- /src/ui/instance/tools_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/instance/tools_menu.py -------------------------------------------------------------------------------- /src/ui/instance/tools_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/instance/tools_widget.py -------------------------------------------------------------------------------- /src/ui/main_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/main_widget.py -------------------------------------------------------------------------------- /src/ui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/main_window.py -------------------------------------------------------------------------------- /src/ui/menubar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/menubar.py -------------------------------------------------------------------------------- /src/ui/migrator/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/ui/migrator/instance_creator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_creator/__init__.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_creator/base_creator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_creator/base_creator_widget.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_creator/instance_creator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_creator/instance_creator_widget.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_creator/modorganizer_creator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_creator/modorganizer_creator_widget.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_creator/vortex_creator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_creator/vortex_creator_widget.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_selector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_selector/__init__.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_selector/base_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_selector/base_selector_widget.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_selector/instance_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_selector/instance_selector_widget.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_selector/modorganizer_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_selector/modorganizer_selector_widget.py -------------------------------------------------------------------------------- /src/ui/migrator/instance_selector/vortex_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/instance_selector/vortex_selector_widget.py -------------------------------------------------------------------------------- /src/ui/migrator/migration_report_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/migration_report_dialog.py -------------------------------------------------------------------------------- /src/ui/migrator/migrator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/migrator/migrator_widget.py -------------------------------------------------------------------------------- /src/ui/settings/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/ui/settings/settings_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/settings/settings_dialog.py -------------------------------------------------------------------------------- /src/ui/settings/settings_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/settings/settings_widget.py -------------------------------------------------------------------------------- /src/ui/statusbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/statusbar.py -------------------------------------------------------------------------------- /src/ui/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/utilities/__init__.py -------------------------------------------------------------------------------- /src/ui/utilities/theme_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/utilities/theme_manager.py -------------------------------------------------------------------------------- /src/ui/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /src/ui/widgets/about_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/widgets/about_dialog.py -------------------------------------------------------------------------------- /src/ui/widgets/shadow_scroll_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/src/ui/widgets/shadow_scroll_area.py -------------------------------------------------------------------------------- /stubs/darkdetect/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/stubs/darkdetect/__init__.pyi -------------------------------------------------------------------------------- /stubs/plyvel/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/stubs/plyvel/__init__.pyi -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/base_test.py -------------------------------------------------------------------------------- /tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/core/game/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/core/game/test_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/core/game/test_game.py -------------------------------------------------------------------------------- /tests/core/instance/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/core/instance/test_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/core/instance/test_instance.py -------------------------------------------------------------------------------- /tests/core/migrator/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/core/migrator/test_file_blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/core/migrator/test_file_blacklist.py -------------------------------------------------------------------------------- /tests/core/migrator/test_migrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/core/migrator/test_migrator.py -------------------------------------------------------------------------------- /tests/core/mod_manager/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/core/mod_manager/test_modorganizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/core/mod_manager/test_modorganizer.py -------------------------------------------------------------------------------- /tests/core/mod_manager/test_vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/core/mod_manager/test_vortex.py -------------------------------------------------------------------------------- /tests/core/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/core/utilities/test_leveldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/core/utilities/test_leveldb.py -------------------------------------------------------------------------------- /tests/core/utilities/test_localisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/core/utilities/test_localisation.py -------------------------------------------------------------------------------- /tests/data/empty_state.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/empty_state.v2.json -------------------------------------------------------------------------------- /tests/data/full_state.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/full_state.v2.json -------------------------------------------------------------------------------- /tests/data/mod_instance/ModOrganizer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/ModOrganizer.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/ModOrganizer_global.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/ModOrganizer_global.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib/Root/d3dx9_42.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib/Root/d3dx9_42.dll -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib/Root/tbb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib/Root/tbb.dll -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib/Root/tbbmalloc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib/Root/tbbmalloc.dll -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/DIP_separator/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/DIP_separator/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Dynamic Interface Patcher - DIP/DIP/DIP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Dynamic Interface Patcher - DIP/DIP/DIP.exe -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Dynamic Interface Patcher - DIP/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Dynamic Interface Patcher - DIP/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Obsidian Weathers and Seasons - German/Obsidian Weathers.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Obsidian Weathers and Seasons - German/Obsidian Weathers.esp -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Obsidian Weathers and Seasons - German/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Obsidian Weathers and Seasons - German/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Obsidian Weathers and Seasons - German/scripts/obsidianpresets.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Obsidian Weathers and Seasons - German/scripts/obsidianpresets.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Obsidian Weathers and Seasons - German/scripts/obsidianseasons.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Obsidian Weathers and Seasons - German/scripts/obsidianseasons.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Obsidian Weathers and Seasons/Obsidian Weathers.bsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Obsidian Weathers and Seasons/Obsidian Weathers.bsa -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Obsidian Weathers and Seasons/Obsidian Weathers.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Obsidian Weathers and Seasons/Obsidian Weathers.esp -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Obsidian Weathers and Seasons/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Obsidian Weathers and Seasons/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Ordinator - Perks of Skyrim/Ordinator - Perks of Skyrim.bsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Ordinator - Perks of Skyrim/Ordinator - Perks of Skyrim.bsa -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Ordinator - Perks of Skyrim/Ordinator - Perks of Skyrim.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Ordinator - Perks of Skyrim/Ordinator - Perks of Skyrim.esp -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Ordinator - Perks of Skyrim/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Ordinator - Perks of Skyrim/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/RS Children Overhaul/RSChildren Patch - BS Bruma.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/RS Children Overhaul/RSChildren Patch - BS Bruma.esp -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/RS Children Overhaul/RSChildren.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/RS Children Overhaul/RSChildren.esp -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/RS Children Overhaul/RSkyrimChildren.esm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/RS Children Overhaul/RSkyrimChildren.esm -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/RS Children Overhaul/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/RS Children Overhaul/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/RS Children Overhaul/scripts/PlayerVampireQuestScript.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/RS Children Overhaul/scripts/PlayerVampireQuestScript.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/RS Children Overhaul/scripts/_RSkyrimChildren_Init.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/RS Children Overhaul/scripts/_RSkyrimChildren_Init.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Test Mods_separator/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Test Mods_separator/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE - German/WetandCold.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE - German/WetandCold.esp -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE - German/interface/translations/wetandcold_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE - German/interface/translations/wetandcold_german.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE - German/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE - German/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE - German/scripts/_wetquestscript.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE - German/scripts/_wetquestscript.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE - German/scripts/_wetskyuiconfig.pex.mohidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE - German/scripts/_wetskyuiconfig.pex.mohidden -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/WetandCold.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/WetandCold.esp -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_czech.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_english.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_french.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_german.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_italian.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_japanese.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_polish.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_russian.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/translations/wetandcold_spanish.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/interface/wetandcold/title.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/interface/wetandcold/title.dds -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/meta.ini -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetbpautoadjust.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetbpautoadjust.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetcoldbreath.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetcoldbreath.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetcoldbreathaction.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetcoldbreathaction.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetcoldbreathfrigid.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetcoldbreathfrigid.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetcoldregions.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetcoldregions.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetequipash.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetequipash.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetequipcold.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetequipcold.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetequiprain.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetequiprain.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetequipsurvival.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetequipsurvival.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_weteyeblur.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_weteyeblur.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetfootwet.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetfootwet.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetgohome.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetgohome.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetnpcalias.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetnpcalias.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetoldconfig.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetoldconfig.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetplayeralias.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetplayeralias.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetpolling.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetpolling.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetquestscript.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetquestscript.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetshelterdetect.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetshelterdetect.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetskyuiconfig.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetskyuiconfig.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetswim.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/mods/Wet and Cold SE/scripts/_wetswim.pex -------------------------------------------------------------------------------- /tests/data/mod_instance/overwrite/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/overwrite/test.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/profiles/Default/Skyrim.ini: -------------------------------------------------------------------------------- 1 | Dummy file -------------------------------------------------------------------------------- /tests/data/mod_instance/profiles/Default/SkyrimCustom.ini: -------------------------------------------------------------------------------- 1 | Dummy file -------------------------------------------------------------------------------- /tests/data/mod_instance/profiles/Default/SkyrimPrefs.ini: -------------------------------------------------------------------------------- 1 | Dummy file -------------------------------------------------------------------------------- /tests/data/mod_instance/profiles/Default/loadorder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/mod_instance/profiles/Default/modlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/profiles/Default/modlist.txt -------------------------------------------------------------------------------- /tests/data/mod_instance/profiles/Default/plugins.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/mod_instance/profiles/TestProfile/modlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/mod_instance/profiles/TestProfile/modlist.txt -------------------------------------------------------------------------------- /tests/data/ready_state.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/ready_state.v2.json -------------------------------------------------------------------------------- /tests/data/skyrimse/masterlist/masterlist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse/masterlist/masterlist.yaml -------------------------------------------------------------------------------- /tests/data/skyrimse/profiles/1a2b3c4d/Skyrim.ini: -------------------------------------------------------------------------------- 1 | Dummy file -------------------------------------------------------------------------------- /tests/data/skyrimse/profiles/1a2b3c4d/SkyrimCustom.ini: -------------------------------------------------------------------------------- 1 | Dummy file -------------------------------------------------------------------------------- /tests/data/skyrimse/profiles/1a2b3c4d/SkyrimPrefs.ini: -------------------------------------------------------------------------------- 1 | Dummy file -------------------------------------------------------------------------------- /tests/data/skyrimse/profiles/1a2b3c4d/loadorder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/skyrimse/profiles/1a2b3c4d/plugins.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/skyrimse/profiles/BkIX54nayg/loadorder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/skyrimse/profiles/BkIX54nayg/plugins.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/skyrimse/snapshots/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse/snapshots/snapshot.json -------------------------------------------------------------------------------- /tests/data/skyrimse/userlist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse/userlist.yaml -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib-17230-2020-3-1611367474/d3dx9_42.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib-17230-2020-3-1611367474/d3dx9_42.dll -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib-17230-2020-3-1611367474/tbb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib-17230-2020-3-1611367474/tbb.dll -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib-17230-2020-3-1611367474/tbbmalloc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/(Part 2) Engine Fixes - skse64 Preloader and TBB Lib-17230-2020-3-1611367474/tbbmalloc.dll -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Dynamic Interface Patcher-96891-v2-1-5-1739022413/DIP/DIP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Dynamic Interface Patcher-96891-v2-1-5-1739022413/DIP/DIP.exe -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Obsidian Weathers - 1.07a-12125-1-07a-1620568126/Obsidian Weathers.bsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Obsidian Weathers - 1.07a-12125-1-07a-1620568126/Obsidian Weathers.bsa -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Obsidian Weathers - 1.07a-12125-1-07a-1620568126/Obsidian Weathers.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Obsidian Weathers - 1.07a-12125-1-07a-1620568126/Obsidian Weathers.esp -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Obsidian Weathers SE - Deutsch 1.07-16286-1-07-1549797197/Obsidian Weathers.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Obsidian Weathers SE - Deutsch 1.07-16286-1-07-1549797197/Obsidian Weathers.esp -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Obsidian Weathers SE - Deutsch 1.07-16286-1-07-1549797197/scripts/obsidianpresets.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Obsidian Weathers SE - Deutsch 1.07-16286-1-07-1549797197/scripts/obsidianpresets.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Obsidian Weathers SE - Deutsch 1.07-16286-1-07-1549797197/scripts/obsidianseasons.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Obsidian Weathers SE - Deutsch 1.07-16286-1-07-1549797197/scripts/obsidianseasons.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Ordinator 9.31.0-1137-9-31-0-1635693140/Ordinator - Perks of Skyrim.bsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Ordinator 9.31.0-1137-9-31-0-1635693140/Ordinator - Perks of Skyrim.bsa -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Ordinator 9.31.0-1137-9-31-0-1635693140/Ordinator - Perks of Skyrim.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Ordinator 9.31.0-1137-9-31-0-1635693140/Ordinator - Perks of Skyrim.esp -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/RSChildren Patch - BS Bruma.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/RSChildren Patch - BS Bruma.esp -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/RSChildren.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/RSChildren.esp -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/RSkyrimChildren.esm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/RSkyrimChildren.esm -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/scripts/PlayerVampireQuestScript.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/scripts/PlayerVampireQuestScript.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/scripts/_RSkyrimChildren_Init.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/RSSE Children Overhaul 1.1.3 with hotfix 1-2650-1-1-3HF1-1583835543/scripts/_RSkyrimChildren_Init.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE - Deutsch-89391-2-4-0-1716634410/WetandCold.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE - Deutsch-89391-2-4-0-1716634410/WetandCold.esp -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE - Deutsch-89391-2-4-0-1716634410/interface/translations/wetandcold_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE - Deutsch-89391-2-4-0-1716634410/interface/translations/wetandcold_german.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE - Deutsch-89391-2-4-0-1716634410/scripts/_wetquestscript.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE - Deutsch-89391-2-4-0-1716634410/scripts/_wetquestscript.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE - Deutsch-89391-2-4-0-1716634410/scripts/_wetskyuiconfig.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE - Deutsch-89391-2-4-0-1716634410/scripts/_wetskyuiconfig.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/WetandCold.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/WetandCold.esp -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_czech.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_english.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_french.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_german.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_italian.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_japanese.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_polish.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_russian.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/translations/wetandcold_spanish.txt -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/wetandcold/title.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/interface/wetandcold/title.dds -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetbpautoadjust.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetbpautoadjust.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetcoldbreath.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetcoldbreath.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetcoldbreathaction.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetcoldbreathaction.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetcoldbreathfrigid.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetcoldbreathfrigid.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetcoldregions.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetcoldregions.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetequipash.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetequipash.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetequipcold.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetequipcold.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetequiprain.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetequiprain.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetequipsurvival.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetequipsurvival.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_weteyeblur.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_weteyeblur.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetfootwet.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetfootwet.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetgohome.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetgohome.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetnpcalias.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetnpcalias.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetoldconfig.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetoldconfig.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetplayeralias.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetplayeralias.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetpolling.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetpolling.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetquestscript.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetquestscript.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetshelterdetect.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetshelterdetect.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetskyuiconfig.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetskyuiconfig.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetswim.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/data/skyrimse_mods/Wet and Cold SE v2.4.0-644-2-4-0-1601332084/scripts/_wetswim.pex -------------------------------------------------------------------------------- /tests/data/skyrimse_mods/__vortex_staging_folder: -------------------------------------------------------------------------------- 1 | {"instance":"a6e7b802-1642-470d-9a94-b00ce067acb8","game":"skyrimse"} -------------------------------------------------------------------------------- /tests/setup/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/setup/mock_plyvel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/setup/mock_plyvel.py -------------------------------------------------------------------------------- /tests/ui/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/ui/instance/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/ui/instance/test_modlist_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/ui/instance/test_modlist_widget.py -------------------------------------------------------------------------------- /tests/ui/migrator/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/ui/migrator/instance_creator/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/ui/migrator/instance_creator/test_modorganizer_creator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/ui/migrator/instance_creator/test_modorganizer_creator_widget.py -------------------------------------------------------------------------------- /tests/ui/migrator/instance_selector/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright (c) Cutleast 3 | """ 4 | -------------------------------------------------------------------------------- /tests/ui/migrator/instance_selector/test_modorganizer_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/ui/migrator/instance_selector/test_modorganizer_selector_widget.py -------------------------------------------------------------------------------- /tests/ui/migrator/test_migrator_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/tests/ui/migrator/test_migrator_widget.py -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/update.json -------------------------------------------------------------------------------- /update_lupdate_file.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/update_lupdate_file.bat -------------------------------------------------------------------------------- /update_qts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/update_qts.bat -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cutleast/Mod-Manager-Migrator/HEAD/uv.lock -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 3.0 --------------------------------------------------------------------------------