Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Vincent committed Jan 4, 2023
1 parent a249f54 commit aebf171
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

Download the following two files.

Link: [Latest release of Radio Panel for Raspberry Pi Zero W](https://github.com/scott-vincent/radio-panel/releases/latest/download/radio-panel-v1.3.2-raspi.tar.gz)
Link: [Latest release of Radio Panel for Raspberry Pi Zero W](https://github.com/scott-vincent/radio-panel/releases/latest/download/radio-panel-v1.3.3-raspi.tar.gz)

Link: [Latest release of Instrument Data Link for Windows](https://github.com/scott-vincent/instrument-data-link/releases/latest/download/instrument-data-link-v1.7.2-windows-x64.zip)
Link: [Latest release of Instrument Data Link for Windows](https://github.com/scott-vincent/instrument-data-link/releases/latest/download/instrument-data-link-v1.7.3-windows-x64.zip)

Unzip instrument-data-link into its own folder and double-click instrument-data-link.exe to run it.

Expand Down
4 changes: 2 additions & 2 deletions radio-panel/radio-panel.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Flight Simulator Radio Panel
* Copyright (c) 2022 Scott Vincent
* Copyright (c) 2023 Scott Vincent
*/

#include <stdio.h>
Expand All @@ -13,7 +13,7 @@
#include "simvars.h"
#include "radio.h"

const char* radioVersion = "v1.3.2";
const char* radioVersion = "v1.3.3";
const bool Debug = false;

struct globalVars globals;
Expand Down
3 changes: 2 additions & 1 deletion radio-panel/simvarDefs.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <stdio.h>
#include "simvarDefs.h"

const char* versionString = "v1.7.2";
const char* versionString = "v1.7.3";

const char* SimVarDefs[][2] = {
// Vars for Jetbridge (must come first)
Expand Down Expand Up @@ -236,6 +236,7 @@ WriteEvent WriteEvents[] = {
{ KEY_AP_SPEED_SLOT_INDEX_SET, "AP_SPEED_SLOT_INDEX_SET" },
{ KEY_AP_VS_SLOT_INDEX_SET, "AP_VS_SLOT_INDEX_SET" },
{ KEY_AP_VS_SET, "AP_VS_SET" },
{ KEY_AP_PANEL_HEADING_SET, "AP_PANEL_HEADING_SET" },
{ KEY_TUG_HEADING, "KEY_TUG_HEADING" },
{ KEY_ELEC_BAT1, "ELEC BAT1" },
{ KEY_ELEC_BAT2, "ELEC BAT2" },
Expand Down
1 change: 1 addition & 0 deletions radio-panel/simvarDefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ enum EVENT_ID {
KEY_AP_SPEED_SLOT_INDEX_SET,
KEY_AP_VS_SLOT_INDEX_SET,
KEY_AP_VS_SET,
KEY_AP_PANEL_HEADING_SET,
KEY_TUG_HEADING,
KEY_ELEC_BAT1,
KEY_ELEC_BAT2,
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rel=v1.3.2
rel=v1.3.3
mkdir release >/dev/null 2>&1
rm -rf release/$rel >/dev/null 2>&1
mkdir release/$rel
Expand Down

0 comments on commit aebf171

Please sign in to comment.