├── .editorconfig ├── .gitignore ├── ApplicationJob.cs ├── ApplicationJobError.cs ├── ApplicationJobsListView.cs ├── ApplicationList.cs ├── Assemblies ├── DiffieHellman.dll └── System.Management.Automation.dll ├── CDBurnerXP ├── AdvancedListBox.cs ├── AdvancedListBox.designer.cs ├── AdvancedListBox.resx ├── AutoSizeLayout.cs ├── ControlRedrawLock.cs ├── Conversion.cs ├── Debug.cs ├── FormatFileSize.cs ├── GenericEventArgs.cs ├── IMirrorControl.cs ├── IconReader.cs ├── Kernel32.cs ├── ListBoxPanel.cs ├── ListBoxPanel.designer.cs ├── ListBoxPanel.resx ├── ListView.cs ├── MarqueeProgressBar.cs ├── ObjectListView.cs ├── OwnerDrawnMenu.cs ├── PanelCollection.cs ├── PathEx.cs ├── PersistentForm.cs ├── ProgressDialog.Designer.cs ├── ProgressDialog.cs ├── ProgressDialog.resx ├── SafeClipboard.cs ├── Separator.cs ├── Settings.cs ├── Shell32.cs ├── User32.cs ├── Utility.cs ├── VistaMenu.cs └── WebLink.cs ├── CloseProcessInstruction.cs ├── Command.cs ├── CommandErrorException.cs ├── CommandLineParser.cs ├── ContextMenuCustomiser.cs ├── ContextMenuItem.cs ├── CopyFileInstruction.cs ├── CrcStream.cs ├── CustomSetupInstruction.cs ├── DbManager.cs ├── Downloader ├── CalculatedSegment.cs ├── Common │ ├── BoolFormatter.cs │ ├── PathHelper.cs │ └── TimeSpanFormatter.cs ├── Concurrency │ ├── ObjectLocker.cs │ └── ReaderWriterObjectLocker.cs ├── Downloader.cs ├── DownloaderState.cs ├── EventArgs.cs ├── Extensions │ ├── IExtension.cs │ ├── IExtensionParameters.cs │ ├── IInitializable.cs │ └── IUIExtension.cs ├── IMirrorSelector.cs ├── IProtocolProvider.cs ├── ISegmentCalculator.cs ├── MinSizeSegmentCalculator.cs ├── ProtocolProviderFactory.cs ├── Protocols │ ├── BaseProtocolProvider.cs │ ├── FtpProtocolProvider.cs │ ├── HttpFtpProtocolExtension.cs │ ├── HttpFtpProtocolParametersSettingsProxy.cs │ ├── HttpProtocolProvider.cs │ ├── IHttpFtpProtocolParameters.cs │ └── KetarinProtocolProvider.cs ├── RemoteFileInfo.cs ├── ResourceLocation.cs ├── Segment.cs ├── SegmentState.cs ├── SequentialMirrorSelector.cs └── Settings.cs ├── ExternalServices.cs ├── Forms ├── AboutDialog.Designer.cs ├── AboutDialog.cs ├── AboutDialog.resx ├── AddCustomColumnDialog.Designer.cs ├── AddCustomColumnDialog.cs ├── AddCustomColumnDialog.resx ├── ApplicationDatabaseBaseDialog.Designer.cs ├── ApplicationDatabaseBaseDialog.cs ├── ApplicationDatabaseBaseDialog.resx ├── ApplicationJobDialog.Designer.cs ├── ApplicationJobDialog.cs ├── ApplicationJobDialog.resx ├── BrowserPreviewDialog.Designer.cs ├── BrowserPreviewDialog.cs ├── BrowserPreviewDialog.resx ├── ChooseAppsToInstallDialog.Designer.cs ├── ChooseAppsToInstallDialog.cs ├── ChooseAppsToInstallDialog.resx ├── CloseProcessInstructionDialog.Designer.cs ├── CloseProcessInstructionDialog.cs ├── CloseProcessInstructionDialog.resx ├── CommandControl.Designer.cs ├── CommandControl.cs ├── CommandControl.resx ├── CopyFileInstructionDialog.Designer.cs ├── CopyFileInstructionDialog.cs ├── CopyFileInstructionDialog.resx ├── CustomSetupInstructionDialog.Designer.cs ├── CustomSetupInstructionDialog.cs ├── CustomSetupInstructionDialog.resx ├── DeleteApplicationDialog.Designer.cs ├── DeleteApplicationDialog.cs ├── DeleteApplicationDialog.resx ├── EditVariablesDialog.Designer.cs ├── EditVariablesDialog.cs ├── EditVariablesDialog.resx ├── ErrorsDialog.Designer.cs ├── ErrorsDialog.cs ├── ErrorsDialog.resx ├── HintTextBox.cs ├── ImportFromDatabaseDialog.Designer.cs ├── ImportFromDatabaseDialog.cs ├── ImportFromDatabaseDialog.resx ├── InstallingApplicationsDialog.Designer.cs ├── InstallingApplicationsDialog.cs ├── InstallingApplicationsDialog.resx ├── InstructionBaseDialog.Designer.cs ├── InstructionBaseDialog.cs ├── InstructionBaseDialog.resx ├── LogDialog.Designer.cs ├── LogDialog.cs ├── LogDialog.resx ├── MultilineEditorDialog.Designer.cs ├── MultilineEditorDialog.cs ├── MultilineEditorDialog.resx ├── NewSnippetDialog.Designer.cs ├── NewSnippetDialog.cs ├── NewSnippetDialog.resx ├── NewVariableDialog.Designer.cs ├── NewVariableDialog.cs ├── NewVariableDialog.resx ├── PaintableTextBoxBase.cs ├── PostDataEditor.Designer.cs ├── PostDataEditor.cs ├── PostDataEditor.resx ├── RenameFileDialog.Designer.cs ├── RenameFileDialog.cs ├── RenameFileDialog.resx ├── SelectApplicationDialog.Designer.cs ├── SelectApplicationDialog.cs ├── SelectApplicationDialog.resx ├── SetPlaceholderDialog.Designer.cs ├── SetPlaceholderDialog.cs ├── SetPlaceholderDialog.resx ├── SettingsDialog.Designer.cs ├── SettingsDialog.cs ├── SettingsDialog.resx ├── SetupInstructionListBoxPanel.cs ├── SetupInstructionListBoxPanel.resx ├── SimilarApplicationsDialog.Designer.cs ├── SimilarApplicationsDialog.cs ├── SimilarApplicationsDialog.resx ├── StartProcessInstructionDialog.Designer.cs ├── StartProcessInstructionDialog.cs ├── StartProcessInstructionDialog.resx ├── TextBox.cs └── VariableTextBox.cs ├── HashType.cs ├── Hotkey.cs ├── HttpxRequest.cs ├── IKetarinRpc.cs ├── Icon ├── 256x256_8bit.png ├── CloseSearch.png ├── CloseSearchDown.png ├── CloseSearchHover.png ├── Setup.png ├── Setup32.png ├── ketarin-dialog.ico ├── ketarin-favicon.ico ├── ketarin.ico ├── ketarin_16x16.png ├── ketarin_16x16_8bit.png ├── ketarin_256x256.png ├── ketarin_32x32.png ├── ketarin_32x32_8bit.png ├── ketarin_48x48.png └── ketarin_48x48_8biz.png ├── Ketarin.csproj ├── Ketarin.sln ├── LICENSE ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NonBinaryFileException.cs ├── PowerShellScript.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── AddSmall.png ├── Arrow Down.png ├── Arrow Up.png ├── DeleteHS.png ├── Document Restricted.png ├── Document.png ├── GoToNextMessage.png ├── GoToPreviousMessage.png ├── Import.png ├── LineColorHS.png ├── New.png ├── NewDownloaded.png ├── Restart.png ├── Symbol Check.png ├── Symbol Delete.png └── Symbol Information.png ├── Scp.cs ├── ScriptType.cs ├── SerializableDictionary.cs ├── SettingsExporter.cs ├── SetupInstruction.cs ├── Snippet.cs ├── SplitButton.cs ├── StartProcessInstruction.cs ├── TargetPathInvalidException.cs ├── Updater.cs ├── UrlVariable.cs ├── UserCSScript.cs ├── VariableIsEmptyException.cs ├── WebClient.cs ├── XmlRpc ├── AssemblyBuildNumber.cs ├── AssemblyDesc.cs ├── AssemblyDescFX1_0.cs ├── CookComputing.XmlRpc.Targets ├── DateTime8601.cs ├── GuidEx.cs ├── IHttpRequest.cs ├── IHttpRequestHandler.cs ├── IHttpResponse.cs ├── IXmlRpcProxy.cs ├── RequestResponseLogger.cs ├── SystemMethodsBase.cs ├── Tracer.cs ├── XmlRpcAsyncResult.cs ├── XmlRpcBeginAttribute.cs ├── XmlRpcBoolean.cs ├── XmlRpcClientFormatterSink.cs ├── XmlRpcClientFormatterSinkProvider.cs ├── XmlRpcClientProtocol.cs ├── XmlRpcClientProtocol.resx ├── XmlRpcDateTime.cs ├── XmlRpcDocWriter.cs ├── XmlRpcDouble.cs ├── XmlRpcEndAttribute.cs ├── XmlRpcException.cs ├── XmlRpcFaultException.cs ├── XmlRpcHttpRequest.cs ├── XmlRpcHttpResponse.cs ├── XmlRpcHttpServerProtocol.cs ├── XmlRpcInt.cs ├── XmlRpcListenerRequest.cs ├── XmlRpcListenerResponse.cs ├── XmlRpcListenerService.cs ├── XmlRpcLogger.cs ├── XmlRpcMemberAttribute.cs ├── XmlRpcMethodAttribute.cs ├── XmlRpcMethodInfo.cs ├── XmlRpcMissingMappingAttribute.cs ├── XmlRpcNonStandard.cs ├── XmlRpcParameterAttribute.cs ├── XmlRpcParameterInfo.cs ├── XmlRpcProxyCodeGen.cs ├── XmlRpcProxyGen.cs ├── XmlRpcRequest.cs ├── XmlRpcRequestEventArgs.cs ├── XmlRpcResponse.cs ├── XmlRpcResponseEventArgs.cs ├── XmlRpcReturnValueAttribute.cs ├── XmlRpcSerializer.cs ├── XmlRpcServerFormatterSink.cs ├── XmlRpcServerFormatterSinkProvider.cs ├── XmlRpcServerProtocol.cs ├── XmlRpcService.cs ├── XmlRpcServiceAttribute.cs ├── XmlRpcServiceInfo.cs ├── XmlRpcStruct.cs ├── XmlRpcUrlAttribute.cs ├── util.cs ├── xmlrpc.csproj └── xmlrpc.sln ├── app.config ├── app.manifest ├── appveyor.yml ├── azure-pipelines.yml ├── ftplib.cs ├── ketarin.ico └── packages.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/.gitignore -------------------------------------------------------------------------------- /ApplicationJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ApplicationJob.cs -------------------------------------------------------------------------------- /ApplicationJobError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ApplicationJobError.cs -------------------------------------------------------------------------------- /ApplicationJobsListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ApplicationJobsListView.cs -------------------------------------------------------------------------------- /ApplicationList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ApplicationList.cs -------------------------------------------------------------------------------- /Assemblies/DiffieHellman.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Assemblies/DiffieHellman.dll -------------------------------------------------------------------------------- /Assemblies/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Assemblies/System.Management.Automation.dll -------------------------------------------------------------------------------- /CDBurnerXP/AdvancedListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/AdvancedListBox.cs -------------------------------------------------------------------------------- /CDBurnerXP/AdvancedListBox.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/AdvancedListBox.designer.cs -------------------------------------------------------------------------------- /CDBurnerXP/AdvancedListBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/AdvancedListBox.resx -------------------------------------------------------------------------------- /CDBurnerXP/AutoSizeLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/AutoSizeLayout.cs -------------------------------------------------------------------------------- /CDBurnerXP/ControlRedrawLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ControlRedrawLock.cs -------------------------------------------------------------------------------- /CDBurnerXP/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/Conversion.cs -------------------------------------------------------------------------------- /CDBurnerXP/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/Debug.cs -------------------------------------------------------------------------------- /CDBurnerXP/FormatFileSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/FormatFileSize.cs -------------------------------------------------------------------------------- /CDBurnerXP/GenericEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/GenericEventArgs.cs -------------------------------------------------------------------------------- /CDBurnerXP/IMirrorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/IMirrorControl.cs -------------------------------------------------------------------------------- /CDBurnerXP/IconReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/IconReader.cs -------------------------------------------------------------------------------- /CDBurnerXP/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/Kernel32.cs -------------------------------------------------------------------------------- /CDBurnerXP/ListBoxPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ListBoxPanel.cs -------------------------------------------------------------------------------- /CDBurnerXP/ListBoxPanel.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ListBoxPanel.designer.cs -------------------------------------------------------------------------------- /CDBurnerXP/ListBoxPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ListBoxPanel.resx -------------------------------------------------------------------------------- /CDBurnerXP/ListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ListView.cs -------------------------------------------------------------------------------- /CDBurnerXP/MarqueeProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/MarqueeProgressBar.cs -------------------------------------------------------------------------------- /CDBurnerXP/ObjectListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ObjectListView.cs -------------------------------------------------------------------------------- /CDBurnerXP/OwnerDrawnMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/OwnerDrawnMenu.cs -------------------------------------------------------------------------------- /CDBurnerXP/PanelCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/PanelCollection.cs -------------------------------------------------------------------------------- /CDBurnerXP/PathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/PathEx.cs -------------------------------------------------------------------------------- /CDBurnerXP/PersistentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/PersistentForm.cs -------------------------------------------------------------------------------- /CDBurnerXP/ProgressDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ProgressDialog.Designer.cs -------------------------------------------------------------------------------- /CDBurnerXP/ProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ProgressDialog.cs -------------------------------------------------------------------------------- /CDBurnerXP/ProgressDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/ProgressDialog.resx -------------------------------------------------------------------------------- /CDBurnerXP/SafeClipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/SafeClipboard.cs -------------------------------------------------------------------------------- /CDBurnerXP/Separator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/Separator.cs -------------------------------------------------------------------------------- /CDBurnerXP/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/Settings.cs -------------------------------------------------------------------------------- /CDBurnerXP/Shell32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/Shell32.cs -------------------------------------------------------------------------------- /CDBurnerXP/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/User32.cs -------------------------------------------------------------------------------- /CDBurnerXP/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/Utility.cs -------------------------------------------------------------------------------- /CDBurnerXP/VistaMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/VistaMenu.cs -------------------------------------------------------------------------------- /CDBurnerXP/WebLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CDBurnerXP/WebLink.cs -------------------------------------------------------------------------------- /CloseProcessInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CloseProcessInstruction.cs -------------------------------------------------------------------------------- /Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Command.cs -------------------------------------------------------------------------------- /CommandErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CommandErrorException.cs -------------------------------------------------------------------------------- /CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CommandLineParser.cs -------------------------------------------------------------------------------- /ContextMenuCustomiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ContextMenuCustomiser.cs -------------------------------------------------------------------------------- /ContextMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ContextMenuItem.cs -------------------------------------------------------------------------------- /CopyFileInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CopyFileInstruction.cs -------------------------------------------------------------------------------- /CrcStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CrcStream.cs -------------------------------------------------------------------------------- /CustomSetupInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/CustomSetupInstruction.cs -------------------------------------------------------------------------------- /DbManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/DbManager.cs -------------------------------------------------------------------------------- /Downloader/CalculatedSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/CalculatedSegment.cs -------------------------------------------------------------------------------- /Downloader/Common/BoolFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Common/BoolFormatter.cs -------------------------------------------------------------------------------- /Downloader/Common/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Common/PathHelper.cs -------------------------------------------------------------------------------- /Downloader/Common/TimeSpanFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Common/TimeSpanFormatter.cs -------------------------------------------------------------------------------- /Downloader/Concurrency/ObjectLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Concurrency/ObjectLocker.cs -------------------------------------------------------------------------------- /Downloader/Concurrency/ReaderWriterObjectLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Concurrency/ReaderWriterObjectLocker.cs -------------------------------------------------------------------------------- /Downloader/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Downloader.cs -------------------------------------------------------------------------------- /Downloader/DownloaderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/DownloaderState.cs -------------------------------------------------------------------------------- /Downloader/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/EventArgs.cs -------------------------------------------------------------------------------- /Downloader/Extensions/IExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Extensions/IExtension.cs -------------------------------------------------------------------------------- /Downloader/Extensions/IExtensionParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Extensions/IExtensionParameters.cs -------------------------------------------------------------------------------- /Downloader/Extensions/IInitializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Extensions/IInitializable.cs -------------------------------------------------------------------------------- /Downloader/Extensions/IUIExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Extensions/IUIExtension.cs -------------------------------------------------------------------------------- /Downloader/IMirrorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/IMirrorSelector.cs -------------------------------------------------------------------------------- /Downloader/IProtocolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/IProtocolProvider.cs -------------------------------------------------------------------------------- /Downloader/ISegmentCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/ISegmentCalculator.cs -------------------------------------------------------------------------------- /Downloader/MinSizeSegmentCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/MinSizeSegmentCalculator.cs -------------------------------------------------------------------------------- /Downloader/ProtocolProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/ProtocolProviderFactory.cs -------------------------------------------------------------------------------- /Downloader/Protocols/BaseProtocolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Protocols/BaseProtocolProvider.cs -------------------------------------------------------------------------------- /Downloader/Protocols/FtpProtocolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Protocols/FtpProtocolProvider.cs -------------------------------------------------------------------------------- /Downloader/Protocols/HttpFtpProtocolExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Protocols/HttpFtpProtocolExtension.cs -------------------------------------------------------------------------------- /Downloader/Protocols/HttpFtpProtocolParametersSettingsProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Protocols/HttpFtpProtocolParametersSettingsProxy.cs -------------------------------------------------------------------------------- /Downloader/Protocols/HttpProtocolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Protocols/HttpProtocolProvider.cs -------------------------------------------------------------------------------- /Downloader/Protocols/IHttpFtpProtocolParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Protocols/IHttpFtpProtocolParameters.cs -------------------------------------------------------------------------------- /Downloader/Protocols/KetarinProtocolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Protocols/KetarinProtocolProvider.cs -------------------------------------------------------------------------------- /Downloader/RemoteFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/RemoteFileInfo.cs -------------------------------------------------------------------------------- /Downloader/ResourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/ResourceLocation.cs -------------------------------------------------------------------------------- /Downloader/Segment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Segment.cs -------------------------------------------------------------------------------- /Downloader/SegmentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/SegmentState.cs -------------------------------------------------------------------------------- /Downloader/SequentialMirrorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/SequentialMirrorSelector.cs -------------------------------------------------------------------------------- /Downloader/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Downloader/Settings.cs -------------------------------------------------------------------------------- /ExternalServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ExternalServices.cs -------------------------------------------------------------------------------- /Forms/AboutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/AboutDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/AboutDialog.cs -------------------------------------------------------------------------------- /Forms/AboutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/AboutDialog.resx -------------------------------------------------------------------------------- /Forms/AddCustomColumnDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/AddCustomColumnDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/AddCustomColumnDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/AddCustomColumnDialog.cs -------------------------------------------------------------------------------- /Forms/AddCustomColumnDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/AddCustomColumnDialog.resx -------------------------------------------------------------------------------- /Forms/ApplicationDatabaseBaseDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ApplicationDatabaseBaseDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/ApplicationDatabaseBaseDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ApplicationDatabaseBaseDialog.cs -------------------------------------------------------------------------------- /Forms/ApplicationDatabaseBaseDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ApplicationDatabaseBaseDialog.resx -------------------------------------------------------------------------------- /Forms/ApplicationJobDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ApplicationJobDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/ApplicationJobDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ApplicationJobDialog.cs -------------------------------------------------------------------------------- /Forms/ApplicationJobDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ApplicationJobDialog.resx -------------------------------------------------------------------------------- /Forms/BrowserPreviewDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/BrowserPreviewDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/BrowserPreviewDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/BrowserPreviewDialog.cs -------------------------------------------------------------------------------- /Forms/BrowserPreviewDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/BrowserPreviewDialog.resx -------------------------------------------------------------------------------- /Forms/ChooseAppsToInstallDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ChooseAppsToInstallDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/ChooseAppsToInstallDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ChooseAppsToInstallDialog.cs -------------------------------------------------------------------------------- /Forms/ChooseAppsToInstallDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ChooseAppsToInstallDialog.resx -------------------------------------------------------------------------------- /Forms/CloseProcessInstructionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CloseProcessInstructionDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/CloseProcessInstructionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CloseProcessInstructionDialog.cs -------------------------------------------------------------------------------- /Forms/CloseProcessInstructionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CloseProcessInstructionDialog.resx -------------------------------------------------------------------------------- /Forms/CommandControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CommandControl.Designer.cs -------------------------------------------------------------------------------- /Forms/CommandControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CommandControl.cs -------------------------------------------------------------------------------- /Forms/CommandControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CommandControl.resx -------------------------------------------------------------------------------- /Forms/CopyFileInstructionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CopyFileInstructionDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/CopyFileInstructionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CopyFileInstructionDialog.cs -------------------------------------------------------------------------------- /Forms/CopyFileInstructionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CopyFileInstructionDialog.resx -------------------------------------------------------------------------------- /Forms/CustomSetupInstructionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CustomSetupInstructionDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/CustomSetupInstructionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CustomSetupInstructionDialog.cs -------------------------------------------------------------------------------- /Forms/CustomSetupInstructionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/CustomSetupInstructionDialog.resx -------------------------------------------------------------------------------- /Forms/DeleteApplicationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/DeleteApplicationDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/DeleteApplicationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/DeleteApplicationDialog.cs -------------------------------------------------------------------------------- /Forms/DeleteApplicationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/DeleteApplicationDialog.resx -------------------------------------------------------------------------------- /Forms/EditVariablesDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/EditVariablesDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/EditVariablesDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/EditVariablesDialog.cs -------------------------------------------------------------------------------- /Forms/EditVariablesDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/EditVariablesDialog.resx -------------------------------------------------------------------------------- /Forms/ErrorsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ErrorsDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/ErrorsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ErrorsDialog.cs -------------------------------------------------------------------------------- /Forms/ErrorsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ErrorsDialog.resx -------------------------------------------------------------------------------- /Forms/HintTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/HintTextBox.cs -------------------------------------------------------------------------------- /Forms/ImportFromDatabaseDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ImportFromDatabaseDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/ImportFromDatabaseDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ImportFromDatabaseDialog.cs -------------------------------------------------------------------------------- /Forms/ImportFromDatabaseDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/ImportFromDatabaseDialog.resx -------------------------------------------------------------------------------- /Forms/InstallingApplicationsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/InstallingApplicationsDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/InstallingApplicationsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/InstallingApplicationsDialog.cs -------------------------------------------------------------------------------- /Forms/InstallingApplicationsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/InstallingApplicationsDialog.resx -------------------------------------------------------------------------------- /Forms/InstructionBaseDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/InstructionBaseDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/InstructionBaseDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/InstructionBaseDialog.cs -------------------------------------------------------------------------------- /Forms/InstructionBaseDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/InstructionBaseDialog.resx -------------------------------------------------------------------------------- /Forms/LogDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/LogDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/LogDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/LogDialog.cs -------------------------------------------------------------------------------- /Forms/LogDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/LogDialog.resx -------------------------------------------------------------------------------- /Forms/MultilineEditorDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/MultilineEditorDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/MultilineEditorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/MultilineEditorDialog.cs -------------------------------------------------------------------------------- /Forms/MultilineEditorDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/MultilineEditorDialog.resx -------------------------------------------------------------------------------- /Forms/NewSnippetDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/NewSnippetDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/NewSnippetDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/NewSnippetDialog.cs -------------------------------------------------------------------------------- /Forms/NewSnippetDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/NewSnippetDialog.resx -------------------------------------------------------------------------------- /Forms/NewVariableDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/NewVariableDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/NewVariableDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/NewVariableDialog.cs -------------------------------------------------------------------------------- /Forms/NewVariableDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/NewVariableDialog.resx -------------------------------------------------------------------------------- /Forms/PaintableTextBoxBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/PaintableTextBoxBase.cs -------------------------------------------------------------------------------- /Forms/PostDataEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/PostDataEditor.Designer.cs -------------------------------------------------------------------------------- /Forms/PostDataEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/PostDataEditor.cs -------------------------------------------------------------------------------- /Forms/PostDataEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/PostDataEditor.resx -------------------------------------------------------------------------------- /Forms/RenameFileDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/RenameFileDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/RenameFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/RenameFileDialog.cs -------------------------------------------------------------------------------- /Forms/RenameFileDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/RenameFileDialog.resx -------------------------------------------------------------------------------- /Forms/SelectApplicationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SelectApplicationDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/SelectApplicationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SelectApplicationDialog.cs -------------------------------------------------------------------------------- /Forms/SelectApplicationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SelectApplicationDialog.resx -------------------------------------------------------------------------------- /Forms/SetPlaceholderDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SetPlaceholderDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/SetPlaceholderDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SetPlaceholderDialog.cs -------------------------------------------------------------------------------- /Forms/SetPlaceholderDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SetPlaceholderDialog.resx -------------------------------------------------------------------------------- /Forms/SettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SettingsDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SettingsDialog.cs -------------------------------------------------------------------------------- /Forms/SettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SettingsDialog.resx -------------------------------------------------------------------------------- /Forms/SetupInstructionListBoxPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SetupInstructionListBoxPanel.cs -------------------------------------------------------------------------------- /Forms/SetupInstructionListBoxPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SetupInstructionListBoxPanel.resx -------------------------------------------------------------------------------- /Forms/SimilarApplicationsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SimilarApplicationsDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/SimilarApplicationsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SimilarApplicationsDialog.cs -------------------------------------------------------------------------------- /Forms/SimilarApplicationsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/SimilarApplicationsDialog.resx -------------------------------------------------------------------------------- /Forms/StartProcessInstructionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/StartProcessInstructionDialog.Designer.cs -------------------------------------------------------------------------------- /Forms/StartProcessInstructionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/StartProcessInstructionDialog.cs -------------------------------------------------------------------------------- /Forms/StartProcessInstructionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/StartProcessInstructionDialog.resx -------------------------------------------------------------------------------- /Forms/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/TextBox.cs -------------------------------------------------------------------------------- /Forms/VariableTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Forms/VariableTextBox.cs -------------------------------------------------------------------------------- /HashType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/HashType.cs -------------------------------------------------------------------------------- /Hotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Hotkey.cs -------------------------------------------------------------------------------- /HttpxRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/HttpxRequest.cs -------------------------------------------------------------------------------- /IKetarinRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/IKetarinRpc.cs -------------------------------------------------------------------------------- /Icon/256x256_8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/256x256_8bit.png -------------------------------------------------------------------------------- /Icon/CloseSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/CloseSearch.png -------------------------------------------------------------------------------- /Icon/CloseSearchDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/CloseSearchDown.png -------------------------------------------------------------------------------- /Icon/CloseSearchHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/CloseSearchHover.png -------------------------------------------------------------------------------- /Icon/Setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/Setup.png -------------------------------------------------------------------------------- /Icon/Setup32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/Setup32.png -------------------------------------------------------------------------------- /Icon/ketarin-dialog.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin-dialog.ico -------------------------------------------------------------------------------- /Icon/ketarin-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin-favicon.ico -------------------------------------------------------------------------------- /Icon/ketarin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin.ico -------------------------------------------------------------------------------- /Icon/ketarin_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin_16x16.png -------------------------------------------------------------------------------- /Icon/ketarin_16x16_8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin_16x16_8bit.png -------------------------------------------------------------------------------- /Icon/ketarin_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin_256x256.png -------------------------------------------------------------------------------- /Icon/ketarin_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin_32x32.png -------------------------------------------------------------------------------- /Icon/ketarin_32x32_8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin_32x32_8bit.png -------------------------------------------------------------------------------- /Icon/ketarin_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin_48x48.png -------------------------------------------------------------------------------- /Icon/ketarin_48x48_8biz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Icon/ketarin_48x48_8biz.png -------------------------------------------------------------------------------- /Ketarin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Ketarin.csproj -------------------------------------------------------------------------------- /Ketarin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Ketarin.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/LICENSE -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/MainForm.resx -------------------------------------------------------------------------------- /NonBinaryFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/NonBinaryFileException.cs -------------------------------------------------------------------------------- /PowerShellScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/PowerShellScript.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AddSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/AddSmall.png -------------------------------------------------------------------------------- /Resources/Arrow Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Arrow Down.png -------------------------------------------------------------------------------- /Resources/Arrow Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Arrow Up.png -------------------------------------------------------------------------------- /Resources/DeleteHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/DeleteHS.png -------------------------------------------------------------------------------- /Resources/Document Restricted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Document Restricted.png -------------------------------------------------------------------------------- /Resources/Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Document.png -------------------------------------------------------------------------------- /Resources/GoToNextMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/GoToNextMessage.png -------------------------------------------------------------------------------- /Resources/GoToPreviousMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/GoToPreviousMessage.png -------------------------------------------------------------------------------- /Resources/Import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Import.png -------------------------------------------------------------------------------- /Resources/LineColorHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/LineColorHS.png -------------------------------------------------------------------------------- /Resources/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/New.png -------------------------------------------------------------------------------- /Resources/NewDownloaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/NewDownloaded.png -------------------------------------------------------------------------------- /Resources/Restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Restart.png -------------------------------------------------------------------------------- /Resources/Symbol Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Symbol Check.png -------------------------------------------------------------------------------- /Resources/Symbol Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Symbol Delete.png -------------------------------------------------------------------------------- /Resources/Symbol Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Resources/Symbol Information.png -------------------------------------------------------------------------------- /Scp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Scp.cs -------------------------------------------------------------------------------- /ScriptType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ScriptType.cs -------------------------------------------------------------------------------- /SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/SerializableDictionary.cs -------------------------------------------------------------------------------- /SettingsExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/SettingsExporter.cs -------------------------------------------------------------------------------- /SetupInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/SetupInstruction.cs -------------------------------------------------------------------------------- /Snippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Snippet.cs -------------------------------------------------------------------------------- /SplitButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/SplitButton.cs -------------------------------------------------------------------------------- /StartProcessInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/StartProcessInstruction.cs -------------------------------------------------------------------------------- /TargetPathInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/TargetPathInvalidException.cs -------------------------------------------------------------------------------- /Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/Updater.cs -------------------------------------------------------------------------------- /UrlVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/UrlVariable.cs -------------------------------------------------------------------------------- /UserCSScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/UserCSScript.cs -------------------------------------------------------------------------------- /VariableIsEmptyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/VariableIsEmptyException.cs -------------------------------------------------------------------------------- /WebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/WebClient.cs -------------------------------------------------------------------------------- /XmlRpc/AssemblyBuildNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/AssemblyBuildNumber.cs -------------------------------------------------------------------------------- /XmlRpc/AssemblyDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/AssemblyDesc.cs -------------------------------------------------------------------------------- /XmlRpc/AssemblyDescFX1_0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/AssemblyDescFX1_0.cs -------------------------------------------------------------------------------- /XmlRpc/CookComputing.XmlRpc.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/CookComputing.XmlRpc.Targets -------------------------------------------------------------------------------- /XmlRpc/DateTime8601.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/DateTime8601.cs -------------------------------------------------------------------------------- /XmlRpc/GuidEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/GuidEx.cs -------------------------------------------------------------------------------- /XmlRpc/IHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/IHttpRequest.cs -------------------------------------------------------------------------------- /XmlRpc/IHttpRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/IHttpRequestHandler.cs -------------------------------------------------------------------------------- /XmlRpc/IHttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/IHttpResponse.cs -------------------------------------------------------------------------------- /XmlRpc/IXmlRpcProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/IXmlRpcProxy.cs -------------------------------------------------------------------------------- /XmlRpc/RequestResponseLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/RequestResponseLogger.cs -------------------------------------------------------------------------------- /XmlRpc/SystemMethodsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/SystemMethodsBase.cs -------------------------------------------------------------------------------- /XmlRpc/Tracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/Tracer.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcAsyncResult.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcBeginAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcBeginAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcBoolean.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcClientFormatterSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcClientFormatterSink.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcClientFormatterSinkProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcClientFormatterSinkProvider.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcClientProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcClientProtocol.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcClientProtocol.resx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XmlRpc/XmlRpcDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcDateTime.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcDocWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcDocWriter.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcDouble.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcEndAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcEndAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcException.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcFaultException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcFaultException.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcHttpRequest.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcHttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcHttpResponse.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcHttpServerProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcHttpServerProtocol.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcInt.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcListenerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcListenerRequest.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcListenerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcListenerResponse.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcListenerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcListenerService.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcLogger.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcMemberAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcMethodAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcMethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcMethodInfo.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcMissingMappingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcMissingMappingAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcNonStandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcNonStandard.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcParameterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcParameterAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcParameterInfo.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcProxyCodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcProxyCodeGen.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcProxyGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcProxyGen.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcRequest.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcRequestEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcRequestEventArgs.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcResponse.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcResponseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcResponseEventArgs.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcReturnValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcReturnValueAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcSerializer.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcServerFormatterSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcServerFormatterSink.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcServerFormatterSinkProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcServerFormatterSinkProvider.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcServerProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcServerProtocol.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcService.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcServiceAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcServiceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcServiceInfo.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcStruct.cs -------------------------------------------------------------------------------- /XmlRpc/XmlRpcUrlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/XmlRpcUrlAttribute.cs -------------------------------------------------------------------------------- /XmlRpc/util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/util.cs -------------------------------------------------------------------------------- /XmlRpc/xmlrpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/xmlrpc.csproj -------------------------------------------------------------------------------- /XmlRpc/xmlrpc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/XmlRpc/xmlrpc.sln -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/app.config -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/app.manifest -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /ftplib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ftplib.cs -------------------------------------------------------------------------------- /ketarin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/ketarin.ico -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canneverbe/Ketarin/HEAD/packages.config --------------------------------------------------------------------------------