├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── Downtify.sln ├── Downtify ├── Downtify.csproj ├── GUI │ ├── PlaceholderTextBox.cs │ ├── frmMain.Designer.cs │ ├── frmMain.cs │ └── frmMain.resx ├── LanguageXML.cs ├── Libs │ ├── UltraID3Lib.dll │ ├── UltraID3Lib.xml │ ├── ohLibSpotify.dll │ ├── yeti.mmedia.dll │ └── yeti.mp3.dll ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SpotifyDownloader.cs ├── XMLConfiguration.cs ├── app.config ├── config.xml ├── lame_enc.dll ├── language │ ├── de.xml │ └── en.xml ├── libspotify.dll └── spotify_appkey.key ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: Shawak 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/.gitignore -------------------------------------------------------------------------------- /Downtify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify.sln -------------------------------------------------------------------------------- /Downtify/Downtify.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Downtify.csproj -------------------------------------------------------------------------------- /Downtify/GUI/PlaceholderTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/GUI/PlaceholderTextBox.cs -------------------------------------------------------------------------------- /Downtify/GUI/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/GUI/frmMain.Designer.cs -------------------------------------------------------------------------------- /Downtify/GUI/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/GUI/frmMain.cs -------------------------------------------------------------------------------- /Downtify/GUI/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/GUI/frmMain.resx -------------------------------------------------------------------------------- /Downtify/LanguageXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/LanguageXML.cs -------------------------------------------------------------------------------- /Downtify/Libs/UltraID3Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Libs/UltraID3Lib.dll -------------------------------------------------------------------------------- /Downtify/Libs/UltraID3Lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Libs/UltraID3Lib.xml -------------------------------------------------------------------------------- /Downtify/Libs/ohLibSpotify.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Libs/ohLibSpotify.dll -------------------------------------------------------------------------------- /Downtify/Libs/yeti.mmedia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Libs/yeti.mmedia.dll -------------------------------------------------------------------------------- /Downtify/Libs/yeti.mp3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Libs/yeti.mp3.dll -------------------------------------------------------------------------------- /Downtify/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Program.cs -------------------------------------------------------------------------------- /Downtify/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Downtify/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Downtify/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Properties/Resources.resx -------------------------------------------------------------------------------- /Downtify/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Downtify/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/Properties/Settings.settings -------------------------------------------------------------------------------- /Downtify/SpotifyDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/SpotifyDownloader.cs -------------------------------------------------------------------------------- /Downtify/XMLConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/XMLConfiguration.cs -------------------------------------------------------------------------------- /Downtify/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/app.config -------------------------------------------------------------------------------- /Downtify/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/config.xml -------------------------------------------------------------------------------- /Downtify/lame_enc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/lame_enc.dll -------------------------------------------------------------------------------- /Downtify/language/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/language/de.xml -------------------------------------------------------------------------------- /Downtify/language/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/language/en.xml -------------------------------------------------------------------------------- /Downtify/libspotify.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/libspotify.dll -------------------------------------------------------------------------------- /Downtify/spotify_appkey.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/Downtify/spotify_appkey.key -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shawak/downtify/HEAD/README.md --------------------------------------------------------------------------------