SDRPlusPlus/core/src/credits.cpp

50 wiersze
1.2 KiB
C++
Czysty Zwykły widok Historia

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