├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── I'm Only Resting.sln ├── Ior.Forms.PropertyGridEx ├── BrowsableTypeConverter.cs ├── CustomChoices.cs ├── CustomColorScheme.cs ├── CustomProperty.cs ├── CustomPropertyCollection.cs ├── CustomPropertyCollectionSet.cs ├── Ior.Forms.PropertyGridEx.csproj ├── Properties │ └── AssemblyInfo.cs ├── PropertyGridEx.Designer.cs ├── PropertyGridEx.cs ├── UICustomEventEditor.cs ├── UIFilenameEditor.cs └── UIListboxEditor.cs ├── Ior ├── Core │ ├── IorClient.cs │ ├── IorContentType.cs │ ├── LogMessageModel.cs │ ├── RequestModel.cs │ ├── RequestResponseSnapshot.cs │ ├── RequestViewModel.cs │ ├── ResponseBodyOutput.cs │ ├── ResponseModel.cs │ └── SettingsViewModel.cs ├── Forms │ ├── AboutBox.Designer.cs │ ├── AboutBox.cs │ ├── AboutBox.resx │ ├── ControlHelpers.cs │ ├── LogViewer.Designer.cs │ ├── LogViewer.cs │ ├── LogViewer.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── SettingsDialog.Designer.cs │ ├── SettingsDialog.cs │ ├── SettingsDialog.resx │ ├── StandardScintilla.cs │ └── StandardTextBox.cs ├── Ior.csproj ├── NLog.Debug.config ├── NLog.Release.config ├── NLog.config ├── NLog.xsd ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── HistorySettings.Designer.cs │ ├── HistorySettings.cs │ ├── HistorySettings.settings │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.cs │ ├── Settings.settings │ └── SlowCheetah │ │ └── SlowCheetah.Transforms.targets ├── Resources │ └── Camera.ico ├── app.config ├── logo.ico └── packages.config ├── LICENSE ├── NOTICE ├── README.md ├── Tests.IorTests ├── Core │ ├── IorClientTests.cs │ ├── IorContentTypeTests.cs │ ├── RequestModelTests.cs │ └── RequestViewModelTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Tests.IorTests.csproj └── packages.config ├── Utils ├── FilePathFormatter.cs ├── FileUtils.cs ├── HistoryList.cs ├── IEnumerableUtils.cs ├── Properties │ └── AssemblyInfo.cs ├── StringUtils.cs └── Utils.csproj ├── archive-release.bat ├── lib ├── scintilla │ ├── License.txt │ ├── ReadMe.htm │ ├── SciLexer.dll │ ├── ScintillaNET.dll │ └── ScintillaNET.xml └── tidy │ ├── TidyManaged.dll │ ├── TidyManaged.xml │ └── libtidy.dll └── tools └── 7z ├── 7za.exe ├── license.txt └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /I'm Only Resting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/I'm Only Resting.sln -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/BrowsableTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/BrowsableTypeConverter.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/CustomChoices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/CustomChoices.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/CustomColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/CustomColorScheme.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/CustomProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/CustomProperty.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/CustomPropertyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/CustomPropertyCollection.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/CustomPropertyCollectionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/CustomPropertyCollectionSet.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/Ior.Forms.PropertyGridEx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/Ior.Forms.PropertyGridEx.csproj -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/PropertyGridEx.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/PropertyGridEx.Designer.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/PropertyGridEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/PropertyGridEx.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/UICustomEventEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/UICustomEventEditor.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/UIFilenameEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/UIFilenameEditor.cs -------------------------------------------------------------------------------- /Ior.Forms.PropertyGridEx/UIListboxEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior.Forms.PropertyGridEx/UIListboxEditor.cs -------------------------------------------------------------------------------- /Ior/Core/IorClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/IorClient.cs -------------------------------------------------------------------------------- /Ior/Core/IorContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/IorContentType.cs -------------------------------------------------------------------------------- /Ior/Core/LogMessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/LogMessageModel.cs -------------------------------------------------------------------------------- /Ior/Core/RequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/RequestModel.cs -------------------------------------------------------------------------------- /Ior/Core/RequestResponseSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/RequestResponseSnapshot.cs -------------------------------------------------------------------------------- /Ior/Core/RequestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/RequestViewModel.cs -------------------------------------------------------------------------------- /Ior/Core/ResponseBodyOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/ResponseBodyOutput.cs -------------------------------------------------------------------------------- /Ior/Core/ResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/ResponseModel.cs -------------------------------------------------------------------------------- /Ior/Core/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Core/SettingsViewModel.cs -------------------------------------------------------------------------------- /Ior/Forms/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/AboutBox.Designer.cs -------------------------------------------------------------------------------- /Ior/Forms/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/AboutBox.cs -------------------------------------------------------------------------------- /Ior/Forms/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/AboutBox.resx -------------------------------------------------------------------------------- /Ior/Forms/ControlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/ControlHelpers.cs -------------------------------------------------------------------------------- /Ior/Forms/LogViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/LogViewer.Designer.cs -------------------------------------------------------------------------------- /Ior/Forms/LogViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/LogViewer.cs -------------------------------------------------------------------------------- /Ior/Forms/LogViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/LogViewer.resx -------------------------------------------------------------------------------- /Ior/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /Ior/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/MainForm.cs -------------------------------------------------------------------------------- /Ior/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/MainForm.resx -------------------------------------------------------------------------------- /Ior/Forms/SettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/SettingsDialog.Designer.cs -------------------------------------------------------------------------------- /Ior/Forms/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/SettingsDialog.cs -------------------------------------------------------------------------------- /Ior/Forms/SettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/SettingsDialog.resx -------------------------------------------------------------------------------- /Ior/Forms/StandardScintilla.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/StandardScintilla.cs -------------------------------------------------------------------------------- /Ior/Forms/StandardTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Forms/StandardTextBox.cs -------------------------------------------------------------------------------- /Ior/Ior.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Ior.csproj -------------------------------------------------------------------------------- /Ior/NLog.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/NLog.Debug.config -------------------------------------------------------------------------------- /Ior/NLog.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/NLog.Release.config -------------------------------------------------------------------------------- /Ior/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/NLog.config -------------------------------------------------------------------------------- /Ior/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/NLog.xsd -------------------------------------------------------------------------------- /Ior/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Program.cs -------------------------------------------------------------------------------- /Ior/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Ior/Properties/HistorySettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/HistorySettings.Designer.cs -------------------------------------------------------------------------------- /Ior/Properties/HistorySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/HistorySettings.cs -------------------------------------------------------------------------------- /Ior/Properties/HistorySettings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/HistorySettings.settings -------------------------------------------------------------------------------- /Ior/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Ior/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/Resources.resx -------------------------------------------------------------------------------- /Ior/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Ior/Properties/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/Settings.cs -------------------------------------------------------------------------------- /Ior/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/Settings.settings -------------------------------------------------------------------------------- /Ior/Properties/SlowCheetah/SlowCheetah.Transforms.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Properties/SlowCheetah/SlowCheetah.Transforms.targets -------------------------------------------------------------------------------- /Ior/Resources/Camera.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/Resources/Camera.ico -------------------------------------------------------------------------------- /Ior/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/app.config -------------------------------------------------------------------------------- /Ior/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/logo.ico -------------------------------------------------------------------------------- /Ior/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Ior/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/README.md -------------------------------------------------------------------------------- /Tests.IorTests/Core/IorClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Tests.IorTests/Core/IorClientTests.cs -------------------------------------------------------------------------------- /Tests.IorTests/Core/IorContentTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Tests.IorTests/Core/IorContentTypeTests.cs -------------------------------------------------------------------------------- /Tests.IorTests/Core/RequestModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Tests.IorTests/Core/RequestModelTests.cs -------------------------------------------------------------------------------- /Tests.IorTests/Core/RequestViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Tests.IorTests/Core/RequestViewModelTests.cs -------------------------------------------------------------------------------- /Tests.IorTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Tests.IorTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests.IorTests/Tests.IorTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Tests.IorTests/Tests.IorTests.csproj -------------------------------------------------------------------------------- /Tests.IorTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Tests.IorTests/packages.config -------------------------------------------------------------------------------- /Utils/FilePathFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Utils/FilePathFormatter.cs -------------------------------------------------------------------------------- /Utils/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Utils/FileUtils.cs -------------------------------------------------------------------------------- /Utils/HistoryList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Utils/HistoryList.cs -------------------------------------------------------------------------------- /Utils/IEnumerableUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Utils/IEnumerableUtils.cs -------------------------------------------------------------------------------- /Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Utils/StringUtils.cs -------------------------------------------------------------------------------- /Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/Utils/Utils.csproj -------------------------------------------------------------------------------- /archive-release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/archive-release.bat -------------------------------------------------------------------------------- /lib/scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/lib/scintilla/License.txt -------------------------------------------------------------------------------- /lib/scintilla/ReadMe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/lib/scintilla/ReadMe.htm -------------------------------------------------------------------------------- /lib/scintilla/SciLexer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/lib/scintilla/SciLexer.dll -------------------------------------------------------------------------------- /lib/scintilla/ScintillaNET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/lib/scintilla/ScintillaNET.dll -------------------------------------------------------------------------------- /lib/scintilla/ScintillaNET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/lib/scintilla/ScintillaNET.xml -------------------------------------------------------------------------------- /lib/tidy/TidyManaged.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/lib/tidy/TidyManaged.dll -------------------------------------------------------------------------------- /lib/tidy/TidyManaged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/lib/tidy/TidyManaged.xml -------------------------------------------------------------------------------- /lib/tidy/libtidy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/lib/tidy/libtidy.dll -------------------------------------------------------------------------------- /tools/7z/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/tools/7z/7za.exe -------------------------------------------------------------------------------- /tools/7z/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/tools/7z/license.txt -------------------------------------------------------------------------------- /tools/7z/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwensenSoftware/im-only-resting/HEAD/tools/7z/readme.txt --------------------------------------------------------------------------------