├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SpotifyPatcher.sln └── SpotifyPatcher ├── App.config ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── ReadMe.txt ├── Resources ├── Batch │ ├── ModifyHosts.bat │ ├── NoAds.bat │ ├── NoUpdates.bat │ ├── Regedit.bat │ └── hosts ├── Exe │ └── Spotify.exe ├── Extra │ ├── PatchedSpotify.lnk │ └── ShortCut.bat └── Logo.png ├── SpotifyPatcher.csproj └── s.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/README.md -------------------------------------------------------------------------------- /SpotifyPatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher.sln -------------------------------------------------------------------------------- /SpotifyPatcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/App.config -------------------------------------------------------------------------------- /SpotifyPatcher/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Main.Designer.cs -------------------------------------------------------------------------------- /SpotifyPatcher/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Main.cs -------------------------------------------------------------------------------- /SpotifyPatcher/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Main.resx -------------------------------------------------------------------------------- /SpotifyPatcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Program.cs -------------------------------------------------------------------------------- /SpotifyPatcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SpotifyPatcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SpotifyPatcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Properties/Resources.resx -------------------------------------------------------------------------------- /SpotifyPatcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SpotifyPatcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Properties/Settings.settings -------------------------------------------------------------------------------- /SpotifyPatcher/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/ReadMe.txt -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Batch/ModifyHosts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Batch/ModifyHosts.bat -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Batch/NoAds.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Batch/NoAds.bat -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Batch/NoUpdates.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Batch/NoUpdates.bat -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Batch/Regedit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Batch/Regedit.bat -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Batch/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Batch/hosts -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Exe/Spotify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Exe/Spotify.exe -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Extra/PatchedSpotify.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Extra/PatchedSpotify.lnk -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Extra/ShortCut.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Extra/ShortCut.bat -------------------------------------------------------------------------------- /SpotifyPatcher/Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/Resources/Logo.png -------------------------------------------------------------------------------- /SpotifyPatcher/SpotifyPatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/SpotifyPatcher.csproj -------------------------------------------------------------------------------- /SpotifyPatcher/s.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Takaovi/SpotifyPatcher/HEAD/SpotifyPatcher/s.ico --------------------------------------------------------------------------------