DCS bug fix

lastudp
Tom Early 7 years ago
parent 31bf51d09b
commit 8eaa69557a

@ -11,7 +11,7 @@ locale. And make sure you do "sudo apt-get update && sudo apt-get upgrade" befor
your start. On a Raspberry Pi, you can do all of this with the configureation menu:
"sudo raspi-config".
1) Install the only external library you need: sudo apt-get install libconfig++-dev
1) Install the only external library you need: sudo apt install libconfig++-dev
Yeah! No wxWidgets!
2) From your home directory, clone the QnetGateway software:
@ -68,7 +68,7 @@ your start. On a Raspberry Pi, you can do all of this with the configureation me
sudo journalctl -u qnitap -f
You can do all three of these in one terminal window (that you can detach from!)
by using "screen": sudo apt-get install screen
by using "screen": sudo apt install screen
If you don't know how to use screen: http://aperiodic.net/screen/quick_reference
Being able to detach from a screen session is very useful, especially if you are
operating "headless"!

@ -2666,7 +2666,7 @@ void CQnetLink::Process()
rdsvt.head[0] = (unsigned char)(58 & 0xFF);
rdsvt.head[1] = (unsigned char)(58 >> 8 & 0x1F);
rdsvt.head[1] = (unsigned char)(rdsvt.head[1] | 0xFFFFFF80);
memcpy(rdsvt.dsvt.title + 2, "DSVT", 4);
memcpy(rdsvt.dsvt.title, "DSVT", 4);
rdsvt.dsvt.config = 0x10;
rdsvt.dsvt.flaga[0] = rdsvt.dsvt.flaga[1] = rdsvt.dsvt.flaga[2] = 0x00;
rdsvt.dsvt.id = 0x20;

@ -1,6 +1,6 @@
// version strings must be 55 characters or less!
#define IRCDDB_VERSION "QnetGateway-7.0.1"
#define LINK_VERSION "QnetLink-6.0.0"
#define LINK_VERSION "QnetLink-6.0.1"
#define DVAP_VERSION "QnetDVAP-5.1.1"
#define RELAY_VERSION "QnetRelay-0.2.1"
#define ITAP_VERSION "QnetITAP-0.1.1"

Loading…
Cancel
Save

Powered by TurnKey Linux.