Просмотр исходного кода

Merge quac from https://github.com/rdefeo/quac

Willy-JL 11 месяцев назад
Родитель
Сommit
60ffc90a21
5 измененных файлов с 13 добавлено и 5 удалено
  1. 1 1
      quac/.github/workflows/build.yml
  2. 4 0
      quac/CHANGELOG.md
  3. 6 2
      quac/README.md
  4. 1 1
      quac/application.fam
  5. 1 1
      quac/quac.h

+ 1 - 1
quac/.github/workflows/build.yml

@@ -34,7 +34,7 @@ jobs:
         with:
         with:
           sdk-channel: ${{ matrix.sdk-channel }}
           sdk-channel: ${{ matrix.sdk-channel }}
       - name: Upload app artifacts
       - name: Upload app artifacts
-        uses: actions/upload-artifact@v3
+        uses: actions/upload-artifact@v4
         with:
         with:
           # See ufbt action docs for other output variables
           # See ufbt action docs for other output variables
           name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
           name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}

+ 4 - 0
quac/CHANGELOG.md

@@ -1,3 +1,7 @@
+## 0.7.2
+
+- Updated for firmware SDK 1.2
+
 ## 0.7.1
 ## 0.7.1
 
 
 - Updated for firmware SDK 1.1.12
 - Updated for firmware SDK 1.1.12

+ 6 - 2
quac/README.md

@@ -2,7 +2,11 @@
 
 
 ## Quick Action Remote Control for Flipperzero
 ## Quick Action Remote Control for Flipperzero
 
 
-[Latest Version: 0.7.1](https://github.com/rdefeo/quac/releases)
+Get the latest version:
+
+* [Flipper Lab](https://lab.flipper.net/apps/quac) - recommended
+* [Latest builds](https://github.com/rdefeo/quac/releases) - manual install
+* Or build yourself with [ufbt](README.md#building)
 
 
 ![build status badge](https://github.com/rdefeo/quac/actions/workflows/build.yml/badge.svg)
 ![build status badge](https://github.com/rdefeo/quac/actions/workflows/build.yml/badge.svg)
 
 
@@ -133,7 +137,7 @@ For some errors, Quac! will show an error message on screen. In other cases, it
 
 
 * suggestions??
 * suggestions??
 
 
-## Building / Install
+## Building
 
 
 This app is currently built with [ufbt](https://github.com/flipperdevices/flipperzero-ufbt), intended for the stock firmware. I have not tested this on other firmwares. The `.fap` file can be found in the Releases section on the right.
 This app is currently built with [ufbt](https://github.com/flipperdevices/flipperzero-ufbt), intended for the stock firmware. I have not tested this on other firmwares. The `.fap` file can be found in the Releases section on the right.
 
 

+ 1 - 1
quac/application.fam

@@ -8,7 +8,7 @@ App(
     stack_size=2 * 1024,
     stack_size=2 * 1024,
     fap_category="Tools",
     fap_category="Tools",
     # Optional values
     # Optional values
-    fap_version="0.7.1",
+    fap_version="0.7.2",
     fap_icon="images/quac.png",  # 10x10 1-bit PNG
     fap_icon="images/quac.png",  # 10x10 1-bit PNG
     fap_description="Quick Action remote control app",
     fap_description="Quick Action remote control app",
     fap_author="Roberto De Feo",
     fap_author="Roberto De Feo",

+ 1 - 1
quac/quac.h

@@ -17,7 +17,7 @@
 #include "item.h"
 #include "item.h"
 
 
 #define QUAC_NAME    "Quac!"
 #define QUAC_NAME    "Quac!"
-#define QUAC_VERSION "v0.7.1"
+#define QUAC_VERSION "v0.7.2"
 #define QUAC_ABOUT                                    \
 #define QUAC_ABOUT                                    \
     "Quick Action remote control\n" QUAC_VERSION "\n" \
     "Quick Action remote control\n" QUAC_VERSION "\n" \
     "github.com/rdefeo/quac"
     "github.com/rdefeo/quac"