gitextract_si3e3_3t/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── CURRENT_VERSION ├── Dist/ │ ├── InnoSetup/ │ │ ├── translations/ │ │ │ ├── info-before.de.txt │ │ │ ├── info-before.en.txt │ │ │ ├── info-before.es.txt │ │ │ ├── info-before.fr.txt │ │ │ ├── info-before.it.txt │ │ │ ├── info-before.ko.txt │ │ │ ├── info-before.lv.txt │ │ │ ├── info-before.nl.txt │ │ │ ├── info-before.ro.txt │ │ │ ├── info-before.ru.txt │ │ │ └── info-before.zh_Hans.txt │ │ ├── winmute-setup-languages.iss │ │ └── winmute-setup.iss │ ├── bin/ │ │ ├── changelog.txt │ │ ├── license.rtf │ │ ├── license.txt │ │ └── update-check.disabled │ ├── chocolatey/ │ │ ├── WinMute.nuspec │ │ ├── howto.txt │ │ └── tools/ │ │ ├── VERIFICATION.txt │ │ ├── chocolateybeforemodify.ps1 │ │ ├── chocolateyinstall.ps1 │ │ └── chocolateyuninstall.ps1 │ ├── winget/ │ │ └── manifests/ │ │ └── l/ │ │ └── LX-Systems/ │ │ └── WinMute/ │ │ ├── 2.5.0.0/ │ │ │ ├── LX-Systems.WinMute.installer.yaml │ │ │ ├── LX-Systems.WinMute.locale.en-US.yaml │ │ │ └── LX-Systems.WinMute.yaml │ │ ├── 2.5.1.0/ │ │ │ ├── LX-Systems.WinMute.installer.yaml │ │ │ ├── LX-Systems.WinMute.locale.en-US.yaml │ │ │ └── LX-Systems.WinMute.yaml │ │ ├── 2.5.2.0/ │ │ │ ├── LX-Systems.WinMute.installer.yaml │ │ │ ├── LX-Systems.WinMute.locale.en-US.yaml │ │ │ └── LX-Systems.WinMute.yaml │ │ └── 2.5.3.0/ │ │ ├── LX-Systems.WinMute.installer.yaml │ │ ├── LX-Systems.WinMute.locale.en-US.yaml │ │ └── LX-Systems.WinMute.yaml │ └── winget.txt ├── LICENSE ├── README.md ├── Translations/ │ ├── lang-de.json │ ├── lang-en.json │ ├── lang-es.json │ ├── lang-fr.json │ ├── lang-it.json │ ├── lang-ko.json │ ├── lang-lv.json │ ├── lang-nl.json │ ├── lang-ro.json │ ├── lang-ru.json │ └── lang-zh_Hans.json ├── WinMute/ │ ├── AboutDlg.cpp │ ├── BluetoothDetector.cpp │ ├── BluetoothDetector.h │ ├── LogDialog.cpp │ ├── MMNotificationClient.cpp │ ├── MMNotificationClient.h │ ├── MuteControl.cpp │ ├── MuteControl.h │ ├── QuietHoursTimer.cpp │ ├── QuietHoursTimer.h │ ├── SettingsDlg.cpp │ ├── Settings_BluetoothDlg.cpp │ ├── Settings_GeneralDlg.cpp │ ├── Settings_ManageEndpointsDlg.cpp │ ├── Settings_MuteDlg.cpp │ ├── Settings_QuietHoursDlg.cpp │ ├── Settings_WifiDlg.cpp │ ├── TrayIcon.cpp │ ├── TrayIcon.h │ ├── UpdateChecker.cpp │ ├── UpdateChecker.h │ ├── Utility.cpp │ ├── Utility.h │ ├── VersionHelper.h │ ├── VistaAudio.cpp │ ├── VistaAudioSessionEvents.cpp │ ├── VistaAudioSessionEvents.h │ ├── WMLog.cpp │ ├── WMLog.h │ ├── WMSettings.cpp │ ├── WMSettings.h │ ├── WMi18n.cpp │ ├── WMi18n.h │ ├── WiFiDetector.h │ ├── WifiDetector.cpp │ ├── WinAudio.h │ ├── WinMain.cpp │ ├── WinMute.cpp │ ├── WinMute.h │ ├── WinMute.rc │ ├── WinMute.vcxproj │ ├── WinMute.vcxproj.filters │ ├── WinMute.vcxproj.user │ ├── common.cpp │ ├── common.h │ ├── libs/ │ │ └── json.hpp │ └── resource.h ├── WinMute.props ├── WinMute.slnx ├── cppcgl-nativerecommended.ruleset └── winmute.cppcheck