From abe26ac0888fa1427e60366f02ac552c5a2d7c11 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Mon, 16 Nov 2020 12:50:42 +0100 Subject: [PATCH 1/3] Bumoed version to 20.46.1 --- src/LoRa_APRS_iGate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 6c32fd5..136d435 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -75,7 +75,7 @@ void setup() delay(500); logPrintlnA("LoRa APRS iGate & Digi by OE5BPA (Peter Buchegger)"); - logPrintlnA("Version: 20.46.0-dev"); + logPrintlnA("Version: 20.46.1"); setup_display(); show_display("OE5BPA", "LoRa APRS iGate & Digi", "by Peter Buchegger", "1.0.0-dev", 3000); From 685b5acda195cfb1de3899775b8165615aeee523 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Sun, 6 Dec 2020 21:50:16 +0100 Subject: [PATCH 2/3] Bumped version to 20.49.0 --- src/LoRa_APRS_iGate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 603962b..4bd5c40 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -84,9 +84,9 @@ void setup() delay(500); logPrintlnA("LoRa APRS iGate & Digi by OE5BPA (Peter Buchegger)"); - logPrintlnA("Version: 20.46.0-dev"); + logPrintlnA("Version: 20.49.0"); setup_display(); - show_display("OE5BPA", "LoRa APRS iGate & Digi", "by Peter Buchegger", "1.0.0-dev", 3000); + show_display("OE5BPA", "LoRa APRS iGate & Digi", "by Peter Buchegger", "20.49.0", 3000); load_config(); setup_lora(); From f31e6fba284d1fe89b48a6c63f2255f13c7bc7de Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Sun, 6 Dec 2020 22:02:10 +0100 Subject: [PATCH 3/3] add to release upload the new boards --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a83c49c..fd90ad5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -87,3 +87,21 @@ jobs: asset_path: .pio/build/TrackerD-OE1ACM/firmware.bin asset_name: TrackerD-OE1ACM.bin asset_content_type: application/bin + # upload ttgo-poe-v1_0 + - uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: .pio/build/ttgo-poe-v1_0/firmware.bin + asset_name: ttgo-poe-v1_0.bin + asset_content_type: application/bin + # upload ttgo-poe-v1_2 + - uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: .pio/build/ttgo-poe-v1_2/firmware.bin + asset_name: ttgo-poe-v1_2.bin + asset_content_type: application/bin