mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-07-09 18:45:22 +02:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
9eb3ef0500 | |||
ffc20f5fee | |||
6144f3a3f9 |
@ -35,6 +35,7 @@ namespace sdrpp_credits {
|
|||||||
const char* patrons[] = {
|
const char* patrons[] = {
|
||||||
"Croccydile",
|
"Croccydile",
|
||||||
"Daniele D'Agnelli",
|
"Daniele D'Agnelli",
|
||||||
|
"EB3FRN",
|
||||||
"Eric Johnson",
|
"Eric Johnson",
|
||||||
"W4IPA",
|
"W4IPA",
|
||||||
"Lee Donaghy",
|
"Lee Donaghy",
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define VERSION_STR "1.0.1"
|
#define VERSION_STR "1.0.2"
|
@ -312,6 +312,14 @@ Modules in beta are still included in releases for the most part but not enabled
|
|||||||
|
|
||||||
First, please make sure you're running the latest automated build. If your issue is linked to a bug it is likely that is has already been fixed in later releases
|
First, please make sure you're running the latest automated build. If your issue is linked to a bug it is likely that is has already been fixed in later releases
|
||||||
|
|
||||||
|
## SDR++ crashes then it won't start again no matter what
|
||||||
|
|
||||||
|
This is a bug in 1.0.0 that was fixed in 1.0.1
|
||||||
|
|
||||||
|
In some cases, if a crash happened while the config was being saved, the config file woul be corrupted and SDR++ would refuse to start because of it.
|
||||||
|
|
||||||
|
This has now been fixed. If a config file is corrupted it'll just reset it to its default state.
|
||||||
|
|
||||||
## "hash collision" error when starting
|
## "hash collision" error when starting
|
||||||
|
|
||||||
You likely installed the `soapysdr-module-all` package on Ubuntu/Debian. If not it's still a SoapySDR bug caused by multiple soapy modules coming in conflict. Uninstall anything related to SoapySDR then install soapysdr itself and only the soapy modules you actually need.
|
You likely installed the `soapysdr-module-all` package on Ubuntu/Debian. If not it's still a SoapySDR bug caused by multiple soapy modules coming in conflict. Uninstall anything related to SoapySDR then install soapysdr itself and only the soapy modules you actually need.
|
||||||
@ -347,6 +355,7 @@ I will soon publish a contributing.md listing the code style to use.
|
|||||||
|
|
||||||
* [Croccydile](https://example.com/)
|
* [Croccydile](https://example.com/)
|
||||||
* [Daniele D'Agnelli](https://linkedin.com/in/dagnelli)
|
* [Daniele D'Agnelli](https://linkedin.com/in/dagnelli)
|
||||||
|
* [EB3FRN](https://www.eb3frn.net/)
|
||||||
* [Eric Johnson](https://example.com/)
|
* [Eric Johnson](https://example.com/)
|
||||||
* [W4IPA](https://twitter.com/W4IPAstroke5)
|
* [W4IPA](https://twitter.com/W4IPAstroke5)
|
||||||
* [Lee Donaghy](https://github.com/github)
|
* [Lee Donaghy](https://github.com/github)
|
||||||
|
@ -365,7 +365,7 @@ private:
|
|||||||
if (parts.size() == 0) { return; }
|
if (parts.size() == 0) { return; }
|
||||||
|
|
||||||
// If the command is a compound command, execute each one separately
|
// If the command is a compound command, execute each one separately
|
||||||
if (parts[0].size() > 1 && parts[0][0] != '\\') {
|
if (parts[0].size() > 1 && parts[0][0] != '\\' && parts[0] != "AOS" && parts[0] != "LOS") {
|
||||||
std::string arguments;
|
std::string arguments;
|
||||||
if (parts.size() > 1) { arguments = cmd.substr(parts[0].size()); }
|
if (parts.size() > 1) { arguments = cmd.substr(parts[0].size()); }
|
||||||
for (char c : parts[0]) {
|
for (char c : parts[0]) {
|
||||||
|
Reference in New Issue
Block a user