Explorar o código

Merge pc_monitor from https://github.com/TheSainEyereg/flipper-pc-monitor

# Conflicts:
#	pc_monitor/.github/workflows/build.yml
Willy-JL hai 9 meses
pai
achega
cd1d4e3bf8

+ 42 - 0
pc_monitor/.github/workflows/build.yml

@@ -0,0 +1,42 @@
+name: "FAP: Build for multiple SDK sources"
+# This will build your app for dev and release channels on GitHub. 
+# It will also build your app every day to make sure it's up to date with the latest SDK changes.
+# See https://github.com/marketplace/actions/build-flipper-application-package-fap for more information
+
+on:
+  push:
+    ## put your main branch name under "braches"
+    #branches: 
+    #  - master 
+  pull_request:
+  schedule: 
+    # do a build every day
+    - cron: "1 1 * * *"
+
+jobs:
+  ufbt-build:
+    runs-on: ubuntu-latest
+    strategy:
+      fail-fast: false
+      matrix:
+        include:
+          - name: dev channel
+            sdk-channel: dev
+          - name: release channel
+            sdk-channel: release
+          # You can add unofficial channels here. See ufbt action docs for more info.
+    name: 'ufbt: Build for ${{ matrix.name }}'
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v4
+      - name: Build with ufbt
+        uses: flipperdevices/flipperzero-ufbt-action@v0.1.1
+        id: build-app
+        with:
+          sdk-channel: ${{ matrix.sdk-channel }}
+      - name: Upload app artifacts
+        uses: actions/upload-artifact@v4
+        with:
+          # See ufbt action docs for other output variables
+          name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
+          path: ${{ steps.build-app.outputs.fap-artifacts }}

+ 4 - 0
pc_monitor/CHANGELOG.md

@@ -1,3 +1,7 @@
+## 1.1.3
+
+- Adressed BLE API changes
+
 ## 1.1.2
 
 - Blue LED blinks on data reception

+ 1 - 1
pc_monitor/application.fam

@@ -9,6 +9,6 @@ App(
     fap_category="Bluetooth",
     fap_icon_assets="assets",
     fap_icon="assets/icon_10px.png",
-    fap_version="1.1.2",
+    fap_version="1.1.3",
     fap_author="Olejka",
 )