bugfix + added missing contributors

This commit is contained in:
Ryzerth 2021-02-28 17:32:22 +01:00
parent 4fc55f75a8
commit 9f0262fc05
3 changed files with 10 additions and 12 deletions

View File

@ -120,7 +120,7 @@ int sdrpp_main(int argc, char *argv[]) {
"Display" "Display"
}; };
defConfig["menuWidth"] = 300; defConfig["menuWidth"] = 300;
defConfig["min"] = -70.0; defConfig["min"] = -120.0;
defConfig["moduleInstances"]["Radio"] = "radio"; defConfig["moduleInstances"]["Radio"] = "radio";
defConfig["moduleInstances"]["Recorder"] = "recorder"; defConfig["moduleInstances"]["Recorder"] = "recorder";
@ -130,7 +130,6 @@ int sdrpp_main(int argc, char *argv[]) {
defConfig["moduleInstances"]["RTL-SDR Source"] = "rtl_sdr_source"; defConfig["moduleInstances"]["RTL-SDR Source"] = "rtl_sdr_source";
defConfig["moduleInstances"]["AirspyHF+ Source"] = "airspyhf_source"; defConfig["moduleInstances"]["AirspyHF+ Source"] = "airspyhf_source";
defConfig["moduleInstances"]["Airspy Source"] = "airspy_source"; defConfig["moduleInstances"]["Airspy Source"] = "airspy_source";
defConfig["moduleInstances"]["HackRF Source"] = "hackrf_source";
defConfig["moduleInstances"]["Audio Sink"] = "audio_sink"; defConfig["moduleInstances"]["Audio Sink"] = "audio_sink";
defConfig["modules"] = json::array(); defConfig["modules"] = json::array();
@ -141,12 +140,6 @@ int sdrpp_main(int argc, char *argv[]) {
defConfig["windowSize"]["h"] = 720; defConfig["windowSize"]["h"] = 720;
defConfig["windowSize"]["w"] = 1280; defConfig["windowSize"]["w"] = 1280;
defConfig["bandColors"]["broadcast"] = "#0000FFFF";
defConfig["bandColors"]["amateur"] = "#FF0000FF";
defConfig["bandColors"]["aviation"] = "#00FF00FF";
defConfig["bandColors"]["marine"] = "#00FFFFFF";
defConfig["bandColors"]["military"] = "#FFFF00FF";
#ifdef _WIN32 #ifdef _WIN32
defConfig["modulesDirectory"] = "./modules"; defConfig["modulesDirectory"] = "./modules";
defConfig["resourcesDirectory"] = "./res"; defConfig["resourcesDirectory"] = "./res";

View File

@ -3,12 +3,14 @@
namespace sdrpp_credits { namespace sdrpp_credits {
const char* contributors[] = { const char* contributors[] = {
"Ryzerth (Author)", "Ryzerth (Author)",
"aosync", "Aang23",
"Alexsey Shestacov", "Alexsey Shestacov",
"Aosync",
"Benjamin Kyd", "Benjamin Kyd",
"Cropinghigh", "Cropinghigh",
"Howard0su", "Howard0su",
"Martin Hauke", "Martin Hauke",
"Paulo Matias",
"Raov", "Raov",
"Szymon Zakrent", "Szymon Zakrent",
"Tobias Mädel" "Tobias Mädel"
@ -17,7 +19,7 @@ namespace sdrpp_credits {
const char* libraries[] = { const char* libraries[] = {
"Dear ImGui (ocornut)", "Dear ImGui (ocornut)",
"json (nlohmann)", "json (nlohmann)",
"portaudio (P.A. comm.)", "RtlAudio",
"SoapySDR (PothosWare)", "SoapySDR (PothosWare)",
"spdlog (gabime)", "spdlog (gabime)",
}; };

View File

@ -223,13 +223,16 @@ I will soon publish a contributing.md listing the code style to use.
* [Lee Donaghy](https://github.com/github) * [Lee Donaghy](https://github.com/github)
* [Daniele D'Agnelli](https://linkedin.com/in/dagnelli) * [Daniele D'Agnelli](https://linkedin.com/in/dagnelli)
## Contributors ## Contributors
* [aosync](https://github.com/aosync) * [Aang23](https://github.com/Aang23)
* [Alexsey Shestacov](https://github.com/wingrime) * [Alexsey Shestacov](https://github.com/wingrime)
* [Aosync](https://github.com/aosync)
* [Benjamin Kyd](https://github.com/benkyd) * [Benjamin Kyd](https://github.com/benkyd)
* [cropinghigh](https://github.com/cropinghigh) * [Cropinghigh](https://github.com/cropinghigh)
* [Howard0su](https://github.com/howard0su) * [Howard0su](https://github.com/howard0su)
* [Martin Hauke](https://github.com/mnhauke) * [Martin Hauke](https://github.com/mnhauke)
* [Paulo Matias](https://github.com/thotypous)
* [Raov](https://twitter.com/raov_birbtog) * [Raov](https://twitter.com/raov_birbtog)
* [Szymon Zakrent](https://github.com/zakrent) * [Szymon Zakrent](https://github.com/zakrent)
* [Tobias Mädel](https://github.com/Manawyrm) * [Tobias Mädel](https://github.com/Manawyrm)