├── .gitignore ├── .gitmodules ├── Installer ├── App.config ├── App.xaml ├── App.xaml.cs ├── Extensions.cs ├── IPC │ └── SingletonService.cs ├── Installer.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ShellLink.cs ├── ToCopy │ └── readme.txt └── TorrentLabel.cs ├── LICENSE ├── Patchy.PostBuild.EmbedAssembly ├── App.config ├── Patchy.PostBuild.EmbedAssembly.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── Patchy.sln ├── Patchy.sln.DotSettings ├── Patchy ├── AddTorrentWindow.xaml ├── AddTorrentWindow.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── AutomaticUpdate.cs ├── ClientManager.cs ├── Converters │ ├── HeaderFilterConverter.cs │ ├── NetworkSpeedConverter.cs │ ├── NullToBooleanConverter.cs │ ├── PeerClientConverter.cs │ ├── PriorityToIndexConverter.cs │ ├── TimeSpanConverter.cs │ ├── TorrentCreationDateConverter.cs │ ├── TorrentETAConverter.cs │ ├── TorrentETADateTimeConverter.cs │ ├── TorrentProgressConverter.cs │ ├── TorrentSizeConverter.cs │ ├── TorrentSpeedConverter.cs │ └── TorrentStatusToStringConverter.cs ├── CreateTorrentWindow.xaml ├── CreateTorrentWindow.xaml.cs ├── DoubleClickAction.cs ├── FilterDataGrid.cs ├── IPC │ └── SingletonService.cs ├── MainWindow.Commands.cs ├── MainWindow.Interop.cs ├── MainWindow.Logic.cs ├── MainWindow.Rss.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── OSInfo.cs ├── Patchy.csproj ├── PeriodicFile.cs ├── PeriodicTorrent.cs ├── PiecedProgressBar.xaml ├── PiecedProgressBar.xaml.cs ├── PreferencesWindow.xaml ├── PreferencesWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ProxiedConnection.cs ├── RssFeed.cs ├── RssFeedEntry.cs ├── RssTorrentRule.cs ├── SettingsManager.cs ├── ShellNotification.cs ├── Themes │ ├── Dark.xaml │ └── Default.xaml ├── TorrentInfo.cs ├── TorrentLabel.cs ├── TorrentLabelWindow.xaml ├── TorrentLabelWindow.xaml.cs ├── UACHelper.cs ├── UnhandledExceptionWindow.xaml ├── UnhandledExceptionWindow.xaml.cs ├── UpdateSummaryWindow.xaml ├── UpdateSummaryWindow.xaml.cs ├── Validators │ ├── DirectoryValidationRule.cs │ ├── ProxyAddressValidationRule.cs │ └── TcpPortValidationRule.cs └── WatchedDirectory.cs ├── README.md ├── Release-Checklist.md ├── Uninstaller ├── App.config ├── App.xaml ├── App.xaml.cs ├── IPC │ └── SingletonService.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Uninstaller.csproj ├── images ├── add.png ├── close.png ├── folder.png ├── patchy.ico ├── patchy.png └── rss.png └── lib ├── Mono.Nat.dll ├── Newtonsoft.Json.dll ├── StarksoftBiko.dll └── Xceed.Wpf.Toolkit.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/.gitmodules -------------------------------------------------------------------------------- /Installer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/App.config -------------------------------------------------------------------------------- /Installer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/App.xaml -------------------------------------------------------------------------------- /Installer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/App.xaml.cs -------------------------------------------------------------------------------- /Installer/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/Extensions.cs -------------------------------------------------------------------------------- /Installer/IPC/SingletonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/IPC/SingletonService.cs -------------------------------------------------------------------------------- /Installer/Installer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/Installer.csproj -------------------------------------------------------------------------------- /Installer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/MainWindow.xaml -------------------------------------------------------------------------------- /Installer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Installer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Installer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Installer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/Properties/Resources.resx -------------------------------------------------------------------------------- /Installer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Installer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/Properties/Settings.settings -------------------------------------------------------------------------------- /Installer/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/ShellLink.cs -------------------------------------------------------------------------------- /Installer/ToCopy/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/ToCopy/readme.txt -------------------------------------------------------------------------------- /Installer/TorrentLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Installer/TorrentLabel.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/LICENSE -------------------------------------------------------------------------------- /Patchy.PostBuild.EmbedAssembly/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy.PostBuild.EmbedAssembly/App.config -------------------------------------------------------------------------------- /Patchy.PostBuild.EmbedAssembly/Patchy.PostBuild.EmbedAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy.PostBuild.EmbedAssembly/Patchy.PostBuild.EmbedAssembly.csproj -------------------------------------------------------------------------------- /Patchy.PostBuild.EmbedAssembly/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy.PostBuild.EmbedAssembly/Program.cs -------------------------------------------------------------------------------- /Patchy.PostBuild.EmbedAssembly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy.PostBuild.EmbedAssembly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Patchy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy.sln -------------------------------------------------------------------------------- /Patchy.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy.sln.DotSettings -------------------------------------------------------------------------------- /Patchy/AddTorrentWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/AddTorrentWindow.xaml -------------------------------------------------------------------------------- /Patchy/AddTorrentWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/AddTorrentWindow.xaml.cs -------------------------------------------------------------------------------- /Patchy/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/App.config -------------------------------------------------------------------------------- /Patchy/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/App.xaml -------------------------------------------------------------------------------- /Patchy/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/App.xaml.cs -------------------------------------------------------------------------------- /Patchy/AutomaticUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/AutomaticUpdate.cs -------------------------------------------------------------------------------- /Patchy/ClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/ClientManager.cs -------------------------------------------------------------------------------- /Patchy/Converters/HeaderFilterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/HeaderFilterConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/NetworkSpeedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/NetworkSpeedConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/NullToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/NullToBooleanConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/PeerClientConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/PeerClientConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/PriorityToIndexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/PriorityToIndexConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/TimeSpanConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/TorrentCreationDateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/TorrentCreationDateConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/TorrentETAConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/TorrentETAConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/TorrentETADateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/TorrentETADateTimeConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/TorrentProgressConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/TorrentProgressConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/TorrentSizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/TorrentSizeConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/TorrentSpeedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/TorrentSpeedConverter.cs -------------------------------------------------------------------------------- /Patchy/Converters/TorrentStatusToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Converters/TorrentStatusToStringConverter.cs -------------------------------------------------------------------------------- /Patchy/CreateTorrentWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/CreateTorrentWindow.xaml -------------------------------------------------------------------------------- /Patchy/CreateTorrentWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/CreateTorrentWindow.xaml.cs -------------------------------------------------------------------------------- /Patchy/DoubleClickAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/DoubleClickAction.cs -------------------------------------------------------------------------------- /Patchy/FilterDataGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/FilterDataGrid.cs -------------------------------------------------------------------------------- /Patchy/IPC/SingletonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/IPC/SingletonService.cs -------------------------------------------------------------------------------- /Patchy/MainWindow.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/MainWindow.Commands.cs -------------------------------------------------------------------------------- /Patchy/MainWindow.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/MainWindow.Interop.cs -------------------------------------------------------------------------------- /Patchy/MainWindow.Logic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/MainWindow.Logic.cs -------------------------------------------------------------------------------- /Patchy/MainWindow.Rss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/MainWindow.Rss.cs -------------------------------------------------------------------------------- /Patchy/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/MainWindow.xaml -------------------------------------------------------------------------------- /Patchy/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Patchy/OSInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/OSInfo.cs -------------------------------------------------------------------------------- /Patchy/Patchy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Patchy.csproj -------------------------------------------------------------------------------- /Patchy/PeriodicFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/PeriodicFile.cs -------------------------------------------------------------------------------- /Patchy/PeriodicTorrent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/PeriodicTorrent.cs -------------------------------------------------------------------------------- /Patchy/PiecedProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/PiecedProgressBar.xaml -------------------------------------------------------------------------------- /Patchy/PiecedProgressBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/PiecedProgressBar.xaml.cs -------------------------------------------------------------------------------- /Patchy/PreferencesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/PreferencesWindow.xaml -------------------------------------------------------------------------------- /Patchy/PreferencesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/PreferencesWindow.xaml.cs -------------------------------------------------------------------------------- /Patchy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Patchy/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Patchy/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Properties/Resources.resx -------------------------------------------------------------------------------- /Patchy/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Patchy/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Properties/Settings.settings -------------------------------------------------------------------------------- /Patchy/ProxiedConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/ProxiedConnection.cs -------------------------------------------------------------------------------- /Patchy/RssFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/RssFeed.cs -------------------------------------------------------------------------------- /Patchy/RssFeedEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/RssFeedEntry.cs -------------------------------------------------------------------------------- /Patchy/RssTorrentRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/RssTorrentRule.cs -------------------------------------------------------------------------------- /Patchy/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/SettingsManager.cs -------------------------------------------------------------------------------- /Patchy/ShellNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/ShellNotification.cs -------------------------------------------------------------------------------- /Patchy/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Themes/Dark.xaml -------------------------------------------------------------------------------- /Patchy/Themes/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Themes/Default.xaml -------------------------------------------------------------------------------- /Patchy/TorrentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/TorrentInfo.cs -------------------------------------------------------------------------------- /Patchy/TorrentLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/TorrentLabel.cs -------------------------------------------------------------------------------- /Patchy/TorrentLabelWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/TorrentLabelWindow.xaml -------------------------------------------------------------------------------- /Patchy/TorrentLabelWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/TorrentLabelWindow.xaml.cs -------------------------------------------------------------------------------- /Patchy/UACHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/UACHelper.cs -------------------------------------------------------------------------------- /Patchy/UnhandledExceptionWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/UnhandledExceptionWindow.xaml -------------------------------------------------------------------------------- /Patchy/UnhandledExceptionWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/UnhandledExceptionWindow.xaml.cs -------------------------------------------------------------------------------- /Patchy/UpdateSummaryWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/UpdateSummaryWindow.xaml -------------------------------------------------------------------------------- /Patchy/UpdateSummaryWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/UpdateSummaryWindow.xaml.cs -------------------------------------------------------------------------------- /Patchy/Validators/DirectoryValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Validators/DirectoryValidationRule.cs -------------------------------------------------------------------------------- /Patchy/Validators/ProxyAddressValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Validators/ProxyAddressValidationRule.cs -------------------------------------------------------------------------------- /Patchy/Validators/TcpPortValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/Validators/TcpPortValidationRule.cs -------------------------------------------------------------------------------- /Patchy/WatchedDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Patchy/WatchedDirectory.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/README.md -------------------------------------------------------------------------------- /Release-Checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Release-Checklist.md -------------------------------------------------------------------------------- /Uninstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/App.config -------------------------------------------------------------------------------- /Uninstaller/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/App.xaml -------------------------------------------------------------------------------- /Uninstaller/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/App.xaml.cs -------------------------------------------------------------------------------- /Uninstaller/IPC/SingletonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/IPC/SingletonService.cs -------------------------------------------------------------------------------- /Uninstaller/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/MainWindow.xaml -------------------------------------------------------------------------------- /Uninstaller/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Uninstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Uninstaller/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Uninstaller/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/Properties/Resources.resx -------------------------------------------------------------------------------- /Uninstaller/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Uninstaller/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/Properties/Settings.settings -------------------------------------------------------------------------------- /Uninstaller/Uninstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/Uninstaller/Uninstaller.csproj -------------------------------------------------------------------------------- /images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/images/add.png -------------------------------------------------------------------------------- /images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/images/close.png -------------------------------------------------------------------------------- /images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/images/folder.png -------------------------------------------------------------------------------- /images/patchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/images/patchy.ico -------------------------------------------------------------------------------- /images/patchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/images/patchy.png -------------------------------------------------------------------------------- /images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/images/rss.png -------------------------------------------------------------------------------- /lib/Mono.Nat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/lib/Mono.Nat.dll -------------------------------------------------------------------------------- /lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /lib/StarksoftBiko.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/lib/StarksoftBiko.dll -------------------------------------------------------------------------------- /lib/Xceed.Wpf.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddevault/Patchy/HEAD/lib/Xceed.Wpf.Toolkit.dll --------------------------------------------------------------------------------