SDRPlusPlus/core/src/credits.cpp

84 wiersze
2.0 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",
2021-10-25 16:24:33 +00:00
"John Donkersley",
"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",
"Cam K.",
2021-08-22 15:18:15 +00:00
"Shuyuan Liu",
"Syne Ardwin (WI9SYN)",
"Szymon Zakrent",
2021-07-03 18:31:54 +00:00
"Tobias Mädel",
2022-06-26 21:36:31 +00:00
"Youssef Touil",
2021-07-03 18:31:54 +00:00
"Zimm"
2020-12-22 17:42:30 +00:00
};
const char* libraries[] = {
"Dear ImGui (ocornut)",
2021-07-29 00:50:51 +00:00
"fftw3 (fftw.org)",
"glfw (Camilla Löwy)",
2020-12-22 17:42:30 +00:00
"json (nlohmann)",
"spdlog (gabime)",
"Portable File Dialogs"
2020-12-22 17:42:30 +00:00
};
const char* hardwareDonators[] = {
"Airspy",
"Analog Devices",
2021-12-04 03:49:51 +00:00
"CaribouLabs",
2022-11-21 21:37:25 +00:00
"Ettus Research",
"Howard Su",
"MyriadRF",
"Nuand",
"RFspace",
"RTL-SDRblog",
"SDRplay"
};
2020-12-22 17:42:30 +00:00
const char* patrons[] = {
"Bob Logan",
"Christian Häusler",
2021-04-19 23:38:32 +00:00
"Croccydile",
2021-09-29 06:53:15 +00:00
"Dale L Puckett (K0HYD)",
"Daniele D'Agnelli",
2021-10-26 14:44:59 +00:00
"D. Jones",
2021-08-04 15:42:20 +00:00
"EB3FRN",
2021-07-16 01:21:53 +00:00
"Eric Johnson",
2021-12-26 15:49:50 +00:00
"Ernest Murphy (NH7L)",
2021-08-31 16:39:48 +00:00
"Flinger Films",
2022-03-28 20:25:26 +00:00
"gringogrigio",
"Joe Cupano",
"Kezza",
2022-03-28 20:25:26 +00:00
"Krys Kamieniecki",
2021-02-10 20:35:56 +00:00
"Lee Donaghy",
2022-03-28 20:25:26 +00:00
"Lee KD1SQ",
".lozenge. (Hank Hill)",
2021-04-25 20:54:09 +00:00
"ON4MU",
"Passion-Radio.com",
2022-04-21 18:25:44 +00:00
"Paul Maine",
2021-03-08 15:38:48 +00:00
"Scanner School",
"SignalsEverywhere",
"Syne Ardwin (WI9SYN)",
2022-03-28 20:25:26 +00:00
"W4IPA",
"Zipper"
2020-12-22 17:42:30 +00: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 17:42:30 +00:00
const int patronCount = sizeof(patrons) / sizeof(char*);
}