├── .gitignore ├── .gitmodules ├── Converters.cs ├── Extensions.cs ├── IconManager.cs ├── LICENSE.txt ├── Plugin.cs ├── Properties └── AssemblyInfo.cs ├── QuickLook.Plugin.Metadata.Base.config ├── QuickLook.Plugin.TorrentViewer.csproj ├── QuickLook.Plugin.TorrentViewer.sln ├── README.md ├── Scripts ├── pack-zip.ps1 └── update-version.ps1 ├── TorrentFileEntry.cs ├── TorrentFileListView.xaml ├── TorrentFileListView.xaml.cs ├── TorrentInfoPanel.xaml └── TorrentInfoPanel.xaml.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/Converters.cs -------------------------------------------------------------------------------- /Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/Extensions.cs -------------------------------------------------------------------------------- /IconManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/IconManager.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/Plugin.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /QuickLook.Plugin.Metadata.Base.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/QuickLook.Plugin.Metadata.Base.config -------------------------------------------------------------------------------- /QuickLook.Plugin.TorrentViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/QuickLook.Plugin.TorrentViewer.csproj -------------------------------------------------------------------------------- /QuickLook.Plugin.TorrentViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/QuickLook.Plugin.TorrentViewer.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/pack-zip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/Scripts/pack-zip.ps1 -------------------------------------------------------------------------------- /Scripts/update-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/Scripts/update-version.ps1 -------------------------------------------------------------------------------- /TorrentFileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/TorrentFileEntry.cs -------------------------------------------------------------------------------- /TorrentFileListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/TorrentFileListView.xaml -------------------------------------------------------------------------------- /TorrentFileListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/TorrentFileListView.xaml.cs -------------------------------------------------------------------------------- /TorrentInfoPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/TorrentInfoPanel.xaml -------------------------------------------------------------------------------- /TorrentInfoPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cologler/QuickLook.Plugin.TorrentViewer/HEAD/TorrentInfoPanel.xaml.cs --------------------------------------------------------------------------------