SDRPlusPlus/core/src/credits.cpp

76 wiersze
1.8 KiB
C++

#include <credits.h>
namespace sdrpp_credits {
const char* contributors[] = {
"Aang23",
"Alexsey Shestacov",
"Aosync",
"Benjamin Kyd",
"Benjamin Vernoux",
"Cropinghigh",
"Fred F4EED",
"Howard0su",
"John Donkersley",
"Joshua Kimsey",
"Martin Hauke",
"Marvin Sinister",
"Maxime Biette",
"Paulo Matias",
"Raov",
"Cam K.",
"Shuyuan Liu",
"Syne Ardwin (WI9SYN)",
"Szymon Zakrent",
"Tobias Mädel",
"Zimm"
};
const char* libraries[] = {
"Dear ImGui (ocornut)",
"fftw3 (fftw.org)",
"glfw (Camilla Löwy)",
"json (nlohmann)",
"spdlog (gabime)",
"Portable File Dialogs"
};
const char* hardwareDonators[] = {
"Airspy",
"Analog Devices",
"CaribouLabs",
"Howard Su",
"MyriadRF",
"Nuand",
"RFspace",
"RTL-SDRblog",
"SDRplay"
};
const char* patrons[] = {
"Bob Logan",
"Christian Häusler",
"Croccydile",
"Dale L Puckett (K0HYD)",
"Daniele D'Agnelli",
"D. Jones",
"EB3FRN",
"Eric Johnson",
"Ernest Murphy (NH7L)",
"Flinger Films",
"Kezza",
"Lee Donaghy",
".lozenge. (Hank Hill)",
"ON4MU",
"Passion-Radio.com",
"Scanner School",
"SignalsEverywhere",
"Syne Ardwin (WI9SYN)",
"W4IPA"
};
const int contributorCount = sizeof(contributors) / sizeof(char*);
const int libraryCount = sizeof(libraries) / sizeof(char*);
const int hardwareDonatorCount = sizeof(hardwareDonators) / sizeof(char*);
const int patronCount = sizeof(patrons) / sizeof(char*);
}