├── .gitattributes ├── .gitignore ├── README.md ├── Setup └── Setup.vdproj ├── TwitchArchiverWPF.sln └── TwitchArchiverWPF ├── AddStreamerDialog.xaml ├── AddStreamerDialog.xaml.cs ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Converters └── LengthConverter.cs ├── Images ├── avatar.png ├── close-red.png ├── computer-folder-open.png ├── logo.png └── settings.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PageSettings.xaml ├── PageSettings.xaml.cs ├── PageStreamers.xaml ├── PageStreamers.xaml.cs ├── PageVods.xaml ├── PageVods.xaml.cs ├── Settings ├── GlobalSettings.cs ├── RecordingSettings.cs ├── RenderSettings.cs ├── Settings.Designer.cs └── Settings.settings ├── TwitchArchiverWPF.csproj ├── TwitchObjects ├── AccessToken.cs ├── AccessTokenValue.cs ├── DownloadOptions.cs ├── Extensions.cs ├── ProfileResponse.cs ├── StreamGQLResponse.cs ├── StreamInfoTaskResponse.cs ├── StreamMetadata.cs ├── Streamer.cs ├── TokenGQLResponse.cs └── VodGQLResponse.cs ├── WindowRenderSettings.xaml ├── WindowRenderSettings.xaml.cs ├── WindowStreamerSettings.xaml ├── WindowStreamerSettings.xaml.cs └── logo.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/Setup/Setup.vdproj -------------------------------------------------------------------------------- /TwitchArchiverWPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF.sln -------------------------------------------------------------------------------- /TwitchArchiverWPF/AddStreamerDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/AddStreamerDialog.xaml -------------------------------------------------------------------------------- /TwitchArchiverWPF/AddStreamerDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/AddStreamerDialog.xaml.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/App.xaml -------------------------------------------------------------------------------- /TwitchArchiverWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/App.xaml.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/Converters/LengthConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Converters/LengthConverter.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/Images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Images/avatar.png -------------------------------------------------------------------------------- /TwitchArchiverWPF/Images/close-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Images/close-red.png -------------------------------------------------------------------------------- /TwitchArchiverWPF/Images/computer-folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Images/computer-folder-open.png -------------------------------------------------------------------------------- /TwitchArchiverWPF/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Images/logo.png -------------------------------------------------------------------------------- /TwitchArchiverWPF/Images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Images/settings.png -------------------------------------------------------------------------------- /TwitchArchiverWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/MainWindow.xaml -------------------------------------------------------------------------------- /TwitchArchiverWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/PageSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/PageSettings.xaml -------------------------------------------------------------------------------- /TwitchArchiverWPF/PageSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/PageSettings.xaml.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/PageStreamers.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/PageStreamers.xaml -------------------------------------------------------------------------------- /TwitchArchiverWPF/PageStreamers.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/PageStreamers.xaml.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/PageVods.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/PageVods.xaml -------------------------------------------------------------------------------- /TwitchArchiverWPF/PageVods.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/PageVods.xaml.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/Settings/GlobalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Settings/GlobalSettings.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/Settings/RecordingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Settings/RecordingSettings.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/Settings/RenderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Settings/RenderSettings.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/Settings/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Settings/Settings.Designer.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/Settings/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/Settings/Settings.settings -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchArchiverWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchArchiverWPF.csproj -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/AccessToken.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/AccessTokenValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/AccessTokenValue.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/DownloadOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/DownloadOptions.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/Extensions.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/ProfileResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/ProfileResponse.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/StreamGQLResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/StreamGQLResponse.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/StreamInfoTaskResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/StreamInfoTaskResponse.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/StreamMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/StreamMetadata.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/Streamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/Streamer.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/TokenGQLResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/TokenGQLResponse.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/TwitchObjects/VodGQLResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/TwitchObjects/VodGQLResponse.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/WindowRenderSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/WindowRenderSettings.xaml -------------------------------------------------------------------------------- /TwitchArchiverWPF/WindowRenderSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/WindowRenderSettings.xaml.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/WindowStreamerSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/WindowStreamerSettings.xaml -------------------------------------------------------------------------------- /TwitchArchiverWPF/WindowStreamerSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/WindowStreamerSettings.xaml.cs -------------------------------------------------------------------------------- /TwitchArchiverWPF/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lay295/TwitchArchiverWPF/HEAD/TwitchArchiverWPF/logo.ico --------------------------------------------------------------------------------