├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug-report-ENG------------------.md │ ├── bug-report-RU-------------------.md │ ├── feature_request-ENG.md │ └── feature_request-RU.md ├── .gitignore ├── CHFAQ.md ├── CHREADME.md ├── ENGFAQ.md ├── ENGREADME.md ├── FAQ.md ├── Guidelines ├── LocalizationsCH.md ├── LocalizationsENG.md ├── LocalizationsJP.md ├── LocalizationsRu.md ├── ModHelperCH.md ├── ModHelperENG.md ├── ModHelperJP.md └── ModHelperRu.md ├── JPFAQ.md ├── JPREADME.md ├── LICENSE ├── README.md ├── SPT-AKI Profile Editor.Installer └── SPT-AKI Profile Editor.Installer.vdproj ├── SPT-AKI Profile Editor.ModHelper ├── ModHelper.cs ├── ModMetadata.cs ├── SPT-AKI Profile Editor.ModHelper.csproj └── bin │ └── Debug │ └── net9.0 │ ├── SPT-AKI Profile Editor.ModHelper.dll │ └── version ├── SPT-AKI Profile Editor.Tests ├── AppLocalizationTests.cs ├── AppSettingsTests.cs ├── BackupServiceTests.cs ├── CleaningServiceTest.cs ├── EnumsTests │ ├── ActiveQuestTypeTests.cs │ ├── EnumTests.cs │ ├── QuestConditionTypeTests.cs │ ├── QuestStatusTests.cs │ ├── QuestTypeTests.cs │ ├── RequirementTypeTests.cs │ └── SaveEntryTests.cs ├── ExtMethodsTests.cs ├── HelperModTestDirectoryWithMod │ ├── SPT-AKI Profile Editor.ModHelper.dll │ └── version ├── HelpersTests │ ├── ConvertersTests.cs │ ├── FileDownloaderTests.cs │ └── HelperModManagerTests.cs ├── Hepers │ ├── ApplicationManagerTests.cs │ ├── TestHelpers.cs │ ├── TestsApplicationManager.cs │ ├── TestsDialogManager.cs │ ├── TestsHelperModManager.cs │ ├── TestsIssuesService.cs │ ├── TestsWindowsDialogs.cs │ └── TestsWorker.cs ├── IssuesServiceTest.cs ├── ModHelperTestUpdate │ ├── SPT-AKI Profile Editor.ModHelper.dll │ └── version ├── ProfileTests.cs ├── ProgressTransferServiceTests.cs ├── SPT-AKI Profile Editor.Tests.csproj ├── ServerConfigsTests.cs ├── ServerDatabaseTests.cs ├── ViewModelsFactoryTests.cs ├── ViewModelsTests │ ├── AboutTabViewModelTests.cs │ ├── BackupsTabViewModelTests.cs │ ├── BindableViewModelTests.cs │ ├── BuildsTabViewModelTests.cs │ ├── ClothingTabViewModelTests.cs │ ├── CommonSkillsTabViewModelTests.cs │ ├── ContainerWindowViewModelTests.cs │ ├── ExaminedItemsTabViewModelTests.cs │ ├── FastModeViewModelTests.cs │ ├── HideoutTabViewModelTests.cs │ ├── InfoTabViewModelTests.cs │ ├── IssuesDialogViewModelTests.cs │ ├── LocalizationEditorViewModelTests.cs │ ├── MainWindowViewModelTests.cs │ ├── MasteringTabViewModelTests.cs │ ├── MerchantsTabViewModelTests.cs │ ├── MoneyDailogViewModelTests.cs │ ├── ProgressTransferTabViewModelTests.cs │ ├── QuestsTabViewModelTests.cs │ ├── ScavStashTabViewModelTests.cs │ ├── ServerPathEditorViewModelTests.cs │ ├── SettingsDialogViewModelTests.cs │ ├── StashTabViewModelTests.cs │ ├── UpdateDialogViewModelTests.cs │ └── WeaponBuildWindowViewModelTests.cs └── testFiles │ ├── profileWithDuplicatedItems.json │ ├── testBuild.json │ ├── testEquipmentBuild.json │ ├── testModdedBuild.json │ ├── testModdedEquipmentBuild.json │ └── testProfileProgress.json ├── SPT-AKI Profile Editor.sln ├── SPT-AKI Profile Editor ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Classes │ ├── AccentItem.cs │ ├── WorkerNotification.cs │ └── WorkerTask.cs ├── ContainerWindow.xaml ├── ContainerWindow.xaml.cs ├── ContainerWindowViewModel.cs ├── Core │ ├── AppData.cs │ ├── AppLocalization.cs │ ├── AppSettings.cs │ ├── BackupService.cs │ ├── CleaningService.cs │ ├── DefaultValues.cs │ ├── Enums │ │ ├── ActiveQuestType.cs │ │ ├── IssuesAction.cs │ │ ├── ItemRotation.cs │ │ ├── ModdedEntityType.cs │ │ ├── PMCSide.cs │ │ ├── QuestConditionType.cs │ │ ├── QuestStatus.cs │ │ ├── QuestType.cs │ │ ├── SafeEnumConverter.cs │ │ ├── StashEditMode.cs │ │ └── StashType.cs │ ├── Equipment │ │ ├── EquipmentAdapter.cs │ │ ├── EquipmentSlot.cs │ │ ├── EquipmentSlotItem.cs │ │ └── EquipmentSlotPockets.cs │ ├── ExtMethods.cs │ ├── GridFilters │ │ ├── CleaningFromModsTab.cs │ │ ├── MasteringTab.cs │ │ ├── SkillsTab.cs │ │ └── StashTab.cs │ ├── HelperClasses │ │ ├── BackupFile.cs │ │ ├── BindableEntity.cs │ │ ├── ExaminedItem.cs │ │ ├── GridFilters.cs │ │ ├── ModdedEntity.cs │ │ ├── SPTServerDir.cs │ │ ├── SPTServerFile.cs │ │ ├── ServerPathEntry.cs │ │ ├── ServerProfile.cs │ │ └── Translation.cs │ ├── Issues │ │ ├── DuplicateItemsIDIssue.cs │ │ ├── PMCLevelIssue.cs │ │ ├── ProfileIssue.cs │ │ ├── QuestStatusIssue.cs │ │ ├── TraderLoyaltyIssue.cs │ │ └── TraderStandingIssue.cs │ ├── IssuesService.cs │ ├── Logger.cs │ ├── ProfileClasses │ │ ├── ActiveQuest.cs │ │ ├── Character.cs │ │ ├── CharacterBonus.cs │ │ ├── CharacterCustomization.cs │ │ ├── CharacterHealth.cs │ │ ├── CharacterHideout.cs │ │ ├── CharacterHideoutProduction.cs │ │ ├── CharacterInfo.cs │ │ ├── CharacterInventory.cs │ │ ├── CharacterMetric.cs │ │ ├── CharacterQuest.cs │ │ ├── CharacterRepeatableQuest.cs │ │ ├── CharacterSkill.cs │ │ ├── CharacterSkills.cs │ │ ├── CharacterTraderStanding.cs │ │ ├── CharacterTraderStandingExtended.cs │ │ ├── CustomisationUnlock.cs │ │ ├── HideoutArea.cs │ │ ├── InventoryItem │ │ │ ├── DogtagProperties.cs │ │ │ ├── InventoryItem.cs │ │ │ ├── ItemLocation.cs │ │ │ ├── ItemUpd.cs │ │ │ ├── Tag.cs │ │ │ └── UpdFoldable.cs │ │ ├── LocationJsonConverter.cs │ │ ├── Profile.cs │ │ ├── ProfileCharacters.cs │ │ ├── ProfileSaver.cs │ │ ├── RagfairInfo.cs │ │ ├── StartedHideoutProduction.cs │ │ ├── UnlockedInfo.cs │ │ └── UserBuilds │ │ │ ├── Build.cs │ │ │ ├── EquipmentBuild.cs │ │ │ ├── UserBuilds.cs │ │ │ └── WeaponBuild.cs │ ├── ProgressTransfer │ │ ├── Builds.cs │ │ ├── Group.cs │ │ ├── Info.cs │ │ ├── InfoGroup.cs │ │ ├── ProfileProgress.cs │ │ ├── ProgressTransferService.cs │ │ ├── SettingsModel.cs │ │ └── SkillGroup.cs │ └── ServerClasses │ │ ├── BotTypes │ │ ├── BotType.cs │ │ └── BotTypeAppearance.cs │ │ ├── Configs │ │ └── Quest.cs │ │ ├── Handbook │ │ ├── Handbook.cs │ │ ├── HandbookCategory.cs │ │ └── HandbookItem.cs │ │ ├── HandbookHelper.cs │ │ ├── Hideout │ │ ├── HideoutAreaInfo.cs │ │ ├── HideoutProduction.cs │ │ ├── HideoutProductionRequirement.cs │ │ ├── HideoutProductions.cs │ │ └── RequirementType.cs │ │ ├── ItemsDB │ │ ├── Filters.cs │ │ ├── Grid.cs │ │ ├── GridProps.cs │ │ ├── TarkovItem.cs │ │ ├── TarkovItemProperties.cs │ │ └── TarkovItemSlot.cs │ │ ├── Quests │ │ └── QuestData.cs │ │ ├── ServerConfigs.cs │ │ ├── ServerDatabase.cs │ │ ├── ServerGlobals │ │ ├── ExpTable │ │ │ ├── ConfigExp.cs │ │ │ ├── ExpLevel.cs │ │ │ └── LevelExpTable.cs │ │ ├── ItemPreset.cs │ │ ├── Mastering.cs │ │ ├── ServerGlobals.cs │ │ └── ServerGlobalsConfig.cs │ │ └── Traders │ │ ├── LoyaltyLevels.cs │ │ ├── TraderBase.cs │ │ └── TraderSuit.cs ├── Helpers │ ├── AddableCategory.cs │ ├── AddableItem.cs │ ├── ApplicationManager.cs │ ├── BindableViewModel.cs │ ├── BindingProxy.cs │ ├── BooleanToVisibilityConverter.cs │ ├── ClosableDialogViewModel.cs │ ├── Converters.cs │ ├── FileDownloader.cs │ ├── FileDownloaderDialog.cs │ ├── GridControl.cs │ ├── HelperModManager.cs │ ├── HelperModStatus.cs │ ├── ItemViewWindow.cs │ ├── JObjectExtension.cs │ ├── JTokenExtension.cs │ ├── LinksHelper.cs │ ├── MetroDialogManager.cs │ ├── MetroWindowExtension.cs │ ├── MigrationHelper.cs │ ├── NullVisibilityConverter.cs │ ├── PmcBindableViewModel.cs │ ├── RelayCommand.cs │ ├── StringEnumConverterExt.cs │ ├── StringExtension.cs │ ├── ValidListConverter.cs │ ├── ViewModelsFactory.cs │ ├── WeaponBuildCategory.cs │ ├── WindowsDialogs.cs │ └── Worker.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MainWindowViewModel.cs ├── ModHelper │ ├── SPT-AKI Profile Editor.ModHelper.dll │ └── version ├── Properties │ └── PublishProfiles │ │ └── FolderProfile.pubxml ├── Resources │ ├── Borders.xaml │ ├── Buttons.xaml │ ├── Expander.xaml │ ├── Images │ │ ├── ltcWallet.png │ │ ├── profileeditor.png │ │ └── spt-server.gif │ ├── Labels.xaml │ ├── Localizations │ │ ├── ch.json │ │ ├── en.json │ │ ├── jp.json │ │ └── ru.json │ └── killa_ico_k3r_icon.ico ├── SPT-AKI Profile Editor.csproj ├── Views │ ├── AboutTab.xaml │ ├── AboutTab.xaml.cs │ ├── AboutTabViewModel.cs │ ├── AllItemsDialog.xaml │ ├── AllItemsDialog.xaml.cs │ ├── AllItemsDialogViewModel.cs │ ├── BackupsTab.xaml │ ├── BackupsTab.xaml.cs │ ├── BackupsTabViewModel.cs │ ├── BuildsTab.xaml │ ├── BuildsTab.xaml.cs │ ├── BuildsTabViewModel.cs │ ├── CleaningFromMods.xaml │ ├── CleaningFromMods.xaml.cs │ ├── CleaningFromModsViewModel.cs │ ├── ClothingTab.xaml │ ├── ClothingTab.xaml.cs │ ├── ClothingTabViewModel.cs │ ├── CommonSkillsTabViewModel.cs │ ├── ExaminedItemsTab.xaml │ ├── ExaminedItemsTab.xaml.cs │ ├── ExaminedItemsTabViewModel.cs │ ├── ExtendedControls │ │ ├── AlignableWrapPanel.cs │ │ ├── ButtonFontAwesomeIcon.cs │ │ ├── EmptyDataPanel.xaml │ │ ├── EmptyDataPanel.xaml.cs │ │ ├── Equipment.xaml │ │ ├── Equipment.xaml.cs │ │ ├── EquipmentBuildsList.xaml │ │ ├── EquipmentBuildsList.xaml.cs │ │ ├── EquipmentSlotsList.xaml │ │ ├── EquipmentSlotsList.xaml.cs │ │ ├── IconWithBackground.xaml │ │ ├── IconWithBackground.xaml.cs │ │ ├── Info.xaml │ │ ├── Info.xaml.cs │ │ ├── InfoTransferSettings.xaml │ │ ├── InfoTransferSettings.xaml.cs │ │ ├── Inventory.xaml │ │ ├── Inventory.xaml.cs │ │ ├── ItemActions.xaml │ │ ├── ItemActions.xaml.cs │ │ ├── ItemsAdding.xaml │ │ ├── ItemsAdding.xaml.cs │ │ ├── ItemsGrid.xaml │ │ ├── ItemsGrid.xaml.cs │ │ ├── ItemsListBox.xaml │ │ ├── ItemsListBox.xaml.cs │ │ ├── ItemsSearchBox.xaml │ │ ├── ItemsSearchBox.xaml.cs │ │ ├── MetricView.xaml │ │ ├── MetricView.xaml.cs │ │ ├── MoneyPanel.xaml │ │ ├── MoneyPanel.xaml.cs │ │ ├── NoDataPanel.xaml │ │ ├── NoDataPanel.xaml.cs │ │ ├── NumericUpDownExt.cs │ │ ├── SkillGrid.xaml │ │ ├── SkillGrid.xaml.cs │ │ ├── TextField.xaml │ │ ├── TextField.xaml.cs │ │ ├── Warning.xaml │ │ ├── Warning.xaml.cs │ │ ├── WeaponBuildView.xaml │ │ ├── WeaponBuildView.xaml.cs │ │ ├── WeaponBuildsList.xaml │ │ └── WeaponBuildsList.xaml.cs │ ├── FastMode.xaml │ ├── FastMode.xaml.cs │ ├── FastModeViewModel.cs │ ├── HideoutTab.xaml │ ├── HideoutTab.xaml.cs │ ├── HideoutViewModel.cs │ ├── InfoTab.xaml │ ├── InfoTab.xaml.cs │ ├── InfoTabViewModel.cs │ ├── IssuesDialog.xaml │ ├── IssuesDialog.xaml.cs │ ├── IssuesDialogViewModel.cs │ ├── LocalizationEditor.xaml │ ├── LocalizationEditor.xaml.cs │ ├── LocalizationEditorViewModel.cs │ ├── MasteringTab.xaml │ ├── MasteringTab.xaml.cs │ ├── MasteringTabViewModel.cs │ ├── MerchantsTab.xaml │ ├── MerchantsTab.xaml.cs │ ├── MerchantsTabViewModel.cs │ ├── MoneyDailog.xaml │ ├── MoneyDailog.xaml.cs │ ├── MoneyDailogViewModel.cs │ ├── ProgressTransferTab.xaml │ ├── ProgressTransferTab.xaml.cs │ ├── ProgressTransferTabViewModel.cs │ ├── QuestsTab.xaml │ ├── QuestsTab.xaml.cs │ ├── QuestsTabViewModel.cs │ ├── ScavStashTabViewModel.cs │ ├── ServerPathEditor.xaml │ ├── ServerPathEditor.xaml.cs │ ├── ServerPathEditorViewModel.cs │ ├── ServerSelectHelpDialog.xaml │ ├── ServerSelectHelpDialog.xaml.cs │ ├── ServerSelectHelpDialogViewModel.cs │ ├── SettingsDialog.xaml │ ├── SettingsDialog.xaml.cs │ ├── SettingsDialogViewModel.cs │ ├── SkillsTab.xaml │ ├── SkillsTab.xaml.cs │ ├── SkillsTabViewModel.cs │ ├── StashTab.xaml │ ├── StashTab.xaml.cs │ ├── StashTabViewModel.cs │ ├── UpdateDialog.xaml │ ├── UpdateDialog.xaml.cs │ ├── UpdateDialogViewModel.cs │ ├── YesNoDontAskAgainDialog.xaml │ ├── YesNoDontAskAgainDialog.xaml.cs │ └── YesNoDontAskAgainDialogViewModel.cs ├── WeaponBuildWindow.xaml ├── WeaponBuildWindow.xaml.cs └── WeaponBuildWindowViewModel.cs └── screenshots ├── 1.PNG ├── 1CH.png ├── 1EN.PNG ├── 2.PNG ├── 2CH.png ├── 2EN.PNG ├── 3.PNG ├── 3CH.png ├── 3EN.PNG ├── 4.PNG ├── 4CH.png ├── 4EN.PNG ├── 5.PNG ├── 5CH.png ├── 5EN.PNG ├── 6.PNG ├── 6CH.png ├── 6EN.PNG ├── 7.PNG ├── 7CH.png └── 7EN.PNG /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-ENG------------------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/.github/ISSUE_TEMPLATE/bug-report-ENG------------------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-RU-------------------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/.github/ISSUE_TEMPLATE/bug-report-RU-------------------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request-ENG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/.github/ISSUE_TEMPLATE/feature_request-ENG.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request-RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/.github/ISSUE_TEMPLATE/feature_request-RU.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /CHFAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/CHFAQ.md -------------------------------------------------------------------------------- /CHREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/CHREADME.md -------------------------------------------------------------------------------- /ENGFAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/ENGFAQ.md -------------------------------------------------------------------------------- /ENGREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/ENGREADME.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/FAQ.md -------------------------------------------------------------------------------- /Guidelines/LocalizationsCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/Guidelines/LocalizationsCH.md -------------------------------------------------------------------------------- /Guidelines/LocalizationsENG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/Guidelines/LocalizationsENG.md -------------------------------------------------------------------------------- /Guidelines/LocalizationsJP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/Guidelines/LocalizationsJP.md -------------------------------------------------------------------------------- /Guidelines/LocalizationsRu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/Guidelines/LocalizationsRu.md -------------------------------------------------------------------------------- /Guidelines/ModHelperCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/Guidelines/ModHelperCH.md -------------------------------------------------------------------------------- /Guidelines/ModHelperENG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/Guidelines/ModHelperENG.md -------------------------------------------------------------------------------- /Guidelines/ModHelperJP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/Guidelines/ModHelperJP.md -------------------------------------------------------------------------------- /Guidelines/ModHelperRu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/Guidelines/ModHelperRu.md -------------------------------------------------------------------------------- /JPFAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/JPFAQ.md -------------------------------------------------------------------------------- /JPREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/JPREADME.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/README.md -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Installer/SPT-AKI Profile Editor.Installer.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Installer/SPT-AKI Profile Editor.Installer.vdproj -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.ModHelper/ModHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.ModHelper/ModHelper.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.ModHelper/ModMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.ModHelper/ModMetadata.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.ModHelper/SPT-AKI Profile Editor.ModHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.ModHelper/SPT-AKI Profile Editor.ModHelper.csproj -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.ModHelper/bin/Debug/net9.0/SPT-AKI Profile Editor.ModHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.ModHelper/bin/Debug/net9.0/SPT-AKI Profile Editor.ModHelper.dll -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.ModHelper/bin/Debug/net9.0/version: -------------------------------------------------------------------------------- 1 | 0.0.7 2 | -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/AppLocalizationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/AppLocalizationTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/AppSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/AppSettingsTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/BackupServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/BackupServiceTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/CleaningServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/CleaningServiceTest.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/EnumsTests/ActiveQuestTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/EnumsTests/ActiveQuestTypeTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/EnumsTests/EnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/EnumsTests/EnumTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/EnumsTests/QuestConditionTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/EnumsTests/QuestConditionTypeTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/EnumsTests/QuestStatusTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/EnumsTests/QuestStatusTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/EnumsTests/QuestTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/EnumsTests/QuestTypeTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/EnumsTests/RequirementTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/EnumsTests/RequirementTypeTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/EnumsTests/SaveEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/EnumsTests/SaveEntryTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ExtMethodsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ExtMethodsTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/HelperModTestDirectoryWithMod/SPT-AKI Profile Editor.ModHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/HelperModTestDirectoryWithMod/SPT-AKI Profile Editor.ModHelper.dll -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/HelperModTestDirectoryWithMod/version: -------------------------------------------------------------------------------- 1 | 0.0.7 2 | -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/HelpersTests/ConvertersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/HelpersTests/ConvertersTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/HelpersTests/FileDownloaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/HelpersTests/FileDownloaderTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/HelpersTests/HelperModManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/HelpersTests/HelperModManagerTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/Hepers/ApplicationManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/Hepers/ApplicationManagerTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/Hepers/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/Hepers/TestHelpers.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/Hepers/TestsApplicationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/Hepers/TestsApplicationManager.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/Hepers/TestsDialogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/Hepers/TestsDialogManager.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/Hepers/TestsHelperModManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/Hepers/TestsHelperModManager.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/Hepers/TestsIssuesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/Hepers/TestsIssuesService.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/Hepers/TestsWindowsDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/Hepers/TestsWindowsDialogs.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/Hepers/TestsWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/Hepers/TestsWorker.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/IssuesServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/IssuesServiceTest.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ModHelperTestUpdate/SPT-AKI Profile Editor.ModHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ModHelperTestUpdate/SPT-AKI Profile Editor.ModHelper.dll -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ModHelperTestUpdate/version: -------------------------------------------------------------------------------- 1 | 99.0.7 2 | -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ProfileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ProfileTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ProgressTransferServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ProgressTransferServiceTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/SPT-AKI Profile Editor.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/SPT-AKI Profile Editor.Tests.csproj -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ServerConfigsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ServerConfigsTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ServerDatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ServerDatabaseTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsFactoryTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/AboutTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/AboutTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/BackupsTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/BackupsTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/BindableViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/BindableViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/BuildsTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/BuildsTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/ClothingTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/ClothingTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/CommonSkillsTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/CommonSkillsTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/ContainerWindowViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/ContainerWindowViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/ExaminedItemsTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/ExaminedItemsTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/FastModeViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/FastModeViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/HideoutTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/HideoutTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/InfoTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/InfoTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/IssuesDialogViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/IssuesDialogViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/LocalizationEditorViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/LocalizationEditorViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/MainWindowViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/MainWindowViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/MasteringTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/MasteringTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/MerchantsTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/MerchantsTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/MoneyDailogViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/MoneyDailogViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/ProgressTransferTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/ProgressTransferTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/QuestsTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/QuestsTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/ScavStashTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/ScavStashTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/ServerPathEditorViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/ServerPathEditorViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/SettingsDialogViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/SettingsDialogViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/StashTabViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/StashTabViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/UpdateDialogViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/UpdateDialogViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/ViewModelsTests/WeaponBuildWindowViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/ViewModelsTests/WeaponBuildWindowViewModelTests.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/testFiles/profileWithDuplicatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/testFiles/profileWithDuplicatedItems.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/testFiles/testBuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/testFiles/testBuild.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/testFiles/testEquipmentBuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/testFiles/testEquipmentBuild.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/testFiles/testModdedBuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/testFiles/testModdedBuild.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/testFiles/testModdedEquipmentBuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/testFiles/testModdedEquipmentBuild.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.Tests/testFiles/testProfileProgress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.Tests/testFiles/testProfileProgress.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor.sln -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/App.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/App.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/AssemblyInfo.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Classes/AccentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Classes/AccentItem.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Classes/WorkerNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Classes/WorkerNotification.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Classes/WorkerTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Classes/WorkerTask.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/ContainerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/ContainerWindow.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/ContainerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/ContainerWindow.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/ContainerWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/ContainerWindowViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/AppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/AppData.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/AppLocalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/AppLocalization.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/AppSettings.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/BackupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/BackupService.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/CleaningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/CleaningService.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/DefaultValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/DefaultValues.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/ActiveQuestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/ActiveQuestType.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/IssuesAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/IssuesAction.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/ItemRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/ItemRotation.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/ModdedEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/ModdedEntityType.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/PMCSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/PMCSide.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/QuestConditionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/QuestConditionType.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/QuestStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/QuestStatus.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/QuestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/QuestType.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/SafeEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/SafeEnumConverter.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/StashEditMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/StashEditMode.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Enums/StashType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Enums/StashType.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Equipment/EquipmentAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Equipment/EquipmentAdapter.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Equipment/EquipmentSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Equipment/EquipmentSlot.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Equipment/EquipmentSlotItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Equipment/EquipmentSlotItem.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Equipment/EquipmentSlotPockets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Equipment/EquipmentSlotPockets.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ExtMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ExtMethods.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/GridFilters/CleaningFromModsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/GridFilters/CleaningFromModsTab.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/GridFilters/MasteringTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/GridFilters/MasteringTab.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/GridFilters/SkillsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/GridFilters/SkillsTab.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/GridFilters/StashTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/GridFilters/StashTab.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/BackupFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/BackupFile.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/BindableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/BindableEntity.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/ExaminedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/ExaminedItem.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/GridFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/GridFilters.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/ModdedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/ModdedEntity.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/SPTServerDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/SPTServerDir.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/SPTServerFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/SPTServerFile.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/ServerPathEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/ServerPathEntry.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/ServerProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/ServerProfile.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/HelperClasses/Translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/HelperClasses/Translation.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Issues/DuplicateItemsIDIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Issues/DuplicateItemsIDIssue.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Issues/PMCLevelIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Issues/PMCLevelIssue.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Issues/ProfileIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Issues/ProfileIssue.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Issues/QuestStatusIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Issues/QuestStatusIssue.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Issues/TraderLoyaltyIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Issues/TraderLoyaltyIssue.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Issues/TraderStandingIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Issues/TraderStandingIssue.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/IssuesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/IssuesService.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/Logger.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/ActiveQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/ActiveQuest.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/Character.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterBonus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterBonus.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterCustomization.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterHealth.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterHideout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterHideout.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterHideoutProduction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterHideoutProduction.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterInfo.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterInventory.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterMetric.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterQuest.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterRepeatableQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterRepeatableQuest.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterSkill.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterSkills.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterSkills.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterTraderStanding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterTraderStanding.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CharacterTraderStandingExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CharacterTraderStandingExtended.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/CustomisationUnlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/CustomisationUnlock.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/HideoutArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/HideoutArea.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/DogtagProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/DogtagProperties.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/InventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/InventoryItem.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/ItemLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/ItemLocation.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/ItemUpd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/ItemUpd.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/Tag.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/UpdFoldable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/InventoryItem/UpdFoldable.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/LocationJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/LocationJsonConverter.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/Profile.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/ProfileCharacters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/ProfileCharacters.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/ProfileSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/ProfileSaver.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/RagfairInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/RagfairInfo.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/StartedHideoutProduction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/StartedHideoutProduction.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/UnlockedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/UnlockedInfo.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/UserBuilds/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/UserBuilds/Build.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/UserBuilds/EquipmentBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/UserBuilds/EquipmentBuild.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/UserBuilds/UserBuilds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/UserBuilds/UserBuilds.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProfileClasses/UserBuilds/WeaponBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProfileClasses/UserBuilds/WeaponBuild.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProgressTransfer/Builds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProgressTransfer/Builds.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProgressTransfer/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProgressTransfer/Group.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProgressTransfer/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProgressTransfer/Info.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProgressTransfer/InfoGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProgressTransfer/InfoGroup.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProgressTransfer/ProfileProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProgressTransfer/ProfileProgress.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProgressTransfer/ProgressTransferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProgressTransfer/ProgressTransferService.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProgressTransfer/SettingsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProgressTransfer/SettingsModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ProgressTransfer/SkillGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ProgressTransfer/SkillGroup.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/BotTypes/BotType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/BotTypes/BotType.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/BotTypes/BotTypeAppearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/BotTypes/BotTypeAppearance.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Configs/Quest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Configs/Quest.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Handbook/Handbook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Handbook/Handbook.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Handbook/HandbookCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Handbook/HandbookCategory.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Handbook/HandbookItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Handbook/HandbookItem.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/HandbookHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/HandbookHelper.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Hideout/HideoutAreaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Hideout/HideoutAreaInfo.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Hideout/HideoutProduction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Hideout/HideoutProduction.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Hideout/HideoutProductionRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Hideout/HideoutProductionRequirement.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Hideout/HideoutProductions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Hideout/HideoutProductions.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Hideout/RequirementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Hideout/RequirementType.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/Filters.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/Grid.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/GridProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/GridProps.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/TarkovItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/TarkovItem.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/TarkovItemProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/TarkovItemProperties.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/TarkovItemSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ItemsDB/TarkovItemSlot.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Quests/QuestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Quests/QuestData.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerConfigs.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerDatabase.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ExpTable/ConfigExp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ExpTable/ConfigExp.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ExpTable/ExpLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ExpTable/ExpLevel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ExpTable/LevelExpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ExpTable/LevelExpTable.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ItemPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ItemPreset.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/Mastering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/Mastering.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ServerGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ServerGlobals.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ServerGlobalsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/ServerGlobals/ServerGlobalsConfig.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Traders/LoyaltyLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Traders/LoyaltyLevels.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Traders/TraderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Traders/TraderBase.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Core/ServerClasses/Traders/TraderSuit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Core/ServerClasses/Traders/TraderSuit.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/AddableCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/AddableCategory.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/AddableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/AddableItem.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/ApplicationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/ApplicationManager.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/BindableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/BindableViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/BindingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/BindingProxy.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/ClosableDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/ClosableDialogViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/Converters.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/FileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/FileDownloader.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/FileDownloaderDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/FileDownloaderDialog.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/GridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/GridControl.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/HelperModManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/HelperModManager.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/HelperModStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/HelperModStatus.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/ItemViewWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/ItemViewWindow.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/JObjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/JObjectExtension.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/JTokenExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/JTokenExtension.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/LinksHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/LinksHelper.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/MetroDialogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/MetroDialogManager.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/MetroWindowExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/MetroWindowExtension.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/MigrationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/MigrationHelper.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/NullVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/NullVisibilityConverter.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/PmcBindableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/PmcBindableViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/RelayCommand.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/StringEnumConverterExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/StringEnumConverterExt.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/StringExtension.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/ValidListConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/ValidListConverter.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/ViewModelsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/ViewModelsFactory.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/WeaponBuildCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/WeaponBuildCategory.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/WindowsDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/WindowsDialogs.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Helpers/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Helpers/Worker.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/MainWindow.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/MainWindowViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/ModHelper/SPT-AKI Profile Editor.ModHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/ModHelper/SPT-AKI Profile Editor.ModHelper.dll -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/ModHelper/version: -------------------------------------------------------------------------------- 1 | 0.0.7 2 | -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Borders.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Borders.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Buttons.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Expander.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Images/ltcWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Images/ltcWallet.png -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Images/profileeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Images/profileeditor.png -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Images/spt-server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Images/spt-server.gif -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Labels.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Labels.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Localizations/ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Localizations/ch.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Localizations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Localizations/en.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Localizations/jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Localizations/jp.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/Localizations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/Localizations/ru.json -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Resources/killa_ico_k3r_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Resources/killa_ico_k3r_icon.ico -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/SPT-AKI Profile Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/SPT-AKI Profile Editor.csproj -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/AboutTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/AboutTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/AboutTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/AboutTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/AboutTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/AboutTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/AllItemsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/AllItemsDialog.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/AllItemsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/AllItemsDialog.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/AllItemsDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/AllItemsDialogViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/BackupsTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/BackupsTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/BackupsTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/BackupsTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/BackupsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/BackupsTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/BuildsTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/BuildsTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/BuildsTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/BuildsTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/BuildsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/BuildsTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/CleaningFromMods.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/CleaningFromMods.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/CleaningFromMods.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/CleaningFromMods.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/CleaningFromModsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/CleaningFromModsViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ClothingTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ClothingTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ClothingTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ClothingTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ClothingTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ClothingTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/CommonSkillsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/CommonSkillsTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExaminedItemsTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExaminedItemsTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExaminedItemsTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExaminedItemsTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExaminedItemsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExaminedItemsTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/AlignableWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/AlignableWrapPanel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ButtonFontAwesomeIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ButtonFontAwesomeIcon.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/EmptyDataPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/EmptyDataPanel.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/EmptyDataPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/EmptyDataPanel.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/Equipment.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/Equipment.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/Equipment.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/Equipment.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/EquipmentBuildsList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/EquipmentBuildsList.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/EquipmentBuildsList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/EquipmentBuildsList.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/EquipmentSlotsList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/EquipmentSlotsList.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/EquipmentSlotsList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/EquipmentSlotsList.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/IconWithBackground.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/IconWithBackground.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/IconWithBackground.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/IconWithBackground.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/Info.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/Info.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/Info.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/Info.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/InfoTransferSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/InfoTransferSettings.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/InfoTransferSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/InfoTransferSettings.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/Inventory.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/Inventory.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/Inventory.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/Inventory.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemActions.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemActions.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemActions.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemActions.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemsAdding.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemsAdding.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemsAdding.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemsAdding.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemsGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemsGrid.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemsGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemsGrid.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemsListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemsListBox.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemsListBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemsListBox.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemsSearchBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemsSearchBox.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/ItemsSearchBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/ItemsSearchBox.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/MetricView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/MetricView.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/MetricView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/MetricView.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/MoneyPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/MoneyPanel.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/MoneyPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/MoneyPanel.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/NoDataPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/NoDataPanel.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/NoDataPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/NoDataPanel.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/NumericUpDownExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/NumericUpDownExt.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/SkillGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/SkillGrid.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/SkillGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/SkillGrid.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/TextField.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/TextField.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/TextField.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/TextField.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/Warning.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/Warning.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/Warning.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/Warning.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/WeaponBuildView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/WeaponBuildView.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/WeaponBuildView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/WeaponBuildView.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/WeaponBuildsList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/WeaponBuildsList.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ExtendedControls/WeaponBuildsList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ExtendedControls/WeaponBuildsList.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/FastMode.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/FastMode.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/FastMode.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/FastMode.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/FastModeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/FastModeViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/HideoutTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/HideoutTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/HideoutTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/HideoutTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/HideoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/HideoutViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/InfoTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/InfoTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/InfoTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/InfoTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/InfoTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/InfoTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/IssuesDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/IssuesDialog.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/IssuesDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/IssuesDialog.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/IssuesDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/IssuesDialogViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/LocalizationEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/LocalizationEditor.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/LocalizationEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/LocalizationEditor.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/LocalizationEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/LocalizationEditorViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MasteringTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MasteringTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MasteringTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MasteringTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MasteringTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MasteringTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MerchantsTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MerchantsTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MerchantsTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MerchantsTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MerchantsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MerchantsTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MoneyDailog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MoneyDailog.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MoneyDailog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MoneyDailog.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/MoneyDailogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/MoneyDailogViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ProgressTransferTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ProgressTransferTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ProgressTransferTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ProgressTransferTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ProgressTransferTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ProgressTransferTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/QuestsTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/QuestsTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/QuestsTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/QuestsTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/QuestsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/QuestsTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ScavStashTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ScavStashTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ServerPathEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ServerPathEditor.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ServerPathEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ServerPathEditor.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ServerPathEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ServerPathEditorViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ServerSelectHelpDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ServerSelectHelpDialog.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ServerSelectHelpDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ServerSelectHelpDialog.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/ServerSelectHelpDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/ServerSelectHelpDialogViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/SettingsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/SettingsDialog.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/SettingsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/SettingsDialog.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/SettingsDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/SettingsDialogViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/SkillsTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/SkillsTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/SkillsTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/SkillsTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/SkillsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/SkillsTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/StashTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/StashTab.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/StashTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/StashTab.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/StashTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/StashTabViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/UpdateDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/UpdateDialog.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/UpdateDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/UpdateDialog.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/UpdateDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/UpdateDialogViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/YesNoDontAskAgainDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/YesNoDontAskAgainDialog.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/YesNoDontAskAgainDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/YesNoDontAskAgainDialog.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/Views/YesNoDontAskAgainDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/Views/YesNoDontAskAgainDialogViewModel.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/WeaponBuildWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/WeaponBuildWindow.xaml -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/WeaponBuildWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/WeaponBuildWindow.xaml.cs -------------------------------------------------------------------------------- /SPT-AKI Profile Editor/WeaponBuildWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/SPT-AKI Profile Editor/WeaponBuildWindowViewModel.cs -------------------------------------------------------------------------------- /screenshots/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/1.PNG -------------------------------------------------------------------------------- /screenshots/1CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/1CH.png -------------------------------------------------------------------------------- /screenshots/1EN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/1EN.PNG -------------------------------------------------------------------------------- /screenshots/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/2.PNG -------------------------------------------------------------------------------- /screenshots/2CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/2CH.png -------------------------------------------------------------------------------- /screenshots/2EN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/2EN.PNG -------------------------------------------------------------------------------- /screenshots/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/3.PNG -------------------------------------------------------------------------------- /screenshots/3CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/3CH.png -------------------------------------------------------------------------------- /screenshots/3EN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/3EN.PNG -------------------------------------------------------------------------------- /screenshots/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/4.PNG -------------------------------------------------------------------------------- /screenshots/4CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/4CH.png -------------------------------------------------------------------------------- /screenshots/4EN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/4EN.PNG -------------------------------------------------------------------------------- /screenshots/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/5.PNG -------------------------------------------------------------------------------- /screenshots/5CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/5CH.png -------------------------------------------------------------------------------- /screenshots/5EN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/5EN.PNG -------------------------------------------------------------------------------- /screenshots/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/6.PNG -------------------------------------------------------------------------------- /screenshots/6CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/6CH.png -------------------------------------------------------------------------------- /screenshots/6EN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/6EN.PNG -------------------------------------------------------------------------------- /screenshots/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/7.PNG -------------------------------------------------------------------------------- /screenshots/7CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/7CH.png -------------------------------------------------------------------------------- /screenshots/7EN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkiTles55/SPT-AKI-Profile-Editor/HEAD/screenshots/7EN.PNG --------------------------------------------------------------------------------