rdefeo 11 месяцев назад
Родитель
Сommit
820c83ef84
4 измененных файлов с 9 добавлено и 5 удалено
  1. 1 1
      .github/workflows/build.yml
  2. 6 2
      README.md
  3. 1 1
      application.fam
  4. 1 1
      quac.h

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

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

+ 6 - 2
README.md

@@ -2,7 +2,11 @@
 
 ## 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)
 
@@ -133,7 +137,7 @@ For some errors, Quac! will show an error message on screen. In other cases, it
 
 * 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.
 

+ 1 - 1
application.fam

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

+ 1 - 1
quac.h

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