├── .gitignore ├── 7zip └── 7za.exe ├── AppMain.axaml ├── AppMain.axaml.cs ├── AsarIntegrity.cs ├── Assets └── icon.ico ├── Main.axaml ├── Main.axaml.cs ├── MainViewModel.cs ├── Patcher.cs ├── Program.cs ├── README.md ├── Services ├── ArchLinuxService.cs ├── BasePlatformService.cs ├── IPlatformService.cs ├── LinuxService.cs ├── MacOsService.cs ├── PatcherService.cs ├── PlatformServiceFactory.cs └── WindowsService.cs ├── Update.cs ├── Utils.cs ├── YandexMusicPatcherGui.csproj └── YandexMusicPatcherGui.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/.gitignore -------------------------------------------------------------------------------- /7zip/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/7zip/7za.exe -------------------------------------------------------------------------------- /AppMain.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/AppMain.axaml -------------------------------------------------------------------------------- /AppMain.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/AppMain.axaml.cs -------------------------------------------------------------------------------- /AsarIntegrity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/AsarIntegrity.cs -------------------------------------------------------------------------------- /Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Assets/icon.ico -------------------------------------------------------------------------------- /Main.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Main.axaml -------------------------------------------------------------------------------- /Main.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Main.axaml.cs -------------------------------------------------------------------------------- /MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/MainViewModel.cs -------------------------------------------------------------------------------- /Patcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Patcher.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/README.md -------------------------------------------------------------------------------- /Services/ArchLinuxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Services/ArchLinuxService.cs -------------------------------------------------------------------------------- /Services/BasePlatformService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Services/BasePlatformService.cs -------------------------------------------------------------------------------- /Services/IPlatformService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Services/IPlatformService.cs -------------------------------------------------------------------------------- /Services/LinuxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Services/LinuxService.cs -------------------------------------------------------------------------------- /Services/MacOsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Services/MacOsService.cs -------------------------------------------------------------------------------- /Services/PatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Services/PatcherService.cs -------------------------------------------------------------------------------- /Services/PlatformServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Services/PlatformServiceFactory.cs -------------------------------------------------------------------------------- /Services/WindowsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Services/WindowsService.cs -------------------------------------------------------------------------------- /Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Update.cs -------------------------------------------------------------------------------- /Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/Utils.cs -------------------------------------------------------------------------------- /YandexMusicPatcherGui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/YandexMusicPatcherGui.csproj -------------------------------------------------------------------------------- /YandexMusicPatcherGui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPlayOff/YandexMusicExtMod/HEAD/YandexMusicPatcherGui.sln --------------------------------------------------------------------------------