SDRPlusPlus/core/src/credits.cpp

101 lines
2.4 KiB
C++
Raw Normal View History

2020-12-22 18:42:30 +01:00
#include <credits.h>
namespace sdrpp_credits {
const char* contributors[] = {
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",
"Benjamin Vernoux",
"Cropinghigh",
2021-06-23 21:45:38 +02:00
"Fred F4EED",
2020-12-26 23:12:09 +01:00
"Howard0su",
2021-10-25 18:24:33 +02:00
"John Donkersley",
"Joshua Kimsey",
"Manawyrm",
"Martin Hauke",
2021-07-03 16:15:18 +02:00
"Marvin Sinister",
2021-07-08 22:41:36 +02:00
"Maxime Biette",
2021-02-28 17:32:22 +01:00
"Paulo Matias",
2020-12-22 18:42:30 +01:00
"Raov",
"Cam K.",
2021-08-22 17:18:15 +02:00
"Shuyuan Liu",
"Syne Ardwin (WI9SYN)",
"Szymon Zakrent",
2022-06-26 23:36:31 +02:00
"Youssef Touil",
2021-07-03 20:31:54 +02:00
"Zimm"
2020-12-22 18:42:30 +01:00
};
const char* libraries[] = {
"Dear ImGui (ocornut)",
2021-07-29 02:50:51 +02:00
"fftw3 (fftw.org)",
"glfw (Camilla Löwy)",
2020-12-22 18:42:30 +01:00
"json (nlohmann)",
"Portable File Dialogs"
2020-12-22 18:42:30 +01:00
};
const char* hardwareDonators[] = {
2022-12-06 08:23:58 +01:00
"Aaronia AG",
"Airspy",
"Alex 4Z5LV",
"Analog Devices",
2021-12-04 04:49:51 +01:00
"CaribouLabs",
"Deepace",
2022-11-21 22:37:25 +01:00
"Ettus Research",
"Harogic",
"Howard Su",
2024-02-10 20:59:37 +01:00
"MicroPhase",
"Microtelecom",
"MyriadRF",
"Nuand",
2024-05-24 01:42:36 +02:00
"RFNM",
"RFspace",
"RTL-SDRblog",
"SDRplay"
};
2020-12-22 18:42:30 +01:00
const char* patrons[] = {
"Bob Logan",
"Christian Häusler",
2021-04-20 01:38:32 +02:00
"Croccydile",
2021-09-29 08:53:15 +02:00
"Dale L Puckett (K0HYD)",
"Daniele D'Agnelli",
2024-02-10 20:59:37 +01:00
"David Taylor (GM8ARV)",
2021-10-26 16:44:59 +02:00
"D. Jones",
2023-03-13 17:29:37 +01:00
"Dexruus",
2021-08-04 17:42:20 +02:00
"EB3FRN",
2021-07-16 03:21:53 +02:00
"Eric Johnson",
2021-12-26 16:49:50 +01:00
"Ernest Murphy (NH7L)",
2021-08-31 18:39:48 +02:00
"Flinger Films",
2023-03-13 17:29:37 +01:00
"Frank Werner (HB9FXQ)",
2022-03-28 22:25:26 +02:00
"gringogrigio",
2023-03-13 17:29:37 +01:00
"Jeff Moe",
2022-03-28 22:25:26 +02:00
"Joe Cupano",
2023-03-13 17:29:37 +01:00
"KD1SQ",
"Kezza",
2022-03-28 22:25:26 +02:00
"Krys Kamieniecki",
2021-02-10 21:35:56 +01:00
"Lee Donaghy",
2022-03-28 22:25:26 +02:00
"Lee KD1SQ",
".lozenge. (Hank Hill)",
2023-03-13 17:29:37 +01:00
"Martin Herren (HB9FXX)",
2021-04-25 22:54:09 +02:00
"ON4MU",
"Passion-Radio.com",
2022-04-21 20:25:44 +02:00
"Paul Maine",
2023-03-13 17:29:37 +01:00
"Peter Betz",
2021-03-08 16:38:48 +01:00
"Scanner School",
2023-03-13 17:29:37 +01:00
"Scott Palmer",
"SignalsEverywhere",
"Syne Ardwin (WI9SYN)",
2022-03-28 22:25:26 +02:00
"W4IPA",
2023-03-13 17:29:37 +01:00
"William Arcand (W1WRA)",
2024-02-10 20:59:37 +01:00
"William Pitchford",
2023-03-13 17:29:37 +01:00
"Yves Rougy",
2022-03-28 22:25:26 +02:00
"Zipper"
2020-12-22 18:42:30 +01:00
};
const int contributorCount = sizeof(contributors) / sizeof(char*);
const int libraryCount = sizeof(libraries) / sizeof(char*);
const int hardwareDonatorCount = sizeof(hardwareDonators) / sizeof(char*);
2020-12-22 18:42:30 +01:00
const int patronCount = sizeof(patrons) / sizeof(char*);
}