├── .gitattributes ├── .gitignore ├── BUILD.md ├── Binaries ├── KSPDev_Utils.2.6-EVS.dll ├── KSPDev_Utils.2.6-EVS.xml ├── KSPDev_Utils_License.md ├── KSPDev_Utils_README.md ├── MiniAVC-V2.dll └── MiniAVC-V2.version ├── CHANGELOG.md ├── EasyVesselSwitch.netkan ├── EasyVesselSwitch.version ├── LICENSE.md ├── Lang ├── en-us.cfg ├── es-es.cfg ├── fr-fr.cfg ├── it-it.cfg ├── ru.cfg └── zh-cn.cfg ├── PULL_REQUEST_TEMPLATE.md ├── PluginData └── settings.cfg ├── README.md ├── Source ├── Controller.cs ├── EasyVesselSwitch.csproj ├── EasyVesselSwitch.csproj.sdsettings ├── Properties │ └── AssemblyInfo.cs ├── README.md └── VesselInfo.cs ├── Tools ├── .gitignore ├── KspReleaseBuilder.py ├── KspReleaseBuilder_License.md ├── KspReleaseBuilder_Readme.md ├── PublishCurseForge.py ├── PublishGitHub.py ├── PublishSpacedock.py ├── README.md ├── clients │ ├── CurseForgeClient.py │ ├── GitHubClient.py │ ├── SpacedockClient.py │ └── __init__.py ├── logging.conf ├── make_binary.cmd ├── publish_curseforge.cmd ├── publish_curseforge_args.txt ├── publish_github.cmd ├── publish_github_args.txt ├── publish_spacedock.cmd ├── publish_spacedock_args.txt ├── release_setup.json └── utils │ ├── ChangelogUtils.py │ ├── FormDataUtil.py │ └── __init__.py ├── WikiImages ├── Brazil-small-flag.png ├── Chineese-small-flag.png ├── French-small-flag.png ├── Italian-small-flag.png ├── Russian-small-flag.png └── Spanish-small-flag.png └── cover.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/BUILD.md -------------------------------------------------------------------------------- /Binaries/KSPDev_Utils.2.6-EVS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Binaries/KSPDev_Utils.2.6-EVS.dll -------------------------------------------------------------------------------- /Binaries/KSPDev_Utils.2.6-EVS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Binaries/KSPDev_Utils.2.6-EVS.xml -------------------------------------------------------------------------------- /Binaries/KSPDev_Utils_License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Binaries/KSPDev_Utils_License.md -------------------------------------------------------------------------------- /Binaries/KSPDev_Utils_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Binaries/KSPDev_Utils_README.md -------------------------------------------------------------------------------- /Binaries/MiniAVC-V2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Binaries/MiniAVC-V2.dll -------------------------------------------------------------------------------- /Binaries/MiniAVC-V2.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Binaries/MiniAVC-V2.version -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /EasyVesselSwitch.netkan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/EasyVesselSwitch.netkan -------------------------------------------------------------------------------- /EasyVesselSwitch.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/EasyVesselSwitch.version -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Lang/en-us.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Lang/en-us.cfg -------------------------------------------------------------------------------- /Lang/es-es.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Lang/es-es.cfg -------------------------------------------------------------------------------- /Lang/fr-fr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Lang/fr-fr.cfg -------------------------------------------------------------------------------- /Lang/it-it.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Lang/it-it.cfg -------------------------------------------------------------------------------- /Lang/ru.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Lang/ru.cfg -------------------------------------------------------------------------------- /Lang/zh-cn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Lang/zh-cn.cfg -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /PluginData/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/PluginData/settings.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/README.md -------------------------------------------------------------------------------- /Source/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Source/Controller.cs -------------------------------------------------------------------------------- /Source/EasyVesselSwitch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Source/EasyVesselSwitch.csproj -------------------------------------------------------------------------------- /Source/EasyVesselSwitch.csproj.sdsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Source/EasyVesselSwitch.csproj.sdsettings -------------------------------------------------------------------------------- /Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Source/README.md -------------------------------------------------------------------------------- /Source/VesselInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Source/VesselInfo.cs -------------------------------------------------------------------------------- /Tools/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.log 3 | 4 | -------------------------------------------------------------------------------- /Tools/KspReleaseBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/KspReleaseBuilder.py -------------------------------------------------------------------------------- /Tools/KspReleaseBuilder_License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/KspReleaseBuilder_License.md -------------------------------------------------------------------------------- /Tools/KspReleaseBuilder_Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/KspReleaseBuilder_Readme.md -------------------------------------------------------------------------------- /Tools/PublishCurseForge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/PublishCurseForge.py -------------------------------------------------------------------------------- /Tools/PublishGitHub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/PublishGitHub.py -------------------------------------------------------------------------------- /Tools/PublishSpacedock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/PublishSpacedock.py -------------------------------------------------------------------------------- /Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/README.md -------------------------------------------------------------------------------- /Tools/clients/CurseForgeClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/clients/CurseForgeClient.py -------------------------------------------------------------------------------- /Tools/clients/GitHubClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/clients/GitHubClient.py -------------------------------------------------------------------------------- /Tools/clients/SpacedockClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/clients/SpacedockClient.py -------------------------------------------------------------------------------- /Tools/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/logging.conf -------------------------------------------------------------------------------- /Tools/make_binary.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/make_binary.cmd -------------------------------------------------------------------------------- /Tools/publish_curseforge.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/publish_curseforge.cmd -------------------------------------------------------------------------------- /Tools/publish_curseforge_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/publish_curseforge_args.txt -------------------------------------------------------------------------------- /Tools/publish_github.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/publish_github.cmd -------------------------------------------------------------------------------- /Tools/publish_github_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/publish_github_args.txt -------------------------------------------------------------------------------- /Tools/publish_spacedock.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/publish_spacedock.cmd -------------------------------------------------------------------------------- /Tools/publish_spacedock_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/publish_spacedock_args.txt -------------------------------------------------------------------------------- /Tools/release_setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/release_setup.json -------------------------------------------------------------------------------- /Tools/utils/ChangelogUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/utils/ChangelogUtils.py -------------------------------------------------------------------------------- /Tools/utils/FormDataUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/Tools/utils/FormDataUtil.py -------------------------------------------------------------------------------- /Tools/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WikiImages/Brazil-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/WikiImages/Brazil-small-flag.png -------------------------------------------------------------------------------- /WikiImages/Chineese-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/WikiImages/Chineese-small-flag.png -------------------------------------------------------------------------------- /WikiImages/French-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/WikiImages/French-small-flag.png -------------------------------------------------------------------------------- /WikiImages/Italian-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/WikiImages/Italian-small-flag.png -------------------------------------------------------------------------------- /WikiImages/Russian-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/WikiImages/Russian-small-flag.png -------------------------------------------------------------------------------- /WikiImages/Spanish-small-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/WikiImages/Spanish-small-flag.png -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/HEAD/cover.jpg --------------------------------------------------------------------------------