mirror of
https://github.com/uowuo/abaddon.git
synced 2025-03-04 03:03:16 -05:00
Merge branch 'master' of https://github.com/uowuo/abaddon
This commit is contained in:
commit
606c6a4bc8
@ -107,6 +107,15 @@ the result of fundamental issues with Discord's thread implementation.
|
||||
5. `make`
|
||||
6. [Copy resources](#resources)
|
||||
|
||||
#### FreeBSD:
|
||||
|
||||
1. `pkg install git cmake nlohmann-json spdlog gtkmm30 libhandy libsodium`
|
||||
2. `git clone https://github.com/uowuo/abaddon --recurse-submodules="subprojects" && cd abaddon`
|
||||
3. `mkdir build && cd build`
|
||||
4. `cmake ..`
|
||||
5. `make`
|
||||
6. [Copy resources](#resources)
|
||||
|
||||
### Downloads:
|
||||
|
||||
Latest release version: https://github.com/uowuo/abaddon/releases/latest
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <regex>
|
||||
#include <mutex>
|
||||
#include <condition_variable>
|
||||
#include <glibconfig.h>
|
||||
#include <glib.h>
|
||||
#include <optional>
|
||||
#include <type_traits>
|
||||
|
||||
|
@ -115,10 +115,12 @@ VoiceWindow::VoiceWindow(Snowflake channel_id)
|
||||
UpdateVADParamValue();
|
||||
});
|
||||
|
||||
#ifdef WITH_RNNOISE
|
||||
m_noise_suppression.set_active(audio.GetSuppressNoise());
|
||||
m_noise_suppression.signal_toggled().connect([this]() {
|
||||
Abaddon::Get().GetAudio().SetSuppressNoise(m_noise_suppression.get_active());
|
||||
});
|
||||
#endif
|
||||
|
||||
m_mix_mono.set_active(audio.GetMixMono());
|
||||
m_mix_mono.signal_toggled().connect([this]() {
|
||||
|
Loading…
Reference in New Issue
Block a user