├── .gitattributes ├── .gitignore ├── README.md ├── Screenshot-0.1.png ├── Screenshot-0.2.png ├── WpfApp1.sln └── WpfApp1 ├── App.config ├── App.xaml ├── App.xaml.cs ├── HttpUtil.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MovieItemModel.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── RuleItemModel.cs ├── Util.cs ├── WpfApp1.csproj ├── packages.config └── res ├── WebTorrent.txt └── rule.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot-0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/Screenshot-0.1.png -------------------------------------------------------------------------------- /Screenshot-0.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/Screenshot-0.2.png -------------------------------------------------------------------------------- /WpfApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1.sln -------------------------------------------------------------------------------- /WpfApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/App.config -------------------------------------------------------------------------------- /WpfApp1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/App.xaml -------------------------------------------------------------------------------- /WpfApp1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/App.xaml.cs -------------------------------------------------------------------------------- /WpfApp1/HttpUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/HttpUtil.cs -------------------------------------------------------------------------------- /WpfApp1/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/MainWindow.xaml -------------------------------------------------------------------------------- /WpfApp1/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WpfApp1/MovieItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/MovieItemModel.cs -------------------------------------------------------------------------------- /WpfApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WpfApp1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WpfApp1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/Properties/Resources.resx -------------------------------------------------------------------------------- /WpfApp1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WpfApp1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/Properties/Settings.settings -------------------------------------------------------------------------------- /WpfApp1/RuleItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/RuleItemModel.cs -------------------------------------------------------------------------------- /WpfApp1/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/Util.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/WpfApp1.csproj -------------------------------------------------------------------------------- /WpfApp1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/packages.config -------------------------------------------------------------------------------- /WpfApp1/res/WebTorrent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/res/WebTorrent.txt -------------------------------------------------------------------------------- /WpfApp1/res/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexPang/MagnetY/HEAD/WpfApp1/res/rule.json --------------------------------------------------------------------------------