├── .clang-format ├── .gitignore ├── .gitmodules ├── FrontBoard.h ├── LICENSE ├── MTMaterialView.h ├── Makefile ├── Prefix.pch ├── README.MD ├── Tweak.xm ├── TweakSB.h ├── TweakSB.xm ├── VMHUDRootViewController.h ├── VMHUDRootViewController.m ├── VMHUDView.h ├── VMHUDView.m ├── VMHUDWindow.h ├── VMHUDWindow.m ├── VMHookAudioUnit.hpp ├── VMHookAudioUnit.mm ├── VMHookInfo.h ├── VMHookInfo.mm ├── VMLAListener.m ├── VMLAVolumeDownListener.m ├── VMLAVolumeUpListener.m ├── VolumeMixer.plist ├── _UIBackdropView.h ├── ccvolumemixer ├── CCVolumeMixer.h ├── CCVolumeMixer.m ├── Resources │ ├── Info.plist │ ├── SettingsIcon@2x.png │ └── SettingsIcon@3x.png └── control ├── control ├── pic └── 1.png ├── sim.x └── volumemixerpref ├── BDInfoListController.h ├── BDInfoListController.m ├── Resources ├── Assets.car ├── Info.plist ├── Root.plist ├── WebKitIcon@2x.png ├── WebKitIcon@3x.png ├── en.lproj │ └── Root.strings ├── icon@2x.png ├── icon@3x.png ├── licenses.txt └── zh-Hans.lproj │ └── Root.strings ├── VMAuthorListController.h ├── VMAuthorListController.m ├── VMLicenseViewController.h ├── VMLicenseViewController.m ├── VMPrefRootListController.h ├── VMPrefRootListController.m └── entry.plist /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/.gitmodules -------------------------------------------------------------------------------- /FrontBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/FrontBoard.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/LICENSE -------------------------------------------------------------------------------- /MTMaterialView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/MTMaterialView.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/Makefile -------------------------------------------------------------------------------- /Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/Prefix.pch -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/README.MD -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/Tweak.xm -------------------------------------------------------------------------------- /TweakSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/TweakSB.h -------------------------------------------------------------------------------- /TweakSB.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/TweakSB.xm -------------------------------------------------------------------------------- /VMHUDRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHUDRootViewController.h -------------------------------------------------------------------------------- /VMHUDRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHUDRootViewController.m -------------------------------------------------------------------------------- /VMHUDView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHUDView.h -------------------------------------------------------------------------------- /VMHUDView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHUDView.m -------------------------------------------------------------------------------- /VMHUDWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHUDWindow.h -------------------------------------------------------------------------------- /VMHUDWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHUDWindow.m -------------------------------------------------------------------------------- /VMHookAudioUnit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHookAudioUnit.hpp -------------------------------------------------------------------------------- /VMHookAudioUnit.mm: -------------------------------------------------------------------------------- 1 | #import "VMHookAudioUnit.hpp" 2 | 3 | double auCurScale = 1; 4 | -------------------------------------------------------------------------------- /VMHookInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHookInfo.h -------------------------------------------------------------------------------- /VMHookInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMHookInfo.mm -------------------------------------------------------------------------------- /VMLAListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMLAListener.m -------------------------------------------------------------------------------- /VMLAVolumeDownListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMLAVolumeDownListener.m -------------------------------------------------------------------------------- /VMLAVolumeUpListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VMLAVolumeUpListener.m -------------------------------------------------------------------------------- /VolumeMixer.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/VolumeMixer.plist -------------------------------------------------------------------------------- /_UIBackdropView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/_UIBackdropView.h -------------------------------------------------------------------------------- /ccvolumemixer/CCVolumeMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/ccvolumemixer/CCVolumeMixer.h -------------------------------------------------------------------------------- /ccvolumemixer/CCVolumeMixer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/ccvolumemixer/CCVolumeMixer.m -------------------------------------------------------------------------------- /ccvolumemixer/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/ccvolumemixer/Resources/Info.plist -------------------------------------------------------------------------------- /ccvolumemixer/Resources/SettingsIcon@2x.png: -------------------------------------------------------------------------------- 1 | ../../../PreferenceBundles/volumemixer.bundle/icon@2x.png -------------------------------------------------------------------------------- /ccvolumemixer/Resources/SettingsIcon@3x.png: -------------------------------------------------------------------------------- 1 | ../../../PreferenceBundles/volumemixer.bundle/icon@3x.png -------------------------------------------------------------------------------- /ccvolumemixer/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/ccvolumemixer/control -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/control -------------------------------------------------------------------------------- /pic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/pic/1.png -------------------------------------------------------------------------------- /sim.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/sim.x -------------------------------------------------------------------------------- /volumemixerpref/BDInfoListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/BDInfoListController.h -------------------------------------------------------------------------------- /volumemixerpref/BDInfoListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/BDInfoListController.m -------------------------------------------------------------------------------- /volumemixerpref/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/Assets.car -------------------------------------------------------------------------------- /volumemixerpref/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/Info.plist -------------------------------------------------------------------------------- /volumemixerpref/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/Root.plist -------------------------------------------------------------------------------- /volumemixerpref/Resources/WebKitIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/WebKitIcon@2x.png -------------------------------------------------------------------------------- /volumemixerpref/Resources/WebKitIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/WebKitIcon@3x.png -------------------------------------------------------------------------------- /volumemixerpref/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /volumemixerpref/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/icon@2x.png -------------------------------------------------------------------------------- /volumemixerpref/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/icon@3x.png -------------------------------------------------------------------------------- /volumemixerpref/Resources/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/licenses.txt -------------------------------------------------------------------------------- /volumemixerpref/Resources/zh-Hans.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/Resources/zh-Hans.lproj/Root.strings -------------------------------------------------------------------------------- /volumemixerpref/VMAuthorListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/VMAuthorListController.h -------------------------------------------------------------------------------- /volumemixerpref/VMAuthorListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/VMAuthorListController.m -------------------------------------------------------------------------------- /volumemixerpref/VMLicenseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/VMLicenseViewController.h -------------------------------------------------------------------------------- /volumemixerpref/VMLicenseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/VMLicenseViewController.m -------------------------------------------------------------------------------- /volumemixerpref/VMPrefRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/VMPrefRootListController.h -------------------------------------------------------------------------------- /volumemixerpref/VMPrefRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/VMPrefRootListController.m -------------------------------------------------------------------------------- /volumemixerpref/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendonjkding/VolumeMixer/HEAD/volumemixerpref/entry.plist --------------------------------------------------------------------------------