├── .editorconfig ├── .gitattributes ├── .gitignore ├── AL_Common ├── AL_Common.csproj ├── AL_Common.csproj.DotSettings ├── CustomInterop │ ├── BCrypt_Interop.NTSTATUS.cs │ ├── FileSystem.Attributes.Windows.cs │ ├── Interop.BCryptGenRandom.GetRandomBytes.cs │ ├── Interop.BCryptGenRandom.cs │ ├── Interop.BOOL.cs │ ├── Interop.BOOLEAN.cs │ ├── Interop.DeleteFile.cs │ ├── Interop.DeleteVolumeMountPoint.cs │ ├── Interop.DeviceIoControl.cs │ ├── Interop.Errors.cs │ ├── Interop.FILE_ALLOCATION_INFO.cs │ ├── Interop.FILE_END_OF_FILE_INFO.cs │ ├── Interop.FILE_STANDARD_INFO.cs │ ├── Interop.FileAttributes.cs │ ├── Interop.FileOperations.cs │ ├── Interop.FindClose.cs │ ├── Interop.FindFirstFileEx.cs │ ├── Interop.FindNextFile.cs │ ├── Interop.FlushFileBuffers.cs │ ├── Interop.FormatMessage.cs │ ├── Interop.GET_FILEEX_INFO_LEVELS.cs │ ├── Interop.GetFileAttributesEx.cs │ ├── Interop.GetFileInformationByHandleEx.cs │ ├── Interop.GetFinalPathNameByHandle.cs │ ├── Interop.IO_STATUS_BLOCK.cs │ ├── Interop.Misc.cs │ ├── Interop.NtStatus.cs │ ├── Interop.REPARSE_DATA_BUFFER.cs │ ├── Interop.ReadFile_SafeHandle_IntPtr.cs │ ├── Interop.ReadFile_SafeHandle_NativeOverlapped.cs │ ├── Interop.RemoveDirectory.cs │ ├── Interop.SECURITY_ATTRIBUTES.cs │ ├── Interop.STORAGE_READ_CAPACITY.cs │ ├── Interop.SecurityOptions.cs │ ├── Interop.SetFileInformationByHandle.cs │ ├── Interop.SetFilePointerEx.cs │ ├── Interop.SetThreadErrorMode.cs │ ├── Interop.WIN32_FILE_ATTRIBUTE_DATA.cs │ ├── Interop.WIN32_FIND_DATA.cs │ ├── Interop.WriteFile_SafeHandle_NativeOverlapped.cs │ ├── PathInternal.Windows.cs │ ├── PathInternal.cs │ ├── SafeFindHandle.Windows.cs │ ├── Win32Marshal.cs │ └── __Error.cs ├── DeviceIoControlLib │ ├── LICENSE.txt │ ├── Objects │ │ ├── Enums │ │ │ ├── IOControlCode.cs │ │ │ ├── IOFileDevice.cs │ │ │ └── IOMethod.cs │ │ └── Storage │ │ │ ├── DEVICE_SEEK_PENALTY_DESCRIPTOR.cs │ │ │ ├── STORAGE_BUS_TYPE.cs │ │ │ ├── STORAGE_DEVICE_DESCRIPTOR.cs │ │ │ ├── STORAGE_DEVICE_DESCRIPTOR_PARSED.cs │ │ │ ├── STORAGE_PROPERTY_ID.cs │ │ │ ├── STORAGE_PROPERTY_QUERY.cs │ │ │ └── STORAGE_QUERY_TYPE.cs │ ├── Utilities │ │ ├── MarshalHelper.cs │ │ ├── UnmanagedMemory.cs │ │ └── Utils.cs │ └── Wrapper │ │ ├── DeviceIoControlHelper.cs │ │ └── StorageDeviceWrapper.cs ├── Exceptions │ ├── ArgumentException_NET.cs │ ├── ArgumentNullException_NET.cs │ ├── SR.cs │ └── ThrowHelper.cs ├── FastZipReader │ ├── Deflate64Managed │ │ ├── Deflate64ManagedStream.cs │ │ ├── FileFormats.cs │ │ ├── HuffmanTree.cs │ │ ├── Inflater64Managed.cs │ │ ├── Inflater64State.cs │ │ ├── InputBuffer.cs │ │ └── OutputWindow.cs │ ├── LICENSE │ ├── ZipArchiveFast.cs │ ├── ZipArchiveFastEntry.cs │ ├── ZipArchiveFast_Common.cs │ ├── ZipArchiveFast_Threaded.cs │ ├── ZipBlocks.cs │ ├── ZipCustomStreams.cs │ └── ZipHelper.cs ├── Fen7z.cs ├── FenGenAttributes.cs ├── General │ ├── ArraySegment.cs │ ├── CancellationTokenUtils.cs │ ├── Common.cs │ ├── Encoding.cs │ ├── Enumerables.cs │ ├── FileAndPath.cs │ ├── FindReplace.cs │ ├── HashTables.cs │ ├── Numeric.cs │ ├── Pools.cs │ ├── StaticArrays.cs │ ├── Stream.cs │ ├── String.cs │ ├── Threading.cs │ └── ValueToString.cs ├── GlobalHttpClient.cs ├── GlobalUsings.cs ├── HTMLNamedEntities.cs ├── HtmlRefExtract.cs ├── IO │ ├── AL_SafeFileHandle.cs │ ├── BinaryRead.cs │ ├── Delete_Threaded.cs │ ├── DisableMediaInsertionPrompt.cs │ ├── FastIO_Native.cs │ ├── FileStreamHelpers.cs │ ├── FileStream_NET.cs │ ├── RandomAccess.cs │ ├── StreamReaderCustom.cs │ └── SymLink.cs ├── LICENSE ├── Language │ ├── LanguageSupport.Generated.cs │ ├── LanguageSupport.cs │ └── LanguageSupport_PerfectHash.cs ├── Logger.cs ├── RTF │ ├── RTFParserCommon.cs │ ├── RTF_SymbolListGenSource.cs │ ├── RtfDisplayedReadmeParser.cs │ ├── RtfDisplayedReadmeParser_DupeDest.Generated.cs │ ├── RtfToTextConverter.cs │ └── RtfToTextConverter_DupeSource.cs └── TDMCommon.cs ├── AngelLoader.sln ├── AngelLoader ├── AngelLoader.csproj ├── AngelLoader.csproj.DotSettings ├── App.config ├── Common │ ├── Comparers.cs │ ├── DataClasses │ │ ├── BuildDate.Generated.cs │ │ ├── CatAndTags.cs │ │ ├── ConfigData.cs │ │ ├── ConfigDataSupporting.cs │ │ ├── DarkColors.cs │ │ ├── ErrorText.cs │ │ ├── FMData.cs │ │ ├── FMDataSupporting.cs │ │ ├── LocalizationData.cs │ │ ├── NonLocalizableText.Generated.cs │ │ └── NonLocalizableText.cs │ ├── EnumData.Generated.cs │ ├── Errors.cs │ ├── GameSupport.Generated.cs │ ├── GameSupport.cs │ ├── GameSupportLocalization.Generated.cs │ ├── Global.cs │ ├── Misc.cs │ ├── Native │ │ ├── FastIO.cs │ │ └── NativeCommon.cs │ ├── Paths.cs │ ├── SettingsWindowState.cs │ └── Utility │ │ ├── ColorUtils.cs │ │ ├── EnumUtils.cs │ │ ├── InstalledDirNameUtils.cs │ │ ├── MathUtils.cs │ │ ├── MiscUtils.cs │ │ ├── PathUtils.cs │ │ ├── ProcessUtils.cs │ │ ├── StringUtils.cs │ │ ├── ThreadingUtils.cs │ │ └── ZipUtils.cs ├── Core.cs ├── DetectDriveTypes.cs ├── FFmpeg.NET │ └── FFmpeg.NET.cs ├── FMArchives.cs ├── FMAudio.cs ├── FMBackupAndRestore.cs ├── FMCache.cs ├── FMDelete.cs ├── FMInstallAndPlay.cs ├── FMLanguages.cs ├── FMScan.cs ├── FMTags.cs ├── Filtering.cs ├── FindFMs.cs ├── Forms │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── AboutForm_InitSlim.Generated.cs │ ├── ControlUtils.cs │ ├── CustomControls │ │ ├── DarkArrowButton.cs │ │ ├── DarkButton.cs │ │ ├── DarkCheckBox.cs │ │ ├── DarkComboBox.cs │ │ ├── DarkComboBoxWithBackingItems.cs │ │ ├── DarkContextMenu.cs │ │ ├── DarkControlState.cs │ │ ├── DarkDateTimePicker.cs │ │ ├── DarkGroupBox.cs │ │ ├── DarkLabel.cs │ │ ├── DarkLinkLabel.cs │ │ ├── DarkListBox.cs │ │ ├── DarkListBoxWithBackingItems.cs │ │ ├── DarkMenuRenderer.cs │ │ ├── DarkNumericUpDown.cs │ │ ├── DarkProgressBar.cs │ │ ├── DarkRadioButton.cs │ │ ├── DarkRadioButtonCustom.cs │ │ ├── DarkSplitContainerCustom.cs │ │ ├── DarkTabControl.cs │ │ ├── DarkTabPageCustom.cs │ │ ├── DarkTextBox.cs │ │ ├── DarkTextBoxCustom.cs │ │ ├── DarkTrackBar.cs │ │ ├── DarkTreeView.cs │ │ ├── DarkUI_LICENSE.txt │ │ ├── DataGridViewColumnHeaderCellCustom.cs │ │ ├── DataGridViewCustom │ │ │ ├── ColumnResize.cs │ │ │ └── DataGridViewCustom.cs │ │ ├── DrawnFlowLayoutPanel.cs │ │ ├── DrawnPanel.cs │ │ ├── FMTabPages │ │ │ ├── CommentTabPage.cs │ │ │ ├── EditFMTabPage.cs │ │ │ ├── Lazy_CommentPage.Designer.cs │ │ │ ├── Lazy_CommentPage.cs │ │ │ ├── Lazy_CommentPage.resx │ │ │ ├── Lazy_CommentPage_InitSlim.Generated.cs │ │ │ ├── Lazy_EditFMPage.Designer.cs │ │ │ ├── Lazy_EditFMPage.cs │ │ │ ├── Lazy_EditFMPage.resx │ │ │ ├── Lazy_EditFMPage_InitSlim.Generated.cs │ │ │ ├── Lazy_ModsPage.Designer.cs │ │ │ ├── Lazy_ModsPage.cs │ │ │ ├── Lazy_ModsPage.resx │ │ │ ├── Lazy_ModsPage_InitSlim.Generated.cs │ │ │ ├── Lazy_PatchPage.Designer.cs │ │ │ ├── Lazy_PatchPage.cs │ │ │ ├── Lazy_PatchPage.resx │ │ │ ├── Lazy_PatchPage_InitSlim.Generated.cs │ │ │ ├── Lazy_ScreenshotsPage.Designer.cs │ │ │ ├── Lazy_ScreenshotsPage.cs │ │ │ ├── Lazy_ScreenshotsPage.resx │ │ │ ├── Lazy_ScreenshotsPage_InitSlim.Generated.cs │ │ │ ├── Lazy_StatsPage.Designer.cs │ │ │ ├── Lazy_StatsPage.cs │ │ │ ├── Lazy_StatsPage.resx │ │ │ ├── Lazy_StatsPage_InitSlim.Generated.cs │ │ │ ├── Lazy_TabsBase.cs │ │ │ ├── Lazy_TagsPage.Designer.cs │ │ │ ├── Lazy_TagsPage.cs │ │ │ ├── Lazy_TagsPage.resx │ │ │ ├── Lazy_TagsPage_InitSlim.Generated.cs │ │ │ ├── ModsTabPage.cs │ │ │ ├── PatchTabPage.cs │ │ │ ├── ScreenshotsTabPage.cs │ │ │ ├── StatsTabPage.cs │ │ │ └── TagsTabPage.cs │ │ ├── FlowLayoutPanelCustom.cs │ │ ├── ImagePanelCustom.cs │ │ ├── LazyLoaded │ │ │ ├── Lazy_AddTagDropDown.cs │ │ │ ├── Lazy_BottomTabControl.cs │ │ │ ├── Lazy_ChooseReadmePanel.cs │ │ │ ├── Lazy_DynamicItemsMenu.cs │ │ │ ├── Lazy_ExitButton.cs │ │ │ ├── Lazy_FMTabsBlocker.cs │ │ │ ├── Lazy_FMTabsMenu.cs │ │ │ ├── Lazy_FMsDGV_ColumnHeaderMenu.cs │ │ │ ├── Lazy_FMsDGV_FM_Menu.cs │ │ │ ├── Lazy_FMsListZoomButtons.cs │ │ │ ├── Lazy_FilterControlsMenu.cs │ │ │ ├── Lazy_GameFilterControlsMenu.cs │ │ │ ├── Lazy_InstallUninstallFMButton.cs │ │ │ ├── Lazy_LangDetectError.cs │ │ │ ├── Lazy_MainMenu.cs │ │ │ ├── Lazy_PlayOriginalControls.cs │ │ │ ├── Lazy_PlayOriginalGameMenu.cs │ │ │ ├── Lazy_PlayOriginalT2InMultiplayerMenu.cs │ │ │ ├── Lazy_RTFBoxMenu.cs │ │ │ ├── Lazy_ReadmeEncodingsMenu.cs │ │ │ ├── Lazy_ScreenshotCopyMenu.cs │ │ │ ├── Lazy_ToolStripLabels.cs │ │ │ ├── Lazy_UpdateNotification.cs │ │ │ ├── Lazy_ViewHTMLReadmeButton.cs │ │ │ └── Lazy_WebSearchButton.cs │ │ ├── ModsControl.Designer.cs │ │ ├── ModsControl.cs │ │ ├── ModsControl.resx │ │ ├── ModsControl_InitSlim.Generated.cs │ │ ├── ModsPanel.cs │ │ ├── PanelCustom.cs │ │ ├── ProgressBoxes │ │ │ ├── ProgressBox.Designer.cs │ │ │ ├── ProgressBox.cs │ │ │ ├── ProgressBox.resx │ │ │ └── ProgressBox_InitSlim.Generated.cs │ │ ├── RichTextBoxCustom │ │ │ ├── Preprocessing.cs │ │ │ ├── RichTextBoxCustom.cs │ │ │ ├── Theming.cs │ │ │ └── Workarounds.cs │ │ ├── StandardButton.cs │ │ ├── ToolStripCustomControls.cs │ │ ├── ToolTipCustom.cs │ │ ├── TransparentPanel.cs │ │ └── UserControlCustom.cs │ ├── DarkErrorDialog.cs │ ├── DarkFormBase.cs │ ├── DarkTaskDialog.Designer.cs │ ├── DarkTaskDialog.cs │ ├── DarkTaskDialog.resx │ ├── DarkTaskDialog_InitSlim.Generated.cs │ ├── Dialogs.cs │ ├── FilterDateForm.Designer.cs │ ├── FilterDateForm.cs │ ├── FilterDateForm.resx │ ├── FilterDateForm_InitSlim.Generated.cs │ ├── FilterRatingForm.Designer.cs │ ├── FilterRatingForm.cs │ ├── FilterRatingForm.resx │ ├── FilterRatingForm_InitSlim.Generated.cs │ ├── FilterTagsForm.Designer.cs │ ├── FilterTagsForm.cs │ ├── FilterTagsForm.resx │ ├── FilterTagsForm_InitSlim.Generated.cs │ ├── FormsData.cs │ ├── FormsInterfaces.cs │ ├── FormsViewEnvironment.cs │ ├── GameVersionsForm.cs │ ├── Images.cs │ ├── Import │ │ ├── AskToImportForm.Designer.cs │ │ ├── AskToImportForm.cs │ │ ├── AskToImportForm.resx │ │ ├── AskToImportForm_InitSlim.Generated.cs │ │ ├── ImportFromDarkLoaderForm.Designer.cs │ │ ├── ImportFromDarkLoaderForm.cs │ │ ├── ImportFromDarkLoaderForm.resx │ │ ├── ImportFromDarkLoaderForm_InitSlim.Generated.cs │ │ ├── ImportFromMultipleInisForm.Designer.cs │ │ ├── ImportFromMultipleInisForm.cs │ │ ├── ImportFromMultipleInisForm.resx │ │ ├── ImportFromMultipleInisForm_InitSlim.Generated.cs │ │ ├── User_DL_ImportControls.Designer.cs │ │ ├── User_DL_ImportControls.cs │ │ ├── User_DL_ImportControls.resx │ │ ├── User_DL_ImportControls_InitSlim.Generated.cs │ │ └── User_FMSel_NDL_ImportControls.cs │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── MainForm_InitManual.cs │ ├── MainForm_Progress.cs │ ├── MessageBoxCustomForm.Designer.cs │ ├── MessageBoxCustomForm.cs │ ├── MessageBoxCustomForm.resx │ ├── MessageBoxCustomForm_InitSlim.Generated.cs │ ├── OriginalGameModsForm.Designer.cs │ ├── OriginalGameModsForm.cs │ ├── OriginalGameModsForm.resx │ ├── OriginalGameModsForm_InitSlim.Generated.cs │ ├── RTF_Visual_Test_Form.Designer.cs │ ├── RTF_Visual_Test_Form.cs │ ├── RTF_Visual_Test_Form.resx │ ├── ScanAllFMsForm.Designer.cs │ ├── ScanAllFMsForm.cs │ ├── ScanAllFMsForm.resx │ ├── ScanAllFMsForm_InitSlim.Generated.cs │ ├── ScreenshotsPreprocessing.cs │ ├── Settings │ │ ├── AppearancePage.Designer.cs │ │ ├── AppearancePage.cs │ │ ├── AppearancePage.resx │ │ ├── AppearancePage_InitSlim.Generated.cs │ │ ├── AudioFilesPage.Designer.cs │ │ ├── AudioFilesPage.cs │ │ ├── AudioFilesPage.resx │ │ ├── AudioFilesPage_InitSlim.Generated.cs │ │ ├── IOThreadingPage.Designer.cs │ │ ├── IOThreadingPage.cs │ │ ├── IOThreadingPage.resx │ │ ├── IOThreadingPage_InitSlim.Generated.cs │ │ ├── Interfaces.cs │ │ ├── OtherPage.Designer.cs │ │ ├── OtherPage.cs │ │ ├── OtherPage.resx │ │ ├── OtherPage_InitSlim.Generated.cs │ │ ├── PathsPage.Designer.cs │ │ ├── PathsPage.cs │ │ ├── PathsPage.resx │ │ ├── PathsPage_InitSlim.Generated.cs │ │ ├── SettingsForm.Designer.cs │ │ ├── SettingsForm.cs │ │ ├── SettingsForm.resx │ │ ├── SettingsForm_InitSlim.Generated.cs │ │ ├── ThiefBuddyPage.Designer.cs │ │ ├── ThiefBuddyPage.cs │ │ ├── ThiefBuddyPage.resx │ │ ├── ThiefBuddyPage_InitSlim.Generated.cs │ │ ├── UpdatePage.Designer.cs │ │ ├── UpdatePage.cs │ │ ├── UpdatePage.resx │ │ └── UpdatePage_InitSlim.Generated.cs │ ├── SplashScreenForm.Designer.cs │ ├── SplashScreenForm.cs │ ├── SplashScreenForm.resx │ ├── SplashScreenForm_InitSlim.Generated.cs │ ├── UpdateForm.Designer.cs │ ├── UpdateForm.cs │ ├── UpdateForm.resx │ ├── UpdateForm_InitSlim.Generated.cs │ ├── WinFormsNative │ │ ├── Dialogs │ │ │ ├── FolderBrowserDialog.cs │ │ │ └── Interop.cs │ │ ├── Taskbar │ │ │ ├── Interop.cs │ │ │ └── TaskBarProgress.cs │ │ ├── Win32ThemeHooks.cs │ │ └── WinFormsNative.cs │ └── WinFormsReflection.cs ├── GameConfigFiles.cs ├── GlobalUsings.cs ├── Import.cs ├── Ini │ ├── ConfigIni.cs │ ├── FMDataIni.Generated.cs │ ├── IniCommon.cs │ └── LocalizationIni.cs ├── Interfaces.cs ├── LICENSE ├── Languages │ ├── English.ini │ ├── French.ini │ ├── German.ini │ ├── Hungarian.ini │ ├── Italian.ini │ ├── Portuguese (Brazil).ini │ ├── README.md │ ├── Russian.ini │ ├── Spanish.ini │ └── Turkish.ini ├── PlayTimeTracking.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── About.png │ ├── AngelLoader.ico │ ├── CharEnc.png │ ├── FilterIcons │ │ ├── ClearFilters.png │ │ ├── Recent.png │ │ ├── Recent_Dark.png │ │ ├── ShowUnavailable.png │ │ ├── ShowUnsupported.png │ │ ├── Tags.png │ │ └── TagsDark.png │ ├── Folder16.png │ ├── Help.png │ ├── Install.png │ ├── Mods.png │ ├── Pin.png │ ├── RedExclCircle.png │ ├── RedExclCircle_Dark.png │ ├── RedQCircle.png │ ├── RedQCircle_Dark.png │ ├── Refresh.png │ ├── RefreshFilters.png │ ├── SS2_16.png │ ├── SS2_16_Dark.png │ ├── SS2_21.png │ ├── SS2_21_Dark.png │ ├── Settings.png │ ├── T1_16.png │ ├── T1_16_Dark.png │ ├── T1_21.png │ ├── T1_21_Dark.png │ ├── T1_21_Dark_DarkBG.png │ ├── T2_16.png │ ├── T2_21.png │ ├── T3_16.png │ ├── T3_21.png │ ├── TDM_16.png │ ├── TDM_21.png │ ├── Trash.png │ ├── Trash_Dark.png │ ├── Uninstall.png │ ├── Unpin.png │ ├── broken_file.png │ └── copy_21.png ├── Rtf │ ├── GLMLConversion.cs │ ├── RtfProcessing.cs │ └── WriConversion.cs ├── Screenshots.cs ├── SplashScreen.cs ├── TDM │ ├── TDM.cs │ ├── TDMWatchers.cs │ └── TDM_Downloader.cs ├── Update.cs ├── Update_Langs.cs ├── WinVersion.cs ├── app.manifest ├── post_build.bat └── pre_build.bat ├── AngelLoader_Stub ├── AngelLoader_Stub.h ├── AngelLoader_Stub.vcxproj ├── AngelLoader_Stub.vcxproj.filters ├── dllmain.cpp └── framework.h ├── BinReleaseOnly └── Licenses │ ├── .NET license.txt │ ├── 7-Zip license.txt │ ├── AngelLoader license.txt │ ├── CoreHook license.txt │ ├── DarkUI license.txt │ ├── DeviceIoControlLib license.txt │ ├── EasyHook license.txt │ ├── FFmpeg.NET license.txt │ ├── Ookii Dialogs license.txt │ ├── Open Sans license.txt │ ├── SharpCompress license.txt │ ├── SimpleHelpers.Net license.txt │ └── UDE.NetStandard license.txt ├── Cross-platform notes.md ├── Directory.Build.props ├── FMScanner ├── FMData.cs ├── FMScanner.csproj ├── FastIO.cs ├── GlobalUsings.cs ├── LICENSE ├── ReadOnlyDataContext.cs ├── Scanner.cs ├── ScannerUtility.cs └── StringSplit.cs ├── FOR_OTHER_PROGRAMMERS.md ├── FenGen ├── App.config ├── BuildDateGen.cs ├── CodeWriters.cs ├── CopyrightGen.cs ├── Core.cs ├── DesignerGen.cs ├── EnumDataGen.cs ├── ExcludeResxGen.cs ├── FMDataGen.cs ├── FenGen.csproj ├── FenGen.csproj.DotSettings ├── Forms │ ├── ExceptionBox.Designer.cs │ ├── ExceptionBox.cs │ ├── ExceptionBox.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ └── MainForm.resx ├── GamesGen.cs ├── LICENSE ├── LanguageGen.cs ├── LanguageSupportGen.cs ├── Program.cs ├── RtfDupeFuncGen.cs ├── Utility │ ├── MiscUtils.cs │ └── StringUtils.cs └── post_build.bat ├── LICENSE ├── Localizable_Strings_Changelog.md ├── New GUI notes.md ├── README.md ├── SharpCompress ├── Archives │ ├── AbstractArchive.cs │ ├── ArchiveVolumeFactory.cs │ ├── Rar │ │ ├── RarArchive.cs │ │ ├── RarArchiveEntry.cs │ │ ├── RarArchiveEntryFactory.cs │ │ ├── RarArchiveVolumeFactory.cs │ │ ├── SeekableFilePart.cs │ │ └── StreamRarArchiveVolume.cs │ └── SevenZip │ │ ├── SevenZipArchive.cs │ │ ├── SevenZipArchiveEntry.cs │ │ └── SevenZipContext.cs ├── Common │ ├── ArchiveEncoding.cs │ ├── ArchiveException.cs │ ├── CryptographicException.cs │ ├── Entry.cs │ ├── EntryStream.cs │ ├── ExtractionException.cs │ ├── FilePart.cs │ ├── FlagUtility.cs │ ├── IEntry.cs │ ├── IncompleteArchiveException.cs │ ├── InvalidFormatException.cs │ ├── MultiVolumeExtractionException.cs │ ├── MultipartStreamRequiredException.cs │ ├── Rar │ │ ├── Headers │ │ │ ├── ArchiveCryptHeader.cs │ │ │ ├── ArchiveHeader.cs │ │ │ ├── EndArchiveHeader.cs │ │ │ ├── FileHeader.cs │ │ │ ├── FileNameDecoder.cs │ │ │ ├── Flags.cs │ │ │ ├── IRarHeader.cs │ │ │ ├── MarkHeader.cs │ │ │ ├── NewSubHeaderType.cs │ │ │ ├── ProtectHeader.cs │ │ │ ├── RarHeader.cs │ │ │ └── RarHeaderFactory.cs │ │ ├── RarCrcBinaryReader.cs │ │ ├── RarEntry.cs │ │ ├── RarFilePart.cs │ │ └── RarVolume.cs │ ├── SevenZip │ │ ├── ArchiveDatabase.cs │ │ ├── ArchiveReader.cs │ │ ├── CBindPair.cs │ │ ├── CCoderInfo.cs │ │ ├── CFolder.cs │ │ ├── CStreamSwitch.cs │ │ └── DataReader.cs │ └── Volume.cs ├── Compressors │ ├── BZip2 │ │ ├── BZip2Constants.cs │ │ ├── BZip2Stream.cs │ │ ├── CBZip2InputStream.cs │ │ └── CRC.cs │ ├── Filters │ │ ├── BCJFilter.cs │ │ ├── DeltaFilter.cs │ │ └── Filter.cs │ ├── LZMA │ │ ├── Bcj2DecoderStream.cs │ │ ├── BitVector.cs │ │ ├── CRC.cs │ │ ├── DecoderStream.cs │ │ ├── ICoder.cs │ │ ├── LZ │ │ │ └── LzOutWindow.cs │ │ ├── LzmaBase.cs │ │ ├── LzmaDecoder.cs │ │ ├── LzmaStream.cs │ │ ├── RangeCoder │ │ │ ├── RangeCoder.cs │ │ │ ├── RangeCoderBit.cs │ │ │ └── RangeCoderBitTree.cs │ │ └── Registry.cs │ ├── PPMd │ │ ├── H │ │ │ ├── FreqData.cs │ │ │ ├── ModelPPM.cs │ │ │ ├── PPMContext.cs │ │ │ ├── Pointer.cs │ │ │ ├── RangeCoder.cs │ │ │ ├── RarMemBlock.cs │ │ │ ├── RarNode.cs │ │ │ ├── SEE2Context.cs │ │ │ ├── State.cs │ │ │ ├── StateRef.cs │ │ │ └── SubAllocator.cs │ │ ├── I1 │ │ │ ├── Allocator.cs │ │ │ ├── Coder.cs │ │ │ ├── MemoryNode.cs │ │ │ ├── Model.cs │ │ │ ├── ModelRestorationMethod.cs │ │ │ ├── Pointer.cs │ │ │ ├── PpmContext.cs │ │ │ ├── PpmState.cs │ │ │ └── See2Context.cs │ │ ├── PpmdProperties.cs │ │ ├── PpmdStream.cs │ │ └── PpmdVersion.cs │ └── Rar │ │ ├── IRarUnpack.cs │ │ ├── MultiVolumeReadOnlyStream.cs │ │ ├── RarCRC.cs │ │ ├── RarCrcStream.cs │ │ ├── RarStream.cs │ │ ├── UnpackV1 │ │ ├── Decode │ │ │ ├── AudioVariables.cs │ │ │ ├── BitDecode.cs │ │ │ ├── Decode.cs │ │ │ ├── DistDecode.cs │ │ │ ├── FilterType.cs │ │ │ ├── LitDecode.cs │ │ │ ├── LowDistDecode.cs │ │ │ ├── MultDecode.cs │ │ │ ├── PackDef.cs │ │ │ └── RepDecode.cs │ │ ├── PPM │ │ │ └── BlockTypes.cs │ │ ├── Unpack.cs │ │ ├── Unpack15.cs │ │ ├── Unpack20.cs │ │ ├── Unpack50.cs │ │ ├── UnpackFilter.cs │ │ ├── UnpackInline.cs │ │ └── UnpackUtility.cs │ │ ├── UnpackV2017 │ │ ├── BitInput.getbits_cpp.cs │ │ ├── BitInput.getbits_hpp.cs │ │ ├── FragmentedWindow.unpack50frag_cpp.cs │ │ ├── PackDef.compress_hpp.cs │ │ ├── Unpack.cs │ │ ├── Unpack.rawint_hpp.cs │ │ ├── Unpack.unpack15_cpp.cs │ │ ├── Unpack.unpack20_cpp.cs │ │ ├── Unpack.unpack30_cpp.cs │ │ ├── Unpack.unpack50_cpp.cs │ │ ├── Unpack.unpack_cpp.cs │ │ ├── Unpack.unpackinline_cpp.cs │ │ ├── notes.txt │ │ └── unpack_hpp.cs │ │ └── VM │ │ ├── BitInput.cs │ │ ├── RarVM.cs │ │ ├── VMCmdFlags.cs │ │ ├── VMCommands.cs │ │ ├── VMFlags.cs │ │ ├── VMOpType.cs │ │ ├── VMPreparedCommand.cs │ │ ├── VMPreparedOperand.cs │ │ ├── VMPreparedProgram.cs │ │ ├── VMStandardFilterSignature.cs │ │ └── VMStandardFilters.cs ├── IO │ ├── BufferedSubStream.cs │ ├── MarkingBinaryReader.cs │ ├── NonDisposingStream.cs │ ├── ReadOnlySubStream.cs │ ├── SourceStream.cs │ └── StreamingMode.cs ├── LICENSE.txt ├── Lazy.cs ├── LazyReadOnlyCollection.cs ├── Readers │ ├── AbstractReader.cs │ ├── IReader.cs │ └── Rar │ │ ├── NonSeekableStreamFilePart.cs │ │ ├── RarReader.cs │ │ ├── RarReaderEntry.cs │ │ ├── RarReaderVolume.cs │ │ └── SingleVolumeRarReader.cs ├── SharpCompress.csproj └── Utility.cs ├── TestApps ├── FMInfoGen │ ├── .gitattributes │ ├── .gitignore │ ├── FMInfoGen.sln │ ├── FMInfoGen │ │ ├── App.config │ │ ├── Common │ │ │ ├── Data.cs │ │ │ ├── Misc.cs │ │ │ └── Utility.cs │ │ ├── Core.cs │ │ ├── FMExtract.cs │ │ ├── FMInfoGen.csproj │ │ ├── FMInfoGen.csproj.DotSettings │ │ ├── FMScan.cs │ │ ├── GlobalUsings.cs │ │ ├── Ini │ │ │ └── ConfigIni.cs │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── LICENSE └── RTF_ToPlainTextTest │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── RTF_ToPlainTextTest.sln │ └── RTF_ToPlainTextTest │ ├── GlobalUsings.cs │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── RTF_ToPlainTextTest.csproj │ └── RTF_ToPlainTextTest.csproj.DotSettings ├── Ude ├── Big5Prober.cs ├── CharDistributionAnalyser.cs ├── CharsetDetector.cs ├── CharsetProber.cs ├── CodingStateMachine.cs ├── EUCJPProber.cs ├── EUCKRProber.cs ├── EscCharsetProber.cs ├── EscSM.cs ├── GB18030Prober.cs ├── GlobalUsings.cs ├── HebrewProber.cs ├── JapaneseContextAnalyser.cs ├── LangBulgarianModel.cs ├── LangCyrillicModel.cs ├── LangGreekModel.cs ├── LangHebrewModel.cs ├── Latin1Prober.cs ├── MBCSGroupProber.cs ├── MBCSSM.cs ├── MemoryStreamFast.cs ├── SBCSGroupProber.cs ├── SBCharsetProber.cs ├── SJISProber.cs ├── SMModel.cs ├── SequenceModel.cs ├── SimpleHelpers │ ├── FileEncoding.cs │ └── LICENSE ├── UTF8Prober.cs ├── Ude.NetStandard.csproj ├── Utils.cs └── license │ ├── Fen Modifications.txt │ ├── MPL-1.1.txt │ ├── gpl-2.0.txt │ └── lgpl-2.1.txt ├── Update ├── ControlUtils.cs ├── CustomControls │ ├── DarkButton.cs │ ├── DarkControlState.cs │ ├── DarkLabel.cs │ ├── DarkProgressBar.cs │ └── DarkUI_LICENSE.txt ├── DarkColors.cs ├── DarkErrorDialog.cs ├── DarkFormBase.cs ├── DarkTaskDialog.Designer.cs ├── DarkTaskDialog.cs ├── DarkTaskDialog.resx ├── DarkTaskDialog_InitSlim.Generated.cs ├── Data.cs ├── FullyGlobal.cs ├── LocalizationData.cs ├── LocalizationIni.cs ├── Logger.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MainForm_InitSlim.Generated.cs ├── Native.cs ├── Paths.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── AngelLoader.ico ├── Update.csproj ├── Update.csproj.DotSettings └── Utils.cs ├── bin_dependencies ├── 7z32 │ ├── 7z.dll │ └── 7z.exe ├── 7z64 │ ├── 7z.dll │ └── 7z.exe ├── OpenSans-Regular.ttf ├── corehook64.dll └── ffmpeg │ ├── avcodec-58.dll │ ├── avfilter-7.dll │ ├── avformat-58.dll │ ├── avutil-56.dll │ ├── ffmpeg.exe │ ├── ffmpeg.txt │ ├── ffprobe.exe │ └── swresample-3.dll ├── docs ├── _config.yml ├── al_update │ └── al_update.ini ├── al_update_testing │ ├── al_update.ini │ └── changelogs │ │ ├── changelog_1.4.1.txt │ │ └── versions_list.txt ├── doc │ ├── English │ │ ├── AngelLoader documentation.html │ │ └── images │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── BottomBar.png │ │ │ ├── CharacterEncoding.png │ │ │ ├── ClearFilters.png │ │ │ ├── FilterShowRecentAtTop.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── FullScreen.png │ │ │ ├── Install.png │ │ │ ├── PlayFM.png │ │ │ ├── PlayOriginalGame.png │ │ │ ├── ReadmeControls.png │ │ │ ├── Refresh.png │ │ │ ├── RefreshFilters.png │ │ │ ├── ResetLayout.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Settings.png │ │ │ ├── Shock2_21.png │ │ │ ├── Show_Unavailable.png │ │ │ ├── Show_Unsupported.png │ │ │ ├── TDM_21.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── Uninstall.png │ │ │ ├── WebSearch.png │ │ │ ├── ZoomIn.png │ │ │ ├── ZoomOut.png │ │ │ ├── ZoomReset.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── drop_down_arrow.png │ │ │ ├── edit_fm_tab.png │ │ │ ├── filter_bar.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── game_versions_window.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_menu.png │ │ │ ├── main_window_full_960.png │ │ │ ├── mods_tab.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── screenshots_tab.png │ │ │ ├── settings_appr_date.png │ │ │ ├── settings_appr_game_org.png │ │ │ ├── settings_appr_hide.png │ │ │ ├── settings_appr_lang.png │ │ │ ├── settings_appr_no_fm.png │ │ │ ├── settings_appr_rating.png │ │ │ ├── settings_appr_readme.png │ │ │ ├── settings_appr_recent.png │ │ │ ├── settings_appr_sort.png │ │ │ ├── settings_appr_theme.png │ │ │ ├── settings_audio_files_tab.png │ │ │ ├── setup_io_threading_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── setup_thief_buddy_tab.png │ │ │ ├── setup_update_tab.png │ │ │ ├── stats_tab.png │ │ │ ├── tags_tab.png │ │ │ └── update_available_notification.png │ ├── French │ │ ├── AngelLoader documentation_FR.html │ │ └── images_fr │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── BlueMagnifier.png │ │ │ ├── BottomBar.png │ │ │ ├── CharacterEncoding.png │ │ │ ├── ClearFilters.png │ │ │ ├── FilterShowRecentAtTop.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── FullScreen.png │ │ │ ├── Import.png │ │ │ ├── Install.png │ │ │ ├── PlayFM.png │ │ │ ├── PlayOriginalGame.png │ │ │ ├── ReadmeControls.png │ │ │ ├── Refresh.png │ │ │ ├── RefreshFilters.png │ │ │ ├── ResetLayout.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Settings.png │ │ │ ├── Shock2_21.png │ │ │ ├── Show_Unavailable.png │ │ │ ├── Show_Unsupported.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── Uninstall.png │ │ │ ├── WebSearch.png │ │ │ ├── ZoomIn.png │ │ │ ├── ZoomOut.png │ │ │ ├── ZoomReset.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── drop_down_arrow.png │ │ │ ├── edit_fm_tab.png │ │ │ ├── filter_bar.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── game_versions_window.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_menu.png │ │ │ ├── main_window_full_960.png │ │ │ ├── mods_tab.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── settings_appr_date.png │ │ │ ├── settings_appr_game_org.png │ │ │ ├── settings_appr_hide.png │ │ │ ├── settings_appr_lang.png │ │ │ ├── settings_appr_no_fm.png │ │ │ ├── settings_appr_rating.png │ │ │ ├── settings_appr_readme.png │ │ │ ├── settings_appr_recent.png │ │ │ ├── settings_appr_sort.png │ │ │ ├── settings_appr_theme.png │ │ │ ├── setup_appearance_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── setup_thief_buddy_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ └── history │ │ ├── doc v1.1.4 │ │ └── AngelLoader Documentation French │ │ │ ├── angelloader_documentation_fr.html │ │ │ └── images_fr │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── edit_fm_tab.jpg │ │ │ ├── edit_fm_tab.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_window_full_960.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── setup_fm_display_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ ├── doc v1.1.6 │ │ └── AngelLoader Documentation French │ │ │ ├── angelloader_documentation_fr.html │ │ │ └── images_fr │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── edit_fm_tab.jpg │ │ │ ├── edit_fm_tab.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_window_full_960.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── setup_fm_display_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ ├── doc v1.2 │ │ └── AngelLoader Documentation French │ │ │ ├── angelloader_documentation_fr.html │ │ │ └── images_fr │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Shock2_21.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── edit_fm_tab.jpg │ │ │ ├── edit_fm_tab.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_window_full_960.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── setup_fm_display_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ ├── doc v1.4.2 │ │ ├── English │ │ │ ├── AngelLoader documentation.html │ │ │ └── images │ │ │ │ ├── AngelLoader_Icon_48.png │ │ │ │ ├── Finished_Expert.png │ │ │ │ ├── Finished_Extreme.png │ │ │ │ ├── Finished_Hard.png │ │ │ │ ├── Finished_Normal.png │ │ │ │ ├── Finished_Unknown.png │ │ │ │ ├── ScanAllFMs_window.png │ │ │ │ ├── Shock2_21.png │ │ │ │ ├── Thief1_21.png │ │ │ │ ├── Thief2_21.png │ │ │ │ ├── Thief3_21.png │ │ │ │ ├── column_context_menu.png │ │ │ │ ├── comment_tab.png │ │ │ │ ├── edit_fm_tab.png │ │ │ │ ├── fm_right_click_menu.png │ │ │ │ ├── fms_list_960.png │ │ │ │ ├── green_check_21.png │ │ │ │ ├── initial_setup.png │ │ │ │ ├── main_window_full_960.png │ │ │ │ ├── patch_tab.png │ │ │ │ ├── red_circle_question_mark_21.png │ │ │ │ ├── scan_14.png │ │ │ │ ├── setup_fm_display_tab.png │ │ │ │ ├── setup_other_tab.png │ │ │ │ ├── setup_paths_tab.png │ │ │ │ ├── stats_tab.png │ │ │ │ └── tags_tab.png │ │ └── French │ │ │ ├── AngelLoader documentation_FR.html │ │ │ └── images_fr │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Shock2_21.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── edit_fm_tab.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_window_full_960.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── setup_fm_display_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ ├── doc v1.4.4 │ │ ├── English │ │ │ ├── AngelLoader documentation.html │ │ │ └── images │ │ │ │ ├── AngelLoader_Icon_48.png │ │ │ │ ├── Finished_Expert.png │ │ │ │ ├── Finished_Extreme.png │ │ │ │ ├── Finished_Hard.png │ │ │ │ ├── Finished_Normal.png │ │ │ │ ├── Finished_Unknown.png │ │ │ │ ├── ScanAllFMs_window.png │ │ │ │ ├── Shock2_21.png │ │ │ │ ├── Thief1_21.png │ │ │ │ ├── Thief2_21.png │ │ │ │ ├── Thief3_21.png │ │ │ │ ├── column_context_menu.png │ │ │ │ ├── comment_tab.png │ │ │ │ ├── edit_fm_tab.png │ │ │ │ ├── fm_right_click_menu.png │ │ │ │ ├── fms_list_960.png │ │ │ │ ├── green_check_21.png │ │ │ │ ├── initial_setup.png │ │ │ │ ├── main_window_full_960.png │ │ │ │ ├── patch_tab.png │ │ │ │ ├── red_circle_question_mark_21.png │ │ │ │ ├── scan_14.png │ │ │ │ ├── setup_fm_display_tab.png │ │ │ │ ├── setup_other_tab.png │ │ │ │ ├── setup_paths_tab.png │ │ │ │ ├── stats_tab.png │ │ │ │ └── tags_tab.png │ │ ├── French │ │ │ ├── AngelLoader documentation_FR.html │ │ │ └── images_fr │ │ │ │ ├── AngelLoader_Icon_48.png │ │ │ │ ├── Finished_Expert.png │ │ │ │ ├── Finished_Extreme.png │ │ │ │ ├── Finished_Hard.png │ │ │ │ ├── Finished_Normal.png │ │ │ │ ├── Finished_Unknown.png │ │ │ │ ├── ScanAllFMs_window.png │ │ │ │ ├── Shock2_21.png │ │ │ │ ├── Thief1_21.png │ │ │ │ ├── Thief2_21.png │ │ │ │ ├── Thief3_21.png │ │ │ │ ├── column_context_menu.png │ │ │ │ ├── comment_tab.png │ │ │ │ ├── edit_fm_tab.png │ │ │ │ ├── fm_right_click_menu.png │ │ │ │ ├── fms_list_960.png │ │ │ │ ├── green_check_21.png │ │ │ │ ├── initial_setup.png │ │ │ │ ├── main_window_full_960.png │ │ │ │ ├── patch_tab.png │ │ │ │ ├── red_circle_question_mark_21.png │ │ │ │ ├── scan_14.png │ │ │ │ ├── setup_fm_display_tab.png │ │ │ │ ├── setup_other_tab.png │ │ │ │ ├── setup_paths_tab.png │ │ │ │ ├── stats_tab.png │ │ │ │ └── tags_tab.png │ │ └── French_a │ │ │ ├── AngelLoader documentation_FR.html │ │ │ └── images_fr │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Shock2_21.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── edit_fm_tab.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_window_full_960.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── setup_fm_display_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ ├── doc v1.4.5 │ │ └── English │ │ │ ├── AngelLoader documentation.html │ │ │ └── images │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── BlueMagnifier.png │ │ │ ├── ClearFilters.png │ │ │ ├── FilterShowRecentAtTop.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── Import.png │ │ │ ├── Install.png │ │ │ ├── PlayFM.png │ │ │ ├── PlayOriginalGame.png │ │ │ ├── Refresh.png │ │ │ ├── RefreshFromDisk.png │ │ │ ├── ResetLayout.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Settings.png │ │ │ ├── Shock2_21.png │ │ │ ├── Show_Unsupported.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── Uninstall.png │ │ │ ├── WebSearch.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── drop_down_arrow.png │ │ │ ├── edit_fm_tab.png │ │ │ ├── filter_bar.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── game_versions_window.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_menu.png │ │ │ ├── main_window_full_960.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── setup_fm_display_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ ├── doc v1.4 │ │ ├── AngelLoader documentation.html │ │ └── images │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Shock2_21.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── edit_fm_tab.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_window_full_960.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── setup_fm_display_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ ├── doc v1.5.4 │ │ ├── English │ │ │ ├── AngelLoader documentation.html │ │ │ └── images │ │ │ │ ├── AngelLoader_Icon_48.png │ │ │ │ ├── BlueMagnifier.png │ │ │ │ ├── BottomBar.png │ │ │ │ ├── CharacterEncoding.png │ │ │ │ ├── ClearFilters.png │ │ │ │ ├── FilterShowRecentAtTop.png │ │ │ │ ├── Finished_Expert.png │ │ │ │ ├── Finished_Extreme.png │ │ │ │ ├── Finished_Hard.png │ │ │ │ ├── Finished_Normal.png │ │ │ │ ├── Finished_Unknown.png │ │ │ │ ├── FullScreen.png │ │ │ │ ├── Import.png │ │ │ │ ├── Install.png │ │ │ │ ├── PlayFM.png │ │ │ │ ├── PlayOriginalGame.png │ │ │ │ ├── ReadmeControls.png │ │ │ │ ├── Refresh.png │ │ │ │ ├── RefreshFilters.png │ │ │ │ ├── ResetLayout.png │ │ │ │ ├── ScanAllFMs_window.png │ │ │ │ ├── Settings.png │ │ │ │ ├── Shock2_21.png │ │ │ │ ├── Show_Unavailable.png │ │ │ │ ├── Show_Unsupported.png │ │ │ │ ├── Thief1_21.png │ │ │ │ ├── Thief2_21.png │ │ │ │ ├── Thief3_21.png │ │ │ │ ├── Uninstall.png │ │ │ │ ├── WebSearch.png │ │ │ │ ├── ZoomIn.png │ │ │ │ ├── ZoomOut.png │ │ │ │ ├── ZoomReset.png │ │ │ │ ├── column_context_menu.png │ │ │ │ ├── comment_tab.png │ │ │ │ ├── drop_down_arrow.png │ │ │ │ ├── edit_fm_tab.png │ │ │ │ ├── filter_bar.png │ │ │ │ ├── fm_right_click_menu.png │ │ │ │ ├── fms_list_960.png │ │ │ │ ├── game_versions_window.png │ │ │ │ ├── green_check_21.png │ │ │ │ ├── initial_setup.png │ │ │ │ ├── main_menu.png │ │ │ │ ├── main_window_full_960.png │ │ │ │ ├── mods_tab.png │ │ │ │ ├── patch_tab.png │ │ │ │ ├── red_circle_question_mark_21.png │ │ │ │ ├── scan_14.png │ │ │ │ ├── setup_appearance_tab.png │ │ │ │ ├── setup_other_tab.png │ │ │ │ ├── setup_paths_tab.png │ │ │ │ ├── stats_tab.png │ │ │ │ └── tags_tab.png │ │ └── French │ │ │ ├── AngelLoader documentation_FR.html │ │ │ └── images_fr │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── BlueMagnifier.png │ │ │ ├── BottomBar.png │ │ │ ├── CharacterEncoding.png │ │ │ ├── ClearFilters.png │ │ │ ├── FilterShowRecentAtTop.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── FullScreen.png │ │ │ ├── Import.png │ │ │ ├── Install.png │ │ │ ├── PlayFM.png │ │ │ ├── PlayOriginalGame.png │ │ │ ├── ReadmeControls.png │ │ │ ├── Refresh.png │ │ │ ├── RefreshFilters.png │ │ │ ├── ResetLayout.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Settings.png │ │ │ ├── Shock2_21.png │ │ │ ├── Show_Unavailable.png │ │ │ ├── Show_Unsupported.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── Uninstall.png │ │ │ ├── WebSearch.png │ │ │ ├── ZoomIn.png │ │ │ ├── ZoomOut.png │ │ │ ├── ZoomReset.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── drop_down_arrow.png │ │ │ ├── edit_fm_tab.png │ │ │ ├── filter_bar.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── game_versions_window.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_menu.png │ │ │ ├── main_window_full_960.png │ │ │ ├── mods_tab.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── setup_appearance_tab.png │ │ │ ├── setup_fm_display_tab.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ └── doc v1.6.9.2 │ │ ├── AngelLoader documentation_FR.html │ │ ├── English │ │ ├── AngelLoader documentation.html │ │ └── images │ │ │ ├── AngelLoader_Icon_48.png │ │ │ ├── BottomBar.png │ │ │ ├── CharacterEncoding.png │ │ │ ├── ClearFilters.png │ │ │ ├── FilterShowRecentAtTop.png │ │ │ ├── Finished_Expert.png │ │ │ ├── Finished_Extreme.png │ │ │ ├── Finished_Hard.png │ │ │ ├── Finished_Normal.png │ │ │ ├── Finished_Unknown.png │ │ │ ├── FullScreen.png │ │ │ ├── Install.png │ │ │ ├── PlayFM.png │ │ │ ├── PlayOriginalGame.png │ │ │ ├── ReadmeControls.png │ │ │ ├── Refresh.png │ │ │ ├── RefreshFilters.png │ │ │ ├── ResetLayout.png │ │ │ ├── ScanAllFMs_window.png │ │ │ ├── Settings.png │ │ │ ├── Shock2_21.png │ │ │ ├── Show_Unavailable.png │ │ │ ├── Show_Unsupported.png │ │ │ ├── Thief1_21.png │ │ │ ├── Thief2_21.png │ │ │ ├── Thief3_21.png │ │ │ ├── Uninstall.png │ │ │ ├── WebSearch.png │ │ │ ├── ZoomIn.png │ │ │ ├── ZoomOut.png │ │ │ ├── ZoomReset.png │ │ │ ├── column_context_menu.png │ │ │ ├── comment_tab.png │ │ │ ├── drop_down_arrow.png │ │ │ ├── edit_fm_tab.png │ │ │ ├── filter_bar.png │ │ │ ├── fm_right_click_menu.png │ │ │ ├── fms_list_960.png │ │ │ ├── game_versions_window.png │ │ │ ├── green_check_21.png │ │ │ ├── initial_setup.png │ │ │ ├── main_menu.png │ │ │ ├── main_window_full_960.png │ │ │ ├── mods_tab.png │ │ │ ├── patch_tab.png │ │ │ ├── red_circle_question_mark_21.png │ │ │ ├── scan_14.png │ │ │ ├── settings_appr_date.png │ │ │ ├── settings_appr_game_org.png │ │ │ ├── settings_appr_hide.png │ │ │ ├── settings_appr_lang.png │ │ │ ├── settings_appr_no_fm.png │ │ │ ├── settings_appr_rating.png │ │ │ ├── settings_appr_readme.png │ │ │ ├── settings_appr_recent.png │ │ │ ├── settings_appr_sort.png │ │ │ ├── settings_appr_theme.png │ │ │ ├── setup_other_tab.png │ │ │ ├── setup_paths_tab.png │ │ │ ├── stats_tab.png │ │ │ └── tags_tab.png │ │ └── images_fr │ │ ├── AngelLoader_Icon_48.png │ │ ├── BlueMagnifier.png │ │ ├── BottomBar.png │ │ ├── CharacterEncoding.png │ │ ├── ClearFilters.png │ │ ├── FilterShowRecentAtTop.png │ │ ├── Finished_Expert.png │ │ ├── Finished_Extreme.png │ │ ├── Finished_Hard.png │ │ ├── Finished_Normal.png │ │ ├── Finished_Unknown.png │ │ ├── FullScreen.png │ │ ├── Import.png │ │ ├── Install.png │ │ ├── PlayFM.png │ │ ├── PlayOriginalGame.png │ │ ├── ReadmeControls.png │ │ ├── Refresh.png │ │ ├── RefreshFilters.png │ │ ├── ResetLayout.png │ │ ├── ScanAllFMs_window.png │ │ ├── Settings.png │ │ ├── Shock2_21.png │ │ ├── Show_Unavailable.png │ │ ├── Show_Unsupported.png │ │ ├── Thief1_21.png │ │ ├── Thief2_21.png │ │ ├── Thief3_21.png │ │ ├── Uninstall.png │ │ ├── WebSearch.png │ │ ├── ZoomIn.png │ │ ├── ZoomOut.png │ │ ├── ZoomReset.png │ │ ├── column_context_menu.png │ │ ├── comment_tab.png │ │ ├── drop_down_arrow.png │ │ ├── edit_fm_tab.png │ │ ├── filter_bar.png │ │ ├── fm_right_click_menu.png │ │ ├── fms_list_960.png │ │ ├── game_versions_window.png │ │ ├── green_check_21.png │ │ ├── initial_setup.png │ │ ├── main_menu.png │ │ ├── main_window_full_960.png │ │ ├── mods_tab.png │ │ ├── patch_tab.png │ │ ├── red_circle_question_mark_21.png │ │ ├── scan_14.png │ │ ├── settings_appr_date.png │ │ ├── settings_appr_game_org.png │ │ ├── settings_appr_hide.png │ │ ├── settings_appr_lang.png │ │ ├── settings_appr_no_fm.png │ │ ├── settings_appr_rating.png │ │ ├── settings_appr_readme.png │ │ ├── settings_appr_recent.png │ │ ├── settings_appr_sort.png │ │ ├── settings_appr_theme.png │ │ ├── setup_appearance_tab.png │ │ ├── setup_other_tab.png │ │ ├── setup_paths_tab.png │ │ ├── stats_tab.png │ │ └── tags_tab.png ├── doc_1.4.4_1.4.5.html ├── doc_1.4.5_1.4.8.html ├── doc_1.4.8_1.5.0.html ├── doc_1.5.0_1.5.4.html ├── doc_1.5.4_1.6.0.html ├── doc_1.6.0_1.6.2.html ├── doc_1.6.2_1.6.4.html ├── doc_1.6.4_1.6.6.html ├── doc_1.6.6_1.6.7.html ├── doc_1.6.7_1.6.8.html ├── doc_1.6.8_1.6.9.html ├── doc_1.6.9_1.7.0.html ├── doc_1.7.0_1.7.6.html ├── doc_1.7.6_1.7.7.html ├── doc_1.7.7_1.8.0.html ├── doc_1.8.0_1.9.0.html ├── doc_1.9.0_1.9.7.html ├── doc_1.9.7_1.11.0.html ├── english_1.10.1_1.11.0.html ├── english_1.4.4_1.4.5.html ├── english_1.4.5_1.4.8.html ├── english_1.4.8_1.5.0.html ├── english_1.5.0_1.5.3.html ├── english_1.5.3_1.5.4.html ├── english_1.5.4_1.6.0.html ├── english_1.6.0_1.6.2.html ├── english_1.6.2_1.6.4.html ├── english_1.6.4_1.6.6.html ├── english_1.6.6_1.6.7.html ├── english_1.6.7_1.6.8.html ├── english_1.6.8_1.6.9.html ├── english_1.6.9_1.7.0.html ├── english_1.7.0_1.7.3.html ├── english_1.7.3_1.7.6.html ├── english_1.7.6_1.7.7.html ├── english_1.7.7_1.7.9.html ├── english_1.7.9_1.8.0.html ├── english_1.8.0_1.9.0.html ├── english_1.9.0_1.9.2.html ├── english_1.9.2_1.9.7.html ├── english_1.9.7_1.10.1.html ├── file_ext_note.html ├── images │ ├── 7zso │ │ ├── 7zso-header.png │ │ ├── FMSel-chart.png │ │ ├── file-size-chart3.png │ │ ├── v1.10.png │ │ └── v1.9.png │ ├── AngelLoader_v1.5.0_screenshot2.png │ ├── etc │ │ ├── dark_arrows.png │ │ ├── game_editors_mockup.png │ │ ├── game_editors_mockup_small.png │ │ ├── import.png │ │ └── ndl_import.png │ ├── main_window_2022-05-10_900w.png │ ├── main_window_2022-05-10_full.png │ ├── main_window_2022-05-22_900w.png │ ├── main_window_2022-06-20_900w.png │ ├── main_window_2022-08-16_900w.png │ ├── main_window_v172_900w.png │ ├── main_window_v173a_900w.png │ ├── main_window_v175_900w.png │ ├── main_window_v176pre_900w.png │ ├── main_window_v194_900w.png │ └── reasonable_rtf │ │ ├── perf_bar_chart.png │ │ ├── perf_bar_charts2.png │ │ └── perf_bar_charts3.png └── index.md └── temp_transfer_bin └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /AL_Common/AL_Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/AL_Common.csproj -------------------------------------------------------------------------------- /AL_Common/AL_Common.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/AL_Common.csproj.DotSettings -------------------------------------------------------------------------------- /AL_Common/CustomInterop/BCrypt_Interop.NTSTATUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/BCrypt_Interop.NTSTATUS.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.BCryptGenRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.BCryptGenRandom.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.BOOL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.BOOL.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.BOOLEAN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.BOOLEAN.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.DeleteFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.DeleteFile.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.DeviceIoControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.DeviceIoControl.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.Errors.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.FileAttributes.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.FileOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.FileOperations.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.FindClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.FindClose.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.FindFirstFileEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.FindFirstFileEx.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.FindNextFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.FindNextFile.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.FlushFileBuffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.FlushFileBuffers.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.FormatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.FormatMessage.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.IO_STATUS_BLOCK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.IO_STATUS_BLOCK.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.Misc.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.NtStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.NtStatus.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.RemoveDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.RemoveDirectory.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.SecurityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.SecurityOptions.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.SetFilePointerEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.SetFilePointerEx.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Interop.WIN32_FIND_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Interop.WIN32_FIND_DATA.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/PathInternal.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/PathInternal.Windows.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/PathInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/PathInternal.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/SafeFindHandle.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/SafeFindHandle.Windows.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/Win32Marshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/Win32Marshal.cs -------------------------------------------------------------------------------- /AL_Common/CustomInterop/__Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/CustomInterop/__Error.cs -------------------------------------------------------------------------------- /AL_Common/DeviceIoControlLib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/DeviceIoControlLib/LICENSE.txt -------------------------------------------------------------------------------- /AL_Common/DeviceIoControlLib/Utilities/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/DeviceIoControlLib/Utilities/Utils.cs -------------------------------------------------------------------------------- /AL_Common/Exceptions/ArgumentException_NET.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Exceptions/ArgumentException_NET.cs -------------------------------------------------------------------------------- /AL_Common/Exceptions/ArgumentNullException_NET.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Exceptions/ArgumentNullException_NET.cs -------------------------------------------------------------------------------- /AL_Common/Exceptions/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Exceptions/SR.cs -------------------------------------------------------------------------------- /AL_Common/Exceptions/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Exceptions/ThrowHelper.cs -------------------------------------------------------------------------------- /AL_Common/FastZipReader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FastZipReader/LICENSE -------------------------------------------------------------------------------- /AL_Common/FastZipReader/ZipArchiveFast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FastZipReader/ZipArchiveFast.cs -------------------------------------------------------------------------------- /AL_Common/FastZipReader/ZipArchiveFastEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FastZipReader/ZipArchiveFastEntry.cs -------------------------------------------------------------------------------- /AL_Common/FastZipReader/ZipArchiveFast_Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FastZipReader/ZipArchiveFast_Common.cs -------------------------------------------------------------------------------- /AL_Common/FastZipReader/ZipArchiveFast_Threaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FastZipReader/ZipArchiveFast_Threaded.cs -------------------------------------------------------------------------------- /AL_Common/FastZipReader/ZipBlocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FastZipReader/ZipBlocks.cs -------------------------------------------------------------------------------- /AL_Common/FastZipReader/ZipCustomStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FastZipReader/ZipCustomStreams.cs -------------------------------------------------------------------------------- /AL_Common/FastZipReader/ZipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FastZipReader/ZipHelper.cs -------------------------------------------------------------------------------- /AL_Common/Fen7z.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Fen7z.cs -------------------------------------------------------------------------------- /AL_Common/FenGenAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/FenGenAttributes.cs -------------------------------------------------------------------------------- /AL_Common/General/ArraySegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/ArraySegment.cs -------------------------------------------------------------------------------- /AL_Common/General/CancellationTokenUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/CancellationTokenUtils.cs -------------------------------------------------------------------------------- /AL_Common/General/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/Common.cs -------------------------------------------------------------------------------- /AL_Common/General/Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/Encoding.cs -------------------------------------------------------------------------------- /AL_Common/General/Enumerables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/Enumerables.cs -------------------------------------------------------------------------------- /AL_Common/General/FileAndPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/FileAndPath.cs -------------------------------------------------------------------------------- /AL_Common/General/FindReplace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/FindReplace.cs -------------------------------------------------------------------------------- /AL_Common/General/HashTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/HashTables.cs -------------------------------------------------------------------------------- /AL_Common/General/Numeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/Numeric.cs -------------------------------------------------------------------------------- /AL_Common/General/Pools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/Pools.cs -------------------------------------------------------------------------------- /AL_Common/General/StaticArrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/StaticArrays.cs -------------------------------------------------------------------------------- /AL_Common/General/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/Stream.cs -------------------------------------------------------------------------------- /AL_Common/General/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/String.cs -------------------------------------------------------------------------------- /AL_Common/General/Threading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/Threading.cs -------------------------------------------------------------------------------- /AL_Common/General/ValueToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/General/ValueToString.cs -------------------------------------------------------------------------------- /AL_Common/GlobalHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/GlobalHttpClient.cs -------------------------------------------------------------------------------- /AL_Common/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/GlobalUsings.cs -------------------------------------------------------------------------------- /AL_Common/HTMLNamedEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/HTMLNamedEntities.cs -------------------------------------------------------------------------------- /AL_Common/HtmlRefExtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/HtmlRefExtract.cs -------------------------------------------------------------------------------- /AL_Common/IO/AL_SafeFileHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/AL_SafeFileHandle.cs -------------------------------------------------------------------------------- /AL_Common/IO/BinaryRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/BinaryRead.cs -------------------------------------------------------------------------------- /AL_Common/IO/Delete_Threaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/Delete_Threaded.cs -------------------------------------------------------------------------------- /AL_Common/IO/DisableMediaInsertionPrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/DisableMediaInsertionPrompt.cs -------------------------------------------------------------------------------- /AL_Common/IO/FastIO_Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/FastIO_Native.cs -------------------------------------------------------------------------------- /AL_Common/IO/FileStreamHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/FileStreamHelpers.cs -------------------------------------------------------------------------------- /AL_Common/IO/FileStream_NET.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/FileStream_NET.cs -------------------------------------------------------------------------------- /AL_Common/IO/RandomAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/RandomAccess.cs -------------------------------------------------------------------------------- /AL_Common/IO/StreamReaderCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/StreamReaderCustom.cs -------------------------------------------------------------------------------- /AL_Common/IO/SymLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/IO/SymLink.cs -------------------------------------------------------------------------------- /AL_Common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/LICENSE -------------------------------------------------------------------------------- /AL_Common/Language/LanguageSupport.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Language/LanguageSupport.Generated.cs -------------------------------------------------------------------------------- /AL_Common/Language/LanguageSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Language/LanguageSupport.cs -------------------------------------------------------------------------------- /AL_Common/Language/LanguageSupport_PerfectHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Language/LanguageSupport_PerfectHash.cs -------------------------------------------------------------------------------- /AL_Common/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/Logger.cs -------------------------------------------------------------------------------- /AL_Common/RTF/RTFParserCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/RTF/RTFParserCommon.cs -------------------------------------------------------------------------------- /AL_Common/RTF/RTF_SymbolListGenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/RTF/RTF_SymbolListGenSource.cs -------------------------------------------------------------------------------- /AL_Common/RTF/RtfDisplayedReadmeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/RTF/RtfDisplayedReadmeParser.cs -------------------------------------------------------------------------------- /AL_Common/RTF/RtfToTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/RTF/RtfToTextConverter.cs -------------------------------------------------------------------------------- /AL_Common/RTF/RtfToTextConverter_DupeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/RTF/RtfToTextConverter_DupeSource.cs -------------------------------------------------------------------------------- /AL_Common/TDMCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AL_Common/TDMCommon.cs -------------------------------------------------------------------------------- /AngelLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader.sln -------------------------------------------------------------------------------- /AngelLoader/AngelLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/AngelLoader.csproj -------------------------------------------------------------------------------- /AngelLoader/AngelLoader.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/AngelLoader.csproj.DotSettings -------------------------------------------------------------------------------- /AngelLoader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/App.config -------------------------------------------------------------------------------- /AngelLoader/Common/Comparers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Comparers.cs -------------------------------------------------------------------------------- /AngelLoader/Common/DataClasses/CatAndTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/DataClasses/CatAndTags.cs -------------------------------------------------------------------------------- /AngelLoader/Common/DataClasses/ConfigData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/DataClasses/ConfigData.cs -------------------------------------------------------------------------------- /AngelLoader/Common/DataClasses/DarkColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/DataClasses/DarkColors.cs -------------------------------------------------------------------------------- /AngelLoader/Common/DataClasses/ErrorText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/DataClasses/ErrorText.cs -------------------------------------------------------------------------------- /AngelLoader/Common/DataClasses/FMData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/DataClasses/FMData.cs -------------------------------------------------------------------------------- /AngelLoader/Common/DataClasses/FMDataSupporting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/DataClasses/FMDataSupporting.cs -------------------------------------------------------------------------------- /AngelLoader/Common/DataClasses/LocalizationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/DataClasses/LocalizationData.cs -------------------------------------------------------------------------------- /AngelLoader/Common/DataClasses/NonLocalizableText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/DataClasses/NonLocalizableText.cs -------------------------------------------------------------------------------- /AngelLoader/Common/EnumData.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/EnumData.Generated.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Errors.cs -------------------------------------------------------------------------------- /AngelLoader/Common/GameSupport.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/GameSupport.Generated.cs -------------------------------------------------------------------------------- /AngelLoader/Common/GameSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/GameSupport.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Global.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Misc.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Native/FastIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Native/FastIO.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Native/NativeCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Native/NativeCommon.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Paths.cs -------------------------------------------------------------------------------- /AngelLoader/Common/SettingsWindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/SettingsWindowState.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/ColorUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/EnumUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/EnumUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/InstalledDirNameUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/InstalledDirNameUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/MathUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/MiscUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/MiscUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/PathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/PathUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/ProcessUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/ProcessUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/StringUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/ThreadingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/ThreadingUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Common/Utility/ZipUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Common/Utility/ZipUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Core.cs -------------------------------------------------------------------------------- /AngelLoader/DetectDriveTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/DetectDriveTypes.cs -------------------------------------------------------------------------------- /AngelLoader/FFmpeg.NET/FFmpeg.NET.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FFmpeg.NET/FFmpeg.NET.cs -------------------------------------------------------------------------------- /AngelLoader/FMArchives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMArchives.cs -------------------------------------------------------------------------------- /AngelLoader/FMAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMAudio.cs -------------------------------------------------------------------------------- /AngelLoader/FMBackupAndRestore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMBackupAndRestore.cs -------------------------------------------------------------------------------- /AngelLoader/FMCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMCache.cs -------------------------------------------------------------------------------- /AngelLoader/FMDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMDelete.cs -------------------------------------------------------------------------------- /AngelLoader/FMInstallAndPlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMInstallAndPlay.cs -------------------------------------------------------------------------------- /AngelLoader/FMLanguages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMLanguages.cs -------------------------------------------------------------------------------- /AngelLoader/FMScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMScan.cs -------------------------------------------------------------------------------- /AngelLoader/FMTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FMTags.cs -------------------------------------------------------------------------------- /AngelLoader/Filtering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Filtering.cs -------------------------------------------------------------------------------- /AngelLoader/FindFMs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/FindFMs.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/AboutForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/AboutForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/AboutForm_InitSlim.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/AboutForm_InitSlim.Generated.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/ControlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/ControlUtils.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkArrowButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkArrowButton.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkButton.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkCheckBox.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkComboBox.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkContextMenu.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkControlState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkControlState.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkGroupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkGroupBox.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkLabel.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkLinkLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkLinkLabel.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkListBox.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkMenuRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkMenuRenderer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkProgressBar.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkRadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkRadioButton.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkTabControl.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkTextBox.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkTrackBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkTrackBar.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkTreeView.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DarkUI_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DarkUI_LICENSE.txt -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/DrawnPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/DrawnPanel.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/ImagePanelCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/ImagePanelCustom.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/ModsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/ModsControl.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/ModsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/ModsControl.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/ModsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/ModsPanel.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/PanelCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/PanelCustom.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/StandardButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/StandardButton.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/ToolTipCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/ToolTipCustom.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/CustomControls/TransparentPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/CustomControls/TransparentPanel.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/DarkErrorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/DarkErrorDialog.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/DarkFormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/DarkFormBase.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/DarkTaskDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/DarkTaskDialog.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/DarkTaskDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/DarkTaskDialog.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/DarkTaskDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/DarkTaskDialog.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Dialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Dialogs.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterDateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterDateForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterDateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterDateForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterDateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterDateForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterRatingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterRatingForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterRatingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterRatingForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterRatingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterRatingForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterTagsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterTagsForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterTagsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterTagsForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FilterTagsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FilterTagsForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/FormsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FormsData.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FormsInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FormsInterfaces.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/FormsViewEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/FormsViewEnvironment.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/GameVersionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/GameVersionsForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Images.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Import/AskToImportForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Import/AskToImportForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Import/AskToImportForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Import/AskToImportForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Import/AskToImportForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Import/AskToImportForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Import/ImportFromDarkLoaderForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Import/ImportFromDarkLoaderForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Import/User_DL_ImportControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Import/User_DL_ImportControls.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Import/User_DL_ImportControls.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Import/User_DL_ImportControls.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/MainForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/MainForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/MainForm_InitManual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/MainForm_InitManual.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/MainForm_Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/MainForm_Progress.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/MessageBoxCustomForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/MessageBoxCustomForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/MessageBoxCustomForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/MessageBoxCustomForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/MessageBoxCustomForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/MessageBoxCustomForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/OriginalGameModsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/OriginalGameModsForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/OriginalGameModsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/OriginalGameModsForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/OriginalGameModsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/OriginalGameModsForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/RTF_Visual_Test_Form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/RTF_Visual_Test_Form.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/RTF_Visual_Test_Form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/RTF_Visual_Test_Form.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/RTF_Visual_Test_Form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/RTF_Visual_Test_Form.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/ScanAllFMsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/ScanAllFMsForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/ScanAllFMsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/ScanAllFMsForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/ScanAllFMsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/ScanAllFMsForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/ScreenshotsPreprocessing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/ScreenshotsPreprocessing.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/AppearancePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/AppearancePage.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/AppearancePage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/AppearancePage.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/AudioFilesPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/AudioFilesPage.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/AudioFilesPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/AudioFilesPage.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/IOThreadingPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/IOThreadingPage.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/IOThreadingPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/IOThreadingPage.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/Interfaces.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/OtherPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/OtherPage.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/OtherPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/OtherPage.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/OtherPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/OtherPage.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/PathsPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/PathsPage.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/PathsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/PathsPage.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/PathsPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/PathsPage.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/SettingsForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/SettingsForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/ThiefBuddyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/ThiefBuddyPage.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/ThiefBuddyPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/ThiefBuddyPage.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/UpdatePage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/UpdatePage.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/UpdatePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/UpdatePage.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/Settings/UpdatePage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/Settings/UpdatePage.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/SplashScreenForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/SplashScreenForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/SplashScreenForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/SplashScreenForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/SplashScreenForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/SplashScreenForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/UpdateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/UpdateForm.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/UpdateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/UpdateForm.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/UpdateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/UpdateForm.resx -------------------------------------------------------------------------------- /AngelLoader/Forms/UpdateForm_InitSlim.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/UpdateForm_InitSlim.Generated.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/WinFormsNative/Dialogs/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/WinFormsNative/Dialogs/Interop.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/WinFormsNative/Taskbar/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/WinFormsNative/Taskbar/Interop.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/WinFormsNative/Win32ThemeHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/WinFormsNative/Win32ThemeHooks.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/WinFormsNative/WinFormsNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/WinFormsNative/WinFormsNative.cs -------------------------------------------------------------------------------- /AngelLoader/Forms/WinFormsReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Forms/WinFormsReflection.cs -------------------------------------------------------------------------------- /AngelLoader/GameConfigFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/GameConfigFiles.cs -------------------------------------------------------------------------------- /AngelLoader/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/GlobalUsings.cs -------------------------------------------------------------------------------- /AngelLoader/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Import.cs -------------------------------------------------------------------------------- /AngelLoader/Ini/ConfigIni.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Ini/ConfigIni.cs -------------------------------------------------------------------------------- /AngelLoader/Ini/FMDataIni.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Ini/FMDataIni.Generated.cs -------------------------------------------------------------------------------- /AngelLoader/Ini/IniCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Ini/IniCommon.cs -------------------------------------------------------------------------------- /AngelLoader/Ini/LocalizationIni.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Ini/LocalizationIni.cs -------------------------------------------------------------------------------- /AngelLoader/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Interfaces.cs -------------------------------------------------------------------------------- /AngelLoader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/LICENSE -------------------------------------------------------------------------------- /AngelLoader/Languages/English.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/English.ini -------------------------------------------------------------------------------- /AngelLoader/Languages/French.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/French.ini -------------------------------------------------------------------------------- /AngelLoader/Languages/German.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/German.ini -------------------------------------------------------------------------------- /AngelLoader/Languages/Hungarian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/Hungarian.ini -------------------------------------------------------------------------------- /AngelLoader/Languages/Italian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/Italian.ini -------------------------------------------------------------------------------- /AngelLoader/Languages/Portuguese (Brazil).ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/Portuguese (Brazil).ini -------------------------------------------------------------------------------- /AngelLoader/Languages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/README.md -------------------------------------------------------------------------------- /AngelLoader/Languages/Russian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/Russian.ini -------------------------------------------------------------------------------- /AngelLoader/Languages/Spanish.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/Spanish.ini -------------------------------------------------------------------------------- /AngelLoader/Languages/Turkish.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Languages/Turkish.ini -------------------------------------------------------------------------------- /AngelLoader/PlayTimeTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/PlayTimeTracking.cs -------------------------------------------------------------------------------- /AngelLoader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Program.cs -------------------------------------------------------------------------------- /AngelLoader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AngelLoader/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Properties/Resources.resx -------------------------------------------------------------------------------- /AngelLoader/Resources/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/About.png -------------------------------------------------------------------------------- /AngelLoader/Resources/AngelLoader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/AngelLoader.ico -------------------------------------------------------------------------------- /AngelLoader/Resources/CharEnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/CharEnc.png -------------------------------------------------------------------------------- /AngelLoader/Resources/FilterIcons/ClearFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/FilterIcons/ClearFilters.png -------------------------------------------------------------------------------- /AngelLoader/Resources/FilterIcons/Recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/FilterIcons/Recent.png -------------------------------------------------------------------------------- /AngelLoader/Resources/FilterIcons/Recent_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/FilterIcons/Recent_Dark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/FilterIcons/Tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/FilterIcons/Tags.png -------------------------------------------------------------------------------- /AngelLoader/Resources/FilterIcons/TagsDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/FilterIcons/TagsDark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Folder16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Folder16.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Help.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Install.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Mods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Mods.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Pin.png -------------------------------------------------------------------------------- /AngelLoader/Resources/RedExclCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/RedExclCircle.png -------------------------------------------------------------------------------- /AngelLoader/Resources/RedExclCircle_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/RedExclCircle_Dark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/RedQCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/RedQCircle.png -------------------------------------------------------------------------------- /AngelLoader/Resources/RedQCircle_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/RedQCircle_Dark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Refresh.png -------------------------------------------------------------------------------- /AngelLoader/Resources/RefreshFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/RefreshFilters.png -------------------------------------------------------------------------------- /AngelLoader/Resources/SS2_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/SS2_16.png -------------------------------------------------------------------------------- /AngelLoader/Resources/SS2_16_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/SS2_16_Dark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/SS2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/SS2_21.png -------------------------------------------------------------------------------- /AngelLoader/Resources/SS2_21_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/SS2_21_Dark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Settings.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T1_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T1_16.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T1_16_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T1_16_Dark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T1_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T1_21.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T1_21_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T1_21_Dark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T1_21_Dark_DarkBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T1_21_Dark_DarkBG.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T2_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T2_16.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T2_21.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T3_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T3_16.png -------------------------------------------------------------------------------- /AngelLoader/Resources/T3_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/T3_21.png -------------------------------------------------------------------------------- /AngelLoader/Resources/TDM_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/TDM_16.png -------------------------------------------------------------------------------- /AngelLoader/Resources/TDM_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/TDM_21.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Trash.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Trash_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Trash_Dark.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Uninstall.png -------------------------------------------------------------------------------- /AngelLoader/Resources/Unpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/Unpin.png -------------------------------------------------------------------------------- /AngelLoader/Resources/broken_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/broken_file.png -------------------------------------------------------------------------------- /AngelLoader/Resources/copy_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Resources/copy_21.png -------------------------------------------------------------------------------- /AngelLoader/Rtf/GLMLConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Rtf/GLMLConversion.cs -------------------------------------------------------------------------------- /AngelLoader/Rtf/RtfProcessing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Rtf/RtfProcessing.cs -------------------------------------------------------------------------------- /AngelLoader/Rtf/WriConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Rtf/WriConversion.cs -------------------------------------------------------------------------------- /AngelLoader/Screenshots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Screenshots.cs -------------------------------------------------------------------------------- /AngelLoader/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/SplashScreen.cs -------------------------------------------------------------------------------- /AngelLoader/TDM/TDM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/TDM/TDM.cs -------------------------------------------------------------------------------- /AngelLoader/TDM/TDMWatchers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/TDM/TDMWatchers.cs -------------------------------------------------------------------------------- /AngelLoader/TDM/TDM_Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/TDM/TDM_Downloader.cs -------------------------------------------------------------------------------- /AngelLoader/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Update.cs -------------------------------------------------------------------------------- /AngelLoader/Update_Langs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/Update_Langs.cs -------------------------------------------------------------------------------- /AngelLoader/WinVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/WinVersion.cs -------------------------------------------------------------------------------- /AngelLoader/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/app.manifest -------------------------------------------------------------------------------- /AngelLoader/post_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/post_build.bat -------------------------------------------------------------------------------- /AngelLoader/pre_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader/pre_build.bat -------------------------------------------------------------------------------- /AngelLoader_Stub/AngelLoader_Stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader_Stub/AngelLoader_Stub.h -------------------------------------------------------------------------------- /AngelLoader_Stub/AngelLoader_Stub.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader_Stub/AngelLoader_Stub.vcxproj -------------------------------------------------------------------------------- /AngelLoader_Stub/AngelLoader_Stub.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader_Stub/AngelLoader_Stub.vcxproj.filters -------------------------------------------------------------------------------- /AngelLoader_Stub/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader_Stub/dllmain.cpp -------------------------------------------------------------------------------- /AngelLoader_Stub/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/AngelLoader_Stub/framework.h -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/.NET license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/.NET license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/7-Zip license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/7-Zip license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/AngelLoader license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/AngelLoader license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/CoreHook license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/CoreHook license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/DarkUI license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/DarkUI license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/EasyHook license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/EasyHook license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/FFmpeg.NET license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/FFmpeg.NET license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/Ookii Dialogs license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/Ookii Dialogs license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/Open Sans license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/Open Sans license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/SharpCompress license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/SharpCompress license.txt -------------------------------------------------------------------------------- /BinReleaseOnly/Licenses/UDE.NetStandard license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/BinReleaseOnly/Licenses/UDE.NetStandard license.txt -------------------------------------------------------------------------------- /Cross-platform notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Cross-platform notes.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /FMScanner/FMData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/FMData.cs -------------------------------------------------------------------------------- /FMScanner/FMScanner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/FMScanner.csproj -------------------------------------------------------------------------------- /FMScanner/FastIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/FastIO.cs -------------------------------------------------------------------------------- /FMScanner/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/GlobalUsings.cs -------------------------------------------------------------------------------- /FMScanner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/LICENSE -------------------------------------------------------------------------------- /FMScanner/ReadOnlyDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/ReadOnlyDataContext.cs -------------------------------------------------------------------------------- /FMScanner/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/Scanner.cs -------------------------------------------------------------------------------- /FMScanner/ScannerUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/ScannerUtility.cs -------------------------------------------------------------------------------- /FMScanner/StringSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FMScanner/StringSplit.cs -------------------------------------------------------------------------------- /FOR_OTHER_PROGRAMMERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FOR_OTHER_PROGRAMMERS.md -------------------------------------------------------------------------------- /FenGen/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/App.config -------------------------------------------------------------------------------- /FenGen/BuildDateGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/BuildDateGen.cs -------------------------------------------------------------------------------- /FenGen/CodeWriters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/CodeWriters.cs -------------------------------------------------------------------------------- /FenGen/CopyrightGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/CopyrightGen.cs -------------------------------------------------------------------------------- /FenGen/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Core.cs -------------------------------------------------------------------------------- /FenGen/DesignerGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/DesignerGen.cs -------------------------------------------------------------------------------- /FenGen/EnumDataGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/EnumDataGen.cs -------------------------------------------------------------------------------- /FenGen/ExcludeResxGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/ExcludeResxGen.cs -------------------------------------------------------------------------------- /FenGen/FMDataGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/FMDataGen.cs -------------------------------------------------------------------------------- /FenGen/FenGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/FenGen.csproj -------------------------------------------------------------------------------- /FenGen/FenGen.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/FenGen.csproj.DotSettings -------------------------------------------------------------------------------- /FenGen/Forms/ExceptionBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Forms/ExceptionBox.Designer.cs -------------------------------------------------------------------------------- /FenGen/Forms/ExceptionBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Forms/ExceptionBox.cs -------------------------------------------------------------------------------- /FenGen/Forms/ExceptionBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Forms/ExceptionBox.resx -------------------------------------------------------------------------------- /FenGen/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /FenGen/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Forms/MainForm.cs -------------------------------------------------------------------------------- /FenGen/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Forms/MainForm.resx -------------------------------------------------------------------------------- /FenGen/GamesGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/GamesGen.cs -------------------------------------------------------------------------------- /FenGen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/LICENSE -------------------------------------------------------------------------------- /FenGen/LanguageGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/LanguageGen.cs -------------------------------------------------------------------------------- /FenGen/LanguageSupportGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/LanguageSupportGen.cs -------------------------------------------------------------------------------- /FenGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Program.cs -------------------------------------------------------------------------------- /FenGen/RtfDupeFuncGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/RtfDupeFuncGen.cs -------------------------------------------------------------------------------- /FenGen/Utility/MiscUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Utility/MiscUtils.cs -------------------------------------------------------------------------------- /FenGen/Utility/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/Utility/StringUtils.cs -------------------------------------------------------------------------------- /FenGen/post_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/FenGen/post_build.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /Localizable_Strings_Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Localizable_Strings_Changelog.md -------------------------------------------------------------------------------- /New GUI notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/New GUI notes.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/README.md -------------------------------------------------------------------------------- /SharpCompress/Archives/AbstractArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/AbstractArchive.cs -------------------------------------------------------------------------------- /SharpCompress/Archives/ArchiveVolumeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/ArchiveVolumeFactory.cs -------------------------------------------------------------------------------- /SharpCompress/Archives/Rar/RarArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/Rar/RarArchive.cs -------------------------------------------------------------------------------- /SharpCompress/Archives/Rar/RarArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/Rar/RarArchiveEntry.cs -------------------------------------------------------------------------------- /SharpCompress/Archives/Rar/RarArchiveEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/Rar/RarArchiveEntryFactory.cs -------------------------------------------------------------------------------- /SharpCompress/Archives/Rar/SeekableFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/Rar/SeekableFilePart.cs -------------------------------------------------------------------------------- /SharpCompress/Archives/Rar/StreamRarArchiveVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/Rar/StreamRarArchiveVolume.cs -------------------------------------------------------------------------------- /SharpCompress/Archives/SevenZip/SevenZipArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/SevenZip/SevenZipArchive.cs -------------------------------------------------------------------------------- /SharpCompress/Archives/SevenZip/SevenZipContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Archives/SevenZip/SevenZipContext.cs -------------------------------------------------------------------------------- /SharpCompress/Common/ArchiveEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/ArchiveEncoding.cs -------------------------------------------------------------------------------- /SharpCompress/Common/ArchiveException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/ArchiveException.cs -------------------------------------------------------------------------------- /SharpCompress/Common/CryptographicException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/CryptographicException.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Entry.cs -------------------------------------------------------------------------------- /SharpCompress/Common/EntryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/EntryStream.cs -------------------------------------------------------------------------------- /SharpCompress/Common/ExtractionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/ExtractionException.cs -------------------------------------------------------------------------------- /SharpCompress/Common/FilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/FilePart.cs -------------------------------------------------------------------------------- /SharpCompress/Common/FlagUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/FlagUtility.cs -------------------------------------------------------------------------------- /SharpCompress/Common/IEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/IEntry.cs -------------------------------------------------------------------------------- /SharpCompress/Common/IncompleteArchiveException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/IncompleteArchiveException.cs -------------------------------------------------------------------------------- /SharpCompress/Common/InvalidFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/InvalidFormatException.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/ArchiveHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/ArchiveHeader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/EndArchiveHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/EndArchiveHeader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/FileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/FileHeader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/FileNameDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/FileNameDecoder.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/Flags.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/IRarHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/IRarHeader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/MarkHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/MarkHeader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/NewSubHeaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/NewSubHeaderType.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/ProtectHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/ProtectHeader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/RarHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/RarHeader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/Headers/RarHeaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/Headers/RarHeaderFactory.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/RarCrcBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/RarCrcBinaryReader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/RarEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/RarEntry.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/RarFilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/RarFilePart.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Rar/RarVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Rar/RarVolume.cs -------------------------------------------------------------------------------- /SharpCompress/Common/SevenZip/ArchiveDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/SevenZip/ArchiveDatabase.cs -------------------------------------------------------------------------------- /SharpCompress/Common/SevenZip/ArchiveReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/SevenZip/ArchiveReader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/SevenZip/CBindPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/SevenZip/CBindPair.cs -------------------------------------------------------------------------------- /SharpCompress/Common/SevenZip/CCoderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/SevenZip/CCoderInfo.cs -------------------------------------------------------------------------------- /SharpCompress/Common/SevenZip/CFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/SevenZip/CFolder.cs -------------------------------------------------------------------------------- /SharpCompress/Common/SevenZip/CStreamSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/SevenZip/CStreamSwitch.cs -------------------------------------------------------------------------------- /SharpCompress/Common/SevenZip/DataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/SevenZip/DataReader.cs -------------------------------------------------------------------------------- /SharpCompress/Common/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Common/Volume.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/BZip2/BZip2Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/BZip2/BZip2Constants.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/BZip2/BZip2Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/BZip2/BZip2Stream.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/BZip2/CBZip2InputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/BZip2/CBZip2InputStream.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/BZip2/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/BZip2/CRC.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Filters/BCJFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Filters/BCJFilter.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Filters/DeltaFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Filters/DeltaFilter.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Filters/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Filters/Filter.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/Bcj2DecoderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/Bcj2DecoderStream.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/BitVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/BitVector.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/CRC.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/DecoderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/DecoderStream.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/ICoder.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/LzmaStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/LzmaStream.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/LZMA/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/LZMA/Registry.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/FreqData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/FreqData.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/ModelPPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/ModelPPM.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/PPMContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/PPMContext.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/Pointer.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/RangeCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/RangeCoder.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/RarMemBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/RarMemBlock.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/RarNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/RarNode.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/SEE2Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/SEE2Context.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/State.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/StateRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/StateRef.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/H/SubAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/H/SubAllocator.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/I1/Allocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/I1/Allocator.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/I1/Coder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/I1/Coder.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/I1/MemoryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/I1/MemoryNode.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/I1/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/I1/Model.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/I1/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/I1/Pointer.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/I1/PpmContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/I1/PpmContext.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/I1/PpmState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/I1/PpmState.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/I1/See2Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/I1/See2Context.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/PpmdProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/PpmdProperties.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/PpmdStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/PpmdStream.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/PPMd/PpmdVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/PPMd/PpmdVersion.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/IRarUnpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/IRarUnpack.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/RarCRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/RarCRC.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/RarCrcStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/RarCrcStream.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/RarStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/RarStream.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/UnpackV1/Unpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/UnpackV1/Unpack.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/UnpackV1/Unpack15.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/UnpackV1/Unpack15.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/UnpackV1/Unpack20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/UnpackV1/Unpack20.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/UnpackV1/Unpack50.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/UnpackV1/Unpack50.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/UnpackV2017/Unpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/UnpackV2017/Unpack.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/UnpackV2017/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/UnpackV2017/notes.txt -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/VM/BitInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/VM/BitInput.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/VM/RarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/VM/RarVM.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/VM/VMCmdFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/VM/VMCmdFlags.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/VM/VMCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/VM/VMCommands.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/VM/VMFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/VM/VMFlags.cs -------------------------------------------------------------------------------- /SharpCompress/Compressors/Rar/VM/VMOpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Compressors/Rar/VM/VMOpType.cs -------------------------------------------------------------------------------- /SharpCompress/IO/BufferedSubStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/IO/BufferedSubStream.cs -------------------------------------------------------------------------------- /SharpCompress/IO/MarkingBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/IO/MarkingBinaryReader.cs -------------------------------------------------------------------------------- /SharpCompress/IO/NonDisposingStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/IO/NonDisposingStream.cs -------------------------------------------------------------------------------- /SharpCompress/IO/ReadOnlySubStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/IO/ReadOnlySubStream.cs -------------------------------------------------------------------------------- /SharpCompress/IO/SourceStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/IO/SourceStream.cs -------------------------------------------------------------------------------- /SharpCompress/IO/StreamingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/IO/StreamingMode.cs -------------------------------------------------------------------------------- /SharpCompress/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/LICENSE.txt -------------------------------------------------------------------------------- /SharpCompress/Lazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Lazy.cs -------------------------------------------------------------------------------- /SharpCompress/LazyReadOnlyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/LazyReadOnlyCollection.cs -------------------------------------------------------------------------------- /SharpCompress/Readers/AbstractReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Readers/AbstractReader.cs -------------------------------------------------------------------------------- /SharpCompress/Readers/IReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Readers/IReader.cs -------------------------------------------------------------------------------- /SharpCompress/Readers/Rar/RarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Readers/Rar/RarReader.cs -------------------------------------------------------------------------------- /SharpCompress/Readers/Rar/RarReaderEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Readers/Rar/RarReaderEntry.cs -------------------------------------------------------------------------------- /SharpCompress/Readers/Rar/RarReaderVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Readers/Rar/RarReaderVolume.cs -------------------------------------------------------------------------------- /SharpCompress/Readers/Rar/SingleVolumeRarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Readers/Rar/SingleVolumeRarReader.cs -------------------------------------------------------------------------------- /SharpCompress/SharpCompress.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/SharpCompress.csproj -------------------------------------------------------------------------------- /SharpCompress/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/SharpCompress/Utility.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/.gitattributes -------------------------------------------------------------------------------- /TestApps/FMInfoGen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/.gitignore -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen.sln -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/App.config -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/Common/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/Common/Data.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/Common/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/Common/Misc.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/Common/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/Common/Utility.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/Core.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/FMExtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/FMExtract.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/FMInfoGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/FMInfoGen.csproj -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/FMScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/FMScan.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/GlobalUsings.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/Ini/ConfigIni.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/Ini/ConfigIni.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/MainForm.Designer.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/MainForm.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/MainForm.resx -------------------------------------------------------------------------------- /TestApps/FMInfoGen/FMInfoGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/FMInfoGen/Program.cs -------------------------------------------------------------------------------- /TestApps/FMInfoGen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/FMInfoGen/LICENSE -------------------------------------------------------------------------------- /TestApps/RTF_ToPlainTextTest/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/RTF_ToPlainTextTest/.gitattributes -------------------------------------------------------------------------------- /TestApps/RTF_ToPlainTextTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/RTF_ToPlainTextTest/.gitignore -------------------------------------------------------------------------------- /TestApps/RTF_ToPlainTextTest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/RTF_ToPlainTextTest/LICENSE -------------------------------------------------------------------------------- /TestApps/RTF_ToPlainTextTest/RTF_ToPlainTextTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/TestApps/RTF_ToPlainTextTest/RTF_ToPlainTextTest.sln -------------------------------------------------------------------------------- /Ude/Big5Prober.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/Big5Prober.cs -------------------------------------------------------------------------------- /Ude/CharDistributionAnalyser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/CharDistributionAnalyser.cs -------------------------------------------------------------------------------- /Ude/CharsetDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/CharsetDetector.cs -------------------------------------------------------------------------------- /Ude/CharsetProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/CharsetProber.cs -------------------------------------------------------------------------------- /Ude/CodingStateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/CodingStateMachine.cs -------------------------------------------------------------------------------- /Ude/EUCJPProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/EUCJPProber.cs -------------------------------------------------------------------------------- /Ude/EUCKRProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/EUCKRProber.cs -------------------------------------------------------------------------------- /Ude/EscCharsetProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/EscCharsetProber.cs -------------------------------------------------------------------------------- /Ude/EscSM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/EscSM.cs -------------------------------------------------------------------------------- /Ude/GB18030Prober.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/GB18030Prober.cs -------------------------------------------------------------------------------- /Ude/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/GlobalUsings.cs -------------------------------------------------------------------------------- /Ude/HebrewProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/HebrewProber.cs -------------------------------------------------------------------------------- /Ude/JapaneseContextAnalyser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/JapaneseContextAnalyser.cs -------------------------------------------------------------------------------- /Ude/LangBulgarianModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/LangBulgarianModel.cs -------------------------------------------------------------------------------- /Ude/LangCyrillicModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/LangCyrillicModel.cs -------------------------------------------------------------------------------- /Ude/LangGreekModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/LangGreekModel.cs -------------------------------------------------------------------------------- /Ude/LangHebrewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/LangHebrewModel.cs -------------------------------------------------------------------------------- /Ude/Latin1Prober.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/Latin1Prober.cs -------------------------------------------------------------------------------- /Ude/MBCSGroupProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/MBCSGroupProber.cs -------------------------------------------------------------------------------- /Ude/MBCSSM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/MBCSSM.cs -------------------------------------------------------------------------------- /Ude/MemoryStreamFast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/MemoryStreamFast.cs -------------------------------------------------------------------------------- /Ude/SBCSGroupProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/SBCSGroupProber.cs -------------------------------------------------------------------------------- /Ude/SBCharsetProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/SBCharsetProber.cs -------------------------------------------------------------------------------- /Ude/SJISProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/SJISProber.cs -------------------------------------------------------------------------------- /Ude/SMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/SMModel.cs -------------------------------------------------------------------------------- /Ude/SequenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/SequenceModel.cs -------------------------------------------------------------------------------- /Ude/SimpleHelpers/FileEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/SimpleHelpers/FileEncoding.cs -------------------------------------------------------------------------------- /Ude/SimpleHelpers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/SimpleHelpers/LICENSE -------------------------------------------------------------------------------- /Ude/UTF8Prober.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/UTF8Prober.cs -------------------------------------------------------------------------------- /Ude/Ude.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/Ude.NetStandard.csproj -------------------------------------------------------------------------------- /Ude/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/Utils.cs -------------------------------------------------------------------------------- /Ude/license/Fen Modifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/license/Fen Modifications.txt -------------------------------------------------------------------------------- /Ude/license/MPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/license/MPL-1.1.txt -------------------------------------------------------------------------------- /Ude/license/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/license/gpl-2.0.txt -------------------------------------------------------------------------------- /Ude/license/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Ude/license/lgpl-2.1.txt -------------------------------------------------------------------------------- /Update/ControlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/ControlUtils.cs -------------------------------------------------------------------------------- /Update/CustomControls/DarkButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/CustomControls/DarkButton.cs -------------------------------------------------------------------------------- /Update/CustomControls/DarkControlState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/CustomControls/DarkControlState.cs -------------------------------------------------------------------------------- /Update/CustomControls/DarkLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/CustomControls/DarkLabel.cs -------------------------------------------------------------------------------- /Update/CustomControls/DarkProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/CustomControls/DarkProgressBar.cs -------------------------------------------------------------------------------- /Update/CustomControls/DarkUI_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/CustomControls/DarkUI_LICENSE.txt -------------------------------------------------------------------------------- /Update/DarkColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/DarkColors.cs -------------------------------------------------------------------------------- /Update/DarkErrorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/DarkErrorDialog.cs -------------------------------------------------------------------------------- /Update/DarkFormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/DarkFormBase.cs -------------------------------------------------------------------------------- /Update/DarkTaskDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/DarkTaskDialog.Designer.cs -------------------------------------------------------------------------------- /Update/DarkTaskDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/DarkTaskDialog.cs -------------------------------------------------------------------------------- /Update/DarkTaskDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/DarkTaskDialog.resx -------------------------------------------------------------------------------- /Update/DarkTaskDialog_InitSlim.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/DarkTaskDialog_InitSlim.Generated.cs -------------------------------------------------------------------------------- /Update/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Data.cs -------------------------------------------------------------------------------- /Update/FullyGlobal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/FullyGlobal.cs -------------------------------------------------------------------------------- /Update/LocalizationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/LocalizationData.cs -------------------------------------------------------------------------------- /Update/LocalizationIni.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/LocalizationIni.cs -------------------------------------------------------------------------------- /Update/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Logger.cs -------------------------------------------------------------------------------- /Update/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/MainForm.Designer.cs -------------------------------------------------------------------------------- /Update/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/MainForm.cs -------------------------------------------------------------------------------- /Update/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/MainForm.resx -------------------------------------------------------------------------------- /Update/MainForm_InitSlim.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/MainForm_InitSlim.Generated.cs -------------------------------------------------------------------------------- /Update/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Native.cs -------------------------------------------------------------------------------- /Update/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Paths.cs -------------------------------------------------------------------------------- /Update/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Program.cs -------------------------------------------------------------------------------- /Update/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Update/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Properties/Resources.resx -------------------------------------------------------------------------------- /Update/Resources/AngelLoader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Resources/AngelLoader.ico -------------------------------------------------------------------------------- /Update/Update.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Update.csproj -------------------------------------------------------------------------------- /Update/Update.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Update.csproj.DotSettings -------------------------------------------------------------------------------- /Update/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/Update/Utils.cs -------------------------------------------------------------------------------- /bin_dependencies/7z32/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/7z32/7z.dll -------------------------------------------------------------------------------- /bin_dependencies/7z32/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/7z32/7z.exe -------------------------------------------------------------------------------- /bin_dependencies/7z64/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/7z64/7z.dll -------------------------------------------------------------------------------- /bin_dependencies/7z64/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/7z64/7z.exe -------------------------------------------------------------------------------- /bin_dependencies/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /bin_dependencies/corehook64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/corehook64.dll -------------------------------------------------------------------------------- /bin_dependencies/ffmpeg/avcodec-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/ffmpeg/avcodec-58.dll -------------------------------------------------------------------------------- /bin_dependencies/ffmpeg/avfilter-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/ffmpeg/avfilter-7.dll -------------------------------------------------------------------------------- /bin_dependencies/ffmpeg/avformat-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/ffmpeg/avformat-58.dll -------------------------------------------------------------------------------- /bin_dependencies/ffmpeg/avutil-56.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/ffmpeg/avutil-56.dll -------------------------------------------------------------------------------- /bin_dependencies/ffmpeg/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/ffmpeg/ffmpeg.exe -------------------------------------------------------------------------------- /bin_dependencies/ffmpeg/ffmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/ffmpeg/ffmpeg.txt -------------------------------------------------------------------------------- /bin_dependencies/ffmpeg/ffprobe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/ffmpeg/ffprobe.exe -------------------------------------------------------------------------------- /bin_dependencies/ffmpeg/swresample-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/bin_dependencies/ffmpeg/swresample-3.dll -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/al_update/al_update.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/al_update_testing/al_update.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/al_update_testing/al_update.ini -------------------------------------------------------------------------------- /docs/al_update_testing/changelogs/versions_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/al_update_testing/changelogs/versions_list.txt -------------------------------------------------------------------------------- /docs/doc/English/AngelLoader documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/AngelLoader documentation.html -------------------------------------------------------------------------------- /docs/doc/English/images/AngelLoader_Icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/AngelLoader_Icon_48.png -------------------------------------------------------------------------------- /docs/doc/English/images/BottomBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/BottomBar.png -------------------------------------------------------------------------------- /docs/doc/English/images/CharacterEncoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/CharacterEncoding.png -------------------------------------------------------------------------------- /docs/doc/English/images/ClearFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/ClearFilters.png -------------------------------------------------------------------------------- /docs/doc/English/images/FilterShowRecentAtTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/FilterShowRecentAtTop.png -------------------------------------------------------------------------------- /docs/doc/English/images/Finished_Expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Finished_Expert.png -------------------------------------------------------------------------------- /docs/doc/English/images/Finished_Extreme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Finished_Extreme.png -------------------------------------------------------------------------------- /docs/doc/English/images/Finished_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Finished_Hard.png -------------------------------------------------------------------------------- /docs/doc/English/images/Finished_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Finished_Normal.png -------------------------------------------------------------------------------- /docs/doc/English/images/Finished_Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Finished_Unknown.png -------------------------------------------------------------------------------- /docs/doc/English/images/FullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/FullScreen.png -------------------------------------------------------------------------------- /docs/doc/English/images/Install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Install.png -------------------------------------------------------------------------------- /docs/doc/English/images/PlayFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/PlayFM.png -------------------------------------------------------------------------------- /docs/doc/English/images/PlayOriginalGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/PlayOriginalGame.png -------------------------------------------------------------------------------- /docs/doc/English/images/ReadmeControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/ReadmeControls.png -------------------------------------------------------------------------------- /docs/doc/English/images/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Refresh.png -------------------------------------------------------------------------------- /docs/doc/English/images/RefreshFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/RefreshFilters.png -------------------------------------------------------------------------------- /docs/doc/English/images/ResetLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/ResetLayout.png -------------------------------------------------------------------------------- /docs/doc/English/images/ScanAllFMs_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/ScanAllFMs_window.png -------------------------------------------------------------------------------- /docs/doc/English/images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Settings.png -------------------------------------------------------------------------------- /docs/doc/English/images/Shock2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Shock2_21.png -------------------------------------------------------------------------------- /docs/doc/English/images/Show_Unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Show_Unavailable.png -------------------------------------------------------------------------------- /docs/doc/English/images/Show_Unsupported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Show_Unsupported.png -------------------------------------------------------------------------------- /docs/doc/English/images/TDM_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/TDM_21.png -------------------------------------------------------------------------------- /docs/doc/English/images/Thief1_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Thief1_21.png -------------------------------------------------------------------------------- /docs/doc/English/images/Thief2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Thief2_21.png -------------------------------------------------------------------------------- /docs/doc/English/images/Thief3_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Thief3_21.png -------------------------------------------------------------------------------- /docs/doc/English/images/Uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/Uninstall.png -------------------------------------------------------------------------------- /docs/doc/English/images/WebSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/WebSearch.png -------------------------------------------------------------------------------- /docs/doc/English/images/ZoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/ZoomIn.png -------------------------------------------------------------------------------- /docs/doc/English/images/ZoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/ZoomOut.png -------------------------------------------------------------------------------- /docs/doc/English/images/ZoomReset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/ZoomReset.png -------------------------------------------------------------------------------- /docs/doc/English/images/column_context_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/column_context_menu.png -------------------------------------------------------------------------------- /docs/doc/English/images/comment_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/comment_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/drop_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/drop_down_arrow.png -------------------------------------------------------------------------------- /docs/doc/English/images/edit_fm_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/edit_fm_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/filter_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/filter_bar.png -------------------------------------------------------------------------------- /docs/doc/English/images/fm_right_click_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/fm_right_click_menu.png -------------------------------------------------------------------------------- /docs/doc/English/images/fms_list_960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/fms_list_960.png -------------------------------------------------------------------------------- /docs/doc/English/images/game_versions_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/game_versions_window.png -------------------------------------------------------------------------------- /docs/doc/English/images/green_check_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/green_check_21.png -------------------------------------------------------------------------------- /docs/doc/English/images/initial_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/initial_setup.png -------------------------------------------------------------------------------- /docs/doc/English/images/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/main_menu.png -------------------------------------------------------------------------------- /docs/doc/English/images/main_window_full_960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/main_window_full_960.png -------------------------------------------------------------------------------- /docs/doc/English/images/mods_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/mods_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/patch_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/patch_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/scan_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/scan_14.png -------------------------------------------------------------------------------- /docs/doc/English/images/screenshots_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/screenshots_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_date.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_game_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_game_org.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_hide.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_lang.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_no_fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_no_fm.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_rating.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_readme.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_recent.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_sort.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_appr_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_appr_theme.png -------------------------------------------------------------------------------- /docs/doc/English/images/settings_audio_files_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/settings_audio_files_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/setup_io_threading_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/setup_io_threading_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/setup_other_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/setup_other_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/setup_paths_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/setup_paths_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/setup_thief_buddy_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/setup_thief_buddy_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/setup_update_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/setup_update_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/stats_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/stats_tab.png -------------------------------------------------------------------------------- /docs/doc/English/images/tags_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/English/images/tags_tab.png -------------------------------------------------------------------------------- /docs/doc/French/AngelLoader documentation_FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/AngelLoader documentation_FR.html -------------------------------------------------------------------------------- /docs/doc/French/images_fr/AngelLoader_Icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/AngelLoader_Icon_48.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/BlueMagnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/BlueMagnifier.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/BottomBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/BottomBar.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/CharacterEncoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/CharacterEncoding.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/ClearFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/ClearFilters.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/FilterShowRecentAtTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/FilterShowRecentAtTop.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Finished_Expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Finished_Expert.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Finished_Extreme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Finished_Extreme.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Finished_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Finished_Hard.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Finished_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Finished_Normal.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Finished_Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Finished_Unknown.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/FullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/FullScreen.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Import.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Install.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/PlayFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/PlayFM.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/PlayOriginalGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/PlayOriginalGame.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/ReadmeControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/ReadmeControls.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Refresh.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/RefreshFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/RefreshFilters.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/ResetLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/ResetLayout.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/ScanAllFMs_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/ScanAllFMs_window.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Settings.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Shock2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Shock2_21.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Show_Unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Show_Unavailable.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Show_Unsupported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Show_Unsupported.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Thief1_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Thief1_21.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Thief2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Thief2_21.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Thief3_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Thief3_21.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/Uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/Uninstall.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/WebSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/WebSearch.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/ZoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/ZoomIn.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/ZoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/ZoomOut.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/ZoomReset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/ZoomReset.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/column_context_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/column_context_menu.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/comment_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/comment_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/drop_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/drop_down_arrow.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/edit_fm_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/edit_fm_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/filter_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/filter_bar.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/fm_right_click_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/fm_right_click_menu.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/fms_list_960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/fms_list_960.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/game_versions_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/game_versions_window.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/green_check_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/green_check_21.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/initial_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/initial_setup.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/main_menu.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/main_window_full_960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/main_window_full_960.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/mods_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/mods_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/patch_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/patch_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/scan_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/scan_14.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_date.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_game_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_game_org.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_hide.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_lang.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_no_fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_no_fm.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_rating.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_readme.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_recent.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_sort.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/settings_appr_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/settings_appr_theme.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/setup_appearance_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/setup_appearance_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/setup_other_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/setup_other_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/setup_paths_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/setup_paths_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/setup_thief_buddy_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/setup_thief_buddy_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/stats_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/stats_tab.png -------------------------------------------------------------------------------- /docs/doc/French/images_fr/tags_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/French/images_fr/tags_tab.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/Finished_Expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/Finished_Expert.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/Finished_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/Finished_Hard.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/Shock2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/Shock2_21.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/Thief1_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/Thief1_21.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/Thief2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/Thief2_21.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/Thief3_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/Thief3_21.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/comment_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/comment_tab.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/edit_fm_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/edit_fm_tab.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/fms_list_960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/fms_list_960.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/initial_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/initial_setup.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/patch_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/patch_tab.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/scan_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/scan_14.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/stats_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/stats_tab.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.4/images/tags_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.4/images/tags_tab.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.6.9.2/images_fr/Import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.6.9.2/images_fr/Import.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.6.9.2/images_fr/PlayFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.6.9.2/images_fr/PlayFM.png -------------------------------------------------------------------------------- /docs/doc/history/doc v1.6.9.2/images_fr/ZoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc/history/doc v1.6.9.2/images_fr/ZoomIn.png -------------------------------------------------------------------------------- /docs/doc_1.4.4_1.4.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.4.4_1.4.5.html -------------------------------------------------------------------------------- /docs/doc_1.4.5_1.4.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.4.5_1.4.8.html -------------------------------------------------------------------------------- /docs/doc_1.4.8_1.5.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.4.8_1.5.0.html -------------------------------------------------------------------------------- /docs/doc_1.5.0_1.5.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.5.0_1.5.4.html -------------------------------------------------------------------------------- /docs/doc_1.5.4_1.6.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.5.4_1.6.0.html -------------------------------------------------------------------------------- /docs/doc_1.6.0_1.6.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.6.0_1.6.2.html -------------------------------------------------------------------------------- /docs/doc_1.6.2_1.6.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.6.2_1.6.4.html -------------------------------------------------------------------------------- /docs/doc_1.6.4_1.6.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.6.4_1.6.6.html -------------------------------------------------------------------------------- /docs/doc_1.6.6_1.6.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.6.6_1.6.7.html -------------------------------------------------------------------------------- /docs/doc_1.6.7_1.6.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.6.7_1.6.8.html -------------------------------------------------------------------------------- /docs/doc_1.6.8_1.6.9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.6.8_1.6.9.html -------------------------------------------------------------------------------- /docs/doc_1.6.9_1.7.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.6.9_1.7.0.html -------------------------------------------------------------------------------- /docs/doc_1.7.0_1.7.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.7.0_1.7.6.html -------------------------------------------------------------------------------- /docs/doc_1.7.6_1.7.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.7.6_1.7.7.html -------------------------------------------------------------------------------- /docs/doc_1.7.7_1.8.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.7.7_1.8.0.html -------------------------------------------------------------------------------- /docs/doc_1.8.0_1.9.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.8.0_1.9.0.html -------------------------------------------------------------------------------- /docs/doc_1.9.0_1.9.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.9.0_1.9.7.html -------------------------------------------------------------------------------- /docs/doc_1.9.7_1.11.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/doc_1.9.7_1.11.0.html -------------------------------------------------------------------------------- /docs/english_1.10.1_1.11.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.10.1_1.11.0.html -------------------------------------------------------------------------------- /docs/english_1.4.4_1.4.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.4.4_1.4.5.html -------------------------------------------------------------------------------- /docs/english_1.4.5_1.4.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.4.5_1.4.8.html -------------------------------------------------------------------------------- /docs/english_1.4.8_1.5.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.4.8_1.5.0.html -------------------------------------------------------------------------------- /docs/english_1.5.0_1.5.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.5.0_1.5.3.html -------------------------------------------------------------------------------- /docs/english_1.5.3_1.5.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.5.3_1.5.4.html -------------------------------------------------------------------------------- /docs/english_1.5.4_1.6.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.5.4_1.6.0.html -------------------------------------------------------------------------------- /docs/english_1.6.0_1.6.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.6.0_1.6.2.html -------------------------------------------------------------------------------- /docs/english_1.6.2_1.6.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.6.2_1.6.4.html -------------------------------------------------------------------------------- /docs/english_1.6.4_1.6.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.6.4_1.6.6.html -------------------------------------------------------------------------------- /docs/english_1.6.6_1.6.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.6.6_1.6.7.html -------------------------------------------------------------------------------- /docs/english_1.6.7_1.6.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.6.7_1.6.8.html -------------------------------------------------------------------------------- /docs/english_1.6.8_1.6.9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.6.8_1.6.9.html -------------------------------------------------------------------------------- /docs/english_1.6.9_1.7.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.6.9_1.7.0.html -------------------------------------------------------------------------------- /docs/english_1.7.0_1.7.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.7.0_1.7.3.html -------------------------------------------------------------------------------- /docs/english_1.7.3_1.7.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.7.3_1.7.6.html -------------------------------------------------------------------------------- /docs/english_1.7.6_1.7.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.7.6_1.7.7.html -------------------------------------------------------------------------------- /docs/english_1.7.7_1.7.9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.7.7_1.7.9.html -------------------------------------------------------------------------------- /docs/english_1.7.9_1.8.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.7.9_1.8.0.html -------------------------------------------------------------------------------- /docs/english_1.8.0_1.9.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.8.0_1.9.0.html -------------------------------------------------------------------------------- /docs/english_1.9.0_1.9.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.9.0_1.9.2.html -------------------------------------------------------------------------------- /docs/english_1.9.2_1.9.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.9.2_1.9.7.html -------------------------------------------------------------------------------- /docs/english_1.9.7_1.10.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/english_1.9.7_1.10.1.html -------------------------------------------------------------------------------- /docs/file_ext_note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/file_ext_note.html -------------------------------------------------------------------------------- /docs/images/7zso/7zso-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/7zso/7zso-header.png -------------------------------------------------------------------------------- /docs/images/7zso/FMSel-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/7zso/FMSel-chart.png -------------------------------------------------------------------------------- /docs/images/7zso/file-size-chart3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/7zso/file-size-chart3.png -------------------------------------------------------------------------------- /docs/images/7zso/v1.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/7zso/v1.10.png -------------------------------------------------------------------------------- /docs/images/7zso/v1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/7zso/v1.9.png -------------------------------------------------------------------------------- /docs/images/AngelLoader_v1.5.0_screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/AngelLoader_v1.5.0_screenshot2.png -------------------------------------------------------------------------------- /docs/images/etc/dark_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/etc/dark_arrows.png -------------------------------------------------------------------------------- /docs/images/etc/game_editors_mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/etc/game_editors_mockup.png -------------------------------------------------------------------------------- /docs/images/etc/game_editors_mockup_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/etc/game_editors_mockup_small.png -------------------------------------------------------------------------------- /docs/images/etc/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/etc/import.png -------------------------------------------------------------------------------- /docs/images/etc/ndl_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/etc/ndl_import.png -------------------------------------------------------------------------------- /docs/images/main_window_2022-05-10_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_2022-05-10_900w.png -------------------------------------------------------------------------------- /docs/images/main_window_2022-05-10_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_2022-05-10_full.png -------------------------------------------------------------------------------- /docs/images/main_window_2022-05-22_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_2022-05-22_900w.png -------------------------------------------------------------------------------- /docs/images/main_window_2022-06-20_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_2022-06-20_900w.png -------------------------------------------------------------------------------- /docs/images/main_window_2022-08-16_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_2022-08-16_900w.png -------------------------------------------------------------------------------- /docs/images/main_window_v172_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_v172_900w.png -------------------------------------------------------------------------------- /docs/images/main_window_v173a_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_v173a_900w.png -------------------------------------------------------------------------------- /docs/images/main_window_v175_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_v175_900w.png -------------------------------------------------------------------------------- /docs/images/main_window_v176pre_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_v176pre_900w.png -------------------------------------------------------------------------------- /docs/images/main_window_v194_900w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/main_window_v194_900w.png -------------------------------------------------------------------------------- /docs/images/reasonable_rtf/perf_bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/reasonable_rtf/perf_bar_chart.png -------------------------------------------------------------------------------- /docs/images/reasonable_rtf/perf_bar_charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/reasonable_rtf/perf_bar_charts2.png -------------------------------------------------------------------------------- /docs/images/reasonable_rtf/perf_bar_charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/images/reasonable_rtf/perf_bar_charts3.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FenPhoenix/AngelLoader/HEAD/docs/index.md -------------------------------------------------------------------------------- /temp_transfer_bin/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------