2020-12-22 18:42:30 +01:00
|
|
|
#include <credits.h>
|
|
|
|
|
|
|
|
namespace sdrpp_credits {
|
|
|
|
const char* contributors[] = {
|
2021-03-07 20:10:10 +01:00
|
|
|
"Alexandre Rouma (Author)",
|
2021-02-28 17:32:22 +01:00
|
|
|
"Aang23",
|
2020-12-22 18:42:30 +01:00
|
|
|
"Alexsey Shestacov",
|
2021-02-28 17:32:22 +01:00
|
|
|
"Aosync",
|
2020-12-22 18:42:30 +01:00
|
|
|
"Benjamin Kyd",
|
2021-04-28 13:42:05 +02:00
|
|
|
"Benjamin Vernoux",
|
2020-12-25 17:22:24 +01:00
|
|
|
"Cropinghigh",
|
2021-06-23 21:45:38 +02:00
|
|
|
"Fred F4EED",
|
2020-12-26 23:12:09 +01:00
|
|
|
"Howard0su",
|
2021-04-28 13:42:05 +02:00
|
|
|
"Joshua Kimsey",
|
2021-01-11 03:19:09 +01:00
|
|
|
"Martin Hauke",
|
2021-07-03 16:15:18 +02:00
|
|
|
"Marvin Sinister",
|
2021-02-28 17:32:22 +01:00
|
|
|
"Paulo Matias",
|
2020-12-22 18:42:30 +01:00
|
|
|
"Raov",
|
2021-04-28 13:42:05 +02:00
|
|
|
"Starman0620",
|
2021-01-11 03:19:09 +01:00
|
|
|
"Szymon Zakrent",
|
2021-07-03 20:31:54 +02:00
|
|
|
"Tobias Mädel",
|
|
|
|
"Zimm"
|
2020-12-22 18:42:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const char* libraries[] = {
|
|
|
|
"Dear ImGui (ocornut)",
|
|
|
|
"json (nlohmann)",
|
2021-03-01 17:39:39 +01:00
|
|
|
"RtAudio",
|
2020-12-22 18:42:30 +01:00
|
|
|
"SoapySDR (PothosWare)",
|
|
|
|
"spdlog (gabime)",
|
2021-04-29 20:43:17 +02:00
|
|
|
"Portable File Dialogs"
|
2020-12-22 18:42:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const char* patrons[] = {
|
2021-04-20 01:38:32 +02:00
|
|
|
"Croccydile",
|
2021-03-07 20:10:10 +01:00
|
|
|
"Daniele D'Agnelli",
|
2021-03-07 20:11:35 +01:00
|
|
|
"W4IPA",
|
2021-02-10 21:35:56 +01:00
|
|
|
"Lee Donaghy",
|
2021-04-25 22:54:09 +02:00
|
|
|
"ON4MU",
|
2021-03-07 20:10:10 +01:00
|
|
|
"Passion-Radio.com",
|
2021-03-08 16:38:48 +01:00
|
|
|
"Scanner School",
|
2021-05-03 20:21:30 +02:00
|
|
|
"SignalsEverywhere",
|
|
|
|
"Syne Ardwin (WI9SYN)"
|
2020-12-22 18:42:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const int contributorCount = sizeof(contributors) / sizeof(char*);
|
|
|
|
const int libraryCount = sizeof(libraries) / sizeof(char*);
|
|
|
|
const int patronCount = sizeof(patrons) / sizeof(char*);
|
|
|
|
}
|