├── .gitignore ├── .gitmodules ├── ChillPatcher.csproj ├── ChillPatcher.sln ├── CoreDependencyLoader.cs ├── LICENSE ├── MyPluginInfo.cs ├── Native └── FlacDecoder.cs ├── NativePlugins └── FlacDecoder │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── build.bat │ ├── include │ └── flac_decoder.h │ └── src │ └── flac_decoder.cpp ├── Patches ├── AchievementCacheManager.cs ├── AchievementSyncManager.cs ├── AchievementsPatch.cs ├── BulbulConstantPatch.cs ├── EntryBehaviorPatch.cs ├── EventBrokerPatch.cs ├── ExamplePatch.cs ├── KeyboardHookPatch.cs ├── LanguagePatch.cs ├── Rime │ ├── KeyEventConverter.cs │ ├── RimeApi.cs │ ├── RimeConfigManager.cs │ ├── RimeEngine.cs │ └── StructSizeValidator.cs ├── SaveData_CleanInvalid_Patch.cs ├── SteamAPIPatch.cs ├── UIFramework │ ├── GameAudioInfo_Patches.cs │ ├── GameAudioInfo_ReversePatch.cs │ ├── MusicPlayListButtons_Patch.cs │ ├── MusicPlayListButtons_Patches.cs │ ├── MusicPlayListButtons_VirtualScroll_Patch.cs │ ├── MusicService_Excluded_Patch.cs │ ├── MusicService_Favorite_Patch.cs │ ├── MusicService_Load_Patch.cs │ ├── MusicService_Patches.cs │ ├── MusicService_PlaylistOrder_Patch.cs │ ├── MusicTagListUI_Patches.cs │ ├── MusicTagListUI_SetTitle_Patch.cs │ ├── MusicUI_AlbumArt_Patch.cs │ ├── MusicUI_Patches.cs │ └── PlaybackState_Patches.cs └── UIRearrangePatch.cs ├── Plugin.cs ├── PluginConfig.cs ├── README.md ├── RimeDefaultConfig ├── default.yaml └── luna_pinyin.custom.yaml ├── UIFramework ├── Audio │ ├── AlbumArtReader.cs │ ├── AudioLoader.cs │ └── FileSystemPlaylistProvider.cs ├── Config │ └── MusicLibraryConfig.cs ├── ConfigManager.cs ├── Core │ ├── ChillUIFramework.cs │ ├── Events.cs │ └── Interfaces.cs ├── Data │ ├── CustomPlaylistDataManager.cs │ └── PlaylistDatabase.cs └── Music │ ├── AlbumCoverLoader.cs │ ├── AlbumHeaderView.cs │ ├── AlbumInfo.cs │ ├── AlbumManager.cs │ ├── CustomTag.cs │ ├── MixedVirtualScrollController.cs │ ├── MusicPlayListButtonsExtensions.cs │ ├── MusicUIManager.cs │ ├── PlaybackStateManager.cs │ ├── PlaylistCacheData.cs │ ├── PlaylistDirectoryScanner.cs │ ├── PlaylistListBuilder.cs │ ├── PlaylistListItem.cs │ ├── PlaylistMetadata.cs │ ├── PlaylistRegistry.cs │ ├── TagDropdownManager.cs │ ├── UIObjectPool.cs │ └── VirtualScrollController.cs ├── UIFrameworkConfig.cs ├── covers ├── defaultcover.png ├── gamecover1.jpg ├── gamecover2.jpg ├── gamecover3.png └── localcover.jpg ├── generate_test_audio.py ├── img └── Screenshot 2025-12-01 151422.png └── lib ├── concrt140.dll ├── msvcp140.dll ├── vcruntime140.dll └── vcruntime140_1.dll /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/.gitmodules -------------------------------------------------------------------------------- /ChillPatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/ChillPatcher.csproj -------------------------------------------------------------------------------- /ChillPatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/ChillPatcher.sln -------------------------------------------------------------------------------- /CoreDependencyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/CoreDependencyLoader.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /MyPluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/MyPluginInfo.cs -------------------------------------------------------------------------------- /Native/FlacDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Native/FlacDecoder.cs -------------------------------------------------------------------------------- /NativePlugins/FlacDecoder/.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /NativePlugins/FlacDecoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/NativePlugins/FlacDecoder/CMakeLists.txt -------------------------------------------------------------------------------- /NativePlugins/FlacDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/NativePlugins/FlacDecoder/README.md -------------------------------------------------------------------------------- /NativePlugins/FlacDecoder/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/NativePlugins/FlacDecoder/build.bat -------------------------------------------------------------------------------- /NativePlugins/FlacDecoder/include/flac_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/NativePlugins/FlacDecoder/include/flac_decoder.h -------------------------------------------------------------------------------- /NativePlugins/FlacDecoder/src/flac_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/NativePlugins/FlacDecoder/src/flac_decoder.cpp -------------------------------------------------------------------------------- /Patches/AchievementCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/AchievementCacheManager.cs -------------------------------------------------------------------------------- /Patches/AchievementSyncManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/AchievementSyncManager.cs -------------------------------------------------------------------------------- /Patches/AchievementsPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/AchievementsPatch.cs -------------------------------------------------------------------------------- /Patches/BulbulConstantPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/BulbulConstantPatch.cs -------------------------------------------------------------------------------- /Patches/EntryBehaviorPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/EntryBehaviorPatch.cs -------------------------------------------------------------------------------- /Patches/EventBrokerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/EventBrokerPatch.cs -------------------------------------------------------------------------------- /Patches/ExamplePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/ExamplePatch.cs -------------------------------------------------------------------------------- /Patches/KeyboardHookPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/KeyboardHookPatch.cs -------------------------------------------------------------------------------- /Patches/LanguagePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/LanguagePatch.cs -------------------------------------------------------------------------------- /Patches/Rime/KeyEventConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/Rime/KeyEventConverter.cs -------------------------------------------------------------------------------- /Patches/Rime/RimeApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/Rime/RimeApi.cs -------------------------------------------------------------------------------- /Patches/Rime/RimeConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/Rime/RimeConfigManager.cs -------------------------------------------------------------------------------- /Patches/Rime/RimeEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/Rime/RimeEngine.cs -------------------------------------------------------------------------------- /Patches/Rime/StructSizeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/Rime/StructSizeValidator.cs -------------------------------------------------------------------------------- /Patches/SaveData_CleanInvalid_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/SaveData_CleanInvalid_Patch.cs -------------------------------------------------------------------------------- /Patches/SteamAPIPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/SteamAPIPatch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/GameAudioInfo_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/GameAudioInfo_Patches.cs -------------------------------------------------------------------------------- /Patches/UIFramework/GameAudioInfo_ReversePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/GameAudioInfo_ReversePatch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicPlayListButtons_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicPlayListButtons_Patch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicPlayListButtons_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicPlayListButtons_Patches.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicPlayListButtons_VirtualScroll_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicPlayListButtons_VirtualScroll_Patch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicService_Excluded_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicService_Excluded_Patch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicService_Favorite_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicService_Favorite_Patch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicService_Load_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicService_Load_Patch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicService_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicService_Patches.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicService_PlaylistOrder_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicService_PlaylistOrder_Patch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicTagListUI_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicTagListUI_Patches.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicTagListUI_SetTitle_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicTagListUI_SetTitle_Patch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicUI_AlbumArt_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicUI_AlbumArt_Patch.cs -------------------------------------------------------------------------------- /Patches/UIFramework/MusicUI_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/MusicUI_Patches.cs -------------------------------------------------------------------------------- /Patches/UIFramework/PlaybackState_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIFramework/PlaybackState_Patches.cs -------------------------------------------------------------------------------- /Patches/UIRearrangePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Patches/UIRearrangePatch.cs -------------------------------------------------------------------------------- /Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/Plugin.cs -------------------------------------------------------------------------------- /PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/PluginConfig.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/README.md -------------------------------------------------------------------------------- /RimeDefaultConfig/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/RimeDefaultConfig/default.yaml -------------------------------------------------------------------------------- /RimeDefaultConfig/luna_pinyin.custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/RimeDefaultConfig/luna_pinyin.custom.yaml -------------------------------------------------------------------------------- /UIFramework/Audio/AlbumArtReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Audio/AlbumArtReader.cs -------------------------------------------------------------------------------- /UIFramework/Audio/AudioLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Audio/AudioLoader.cs -------------------------------------------------------------------------------- /UIFramework/Audio/FileSystemPlaylistProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Audio/FileSystemPlaylistProvider.cs -------------------------------------------------------------------------------- /UIFramework/Config/MusicLibraryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Config/MusicLibraryConfig.cs -------------------------------------------------------------------------------- /UIFramework/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/ConfigManager.cs -------------------------------------------------------------------------------- /UIFramework/Core/ChillUIFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Core/ChillUIFramework.cs -------------------------------------------------------------------------------- /UIFramework/Core/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Core/Events.cs -------------------------------------------------------------------------------- /UIFramework/Core/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Core/Interfaces.cs -------------------------------------------------------------------------------- /UIFramework/Data/CustomPlaylistDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Data/CustomPlaylistDataManager.cs -------------------------------------------------------------------------------- /UIFramework/Data/PlaylistDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Data/PlaylistDatabase.cs -------------------------------------------------------------------------------- /UIFramework/Music/AlbumCoverLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/AlbumCoverLoader.cs -------------------------------------------------------------------------------- /UIFramework/Music/AlbumHeaderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/AlbumHeaderView.cs -------------------------------------------------------------------------------- /UIFramework/Music/AlbumInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/AlbumInfo.cs -------------------------------------------------------------------------------- /UIFramework/Music/AlbumManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/AlbumManager.cs -------------------------------------------------------------------------------- /UIFramework/Music/CustomTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/CustomTag.cs -------------------------------------------------------------------------------- /UIFramework/Music/MixedVirtualScrollController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/MixedVirtualScrollController.cs -------------------------------------------------------------------------------- /UIFramework/Music/MusicPlayListButtonsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/MusicPlayListButtonsExtensions.cs -------------------------------------------------------------------------------- /UIFramework/Music/MusicUIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/MusicUIManager.cs -------------------------------------------------------------------------------- /UIFramework/Music/PlaybackStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/PlaybackStateManager.cs -------------------------------------------------------------------------------- /UIFramework/Music/PlaylistCacheData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/PlaylistCacheData.cs -------------------------------------------------------------------------------- /UIFramework/Music/PlaylistDirectoryScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/PlaylistDirectoryScanner.cs -------------------------------------------------------------------------------- /UIFramework/Music/PlaylistListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/PlaylistListBuilder.cs -------------------------------------------------------------------------------- /UIFramework/Music/PlaylistListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/PlaylistListItem.cs -------------------------------------------------------------------------------- /UIFramework/Music/PlaylistMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/PlaylistMetadata.cs -------------------------------------------------------------------------------- /UIFramework/Music/PlaylistRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/PlaylistRegistry.cs -------------------------------------------------------------------------------- /UIFramework/Music/TagDropdownManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/TagDropdownManager.cs -------------------------------------------------------------------------------- /UIFramework/Music/UIObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/UIObjectPool.cs -------------------------------------------------------------------------------- /UIFramework/Music/VirtualScrollController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFramework/Music/VirtualScrollController.cs -------------------------------------------------------------------------------- /UIFrameworkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/UIFrameworkConfig.cs -------------------------------------------------------------------------------- /covers/defaultcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/covers/defaultcover.png -------------------------------------------------------------------------------- /covers/gamecover1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/covers/gamecover1.jpg -------------------------------------------------------------------------------- /covers/gamecover2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/covers/gamecover2.jpg -------------------------------------------------------------------------------- /covers/gamecover3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/covers/gamecover3.png -------------------------------------------------------------------------------- /covers/localcover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/covers/localcover.jpg -------------------------------------------------------------------------------- /generate_test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/generate_test_audio.py -------------------------------------------------------------------------------- /img/Screenshot 2025-12-01 151422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/img/Screenshot 2025-12-01 151422.png -------------------------------------------------------------------------------- /lib/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/lib/concrt140.dll -------------------------------------------------------------------------------- /lib/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/lib/msvcp140.dll -------------------------------------------------------------------------------- /lib/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/lib/vcruntime140.dll -------------------------------------------------------------------------------- /lib/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin-2483/ChillPatcher/HEAD/lib/vcruntime140_1.dll --------------------------------------------------------------------------------