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

Update README and application FAM files for app release at https://github.com/flipperdevices/flipper-application-catalog

Cody Tolene 2 лет назад
Родитель
Сommit
d6e39b230e
2 измененных файлов с 5 добавлено и 4 удалено
  1. 2 2
      README.md
  2. 3 2
      src-fap/application.fam

+ 2 - 2
README.md

@@ -92,12 +92,12 @@ Note the upload may fail a few times, this is normal, try again. If it still fai
 1. Connect your Flipper Zero via USB, or insert your MicroSD.
 2. Navigate to the GitHub actions: https://github.com/CodyTolene/Flipper-Zero-Camera-Suite/actions
 3. Open the most recent action and download the fap zip for either "dev" or "release" build versions of the Flipper Zero firmware.
-4. Move "camerasuite.fap" into `~\apps\gpio\` on your Flipper Zero MicroSD:
+4. Move "camera_suite.fap" into `~\apps\gpio\` on your Flipper Zero MicroSD:
    ```
    .                            # The Flipper Zero MicroSD root.
    ├── apps                     # The Flipper Zero Applications folder.
    |   ├── gpio                 # The Flipper Zero GPIO folder.
-   |   |   ├── camerasuite.fap  # The Camera Suite application.
+   |   |   ├── camera_suite.fap  # The Camera Suite application.
    ```
 5. Reinsert your MicroSD into your Flipper Zero if you took it out.
 6. Plug in your ESP32-CAM module to your Flipper Zero.

+ 3 - 2
src-fap/application.fam

@@ -1,9 +1,9 @@
 App(
-    appid="camerasuite",
+    appid="camera_suite",
     apptype=FlipperAppType.EXTERNAL,
     cdefines=["APP_CAMERA_SUITE"],
     entry_point="camera_suite_app",
-    fap_author="Cody Tolene",
+    fap_author="@CodyTolene @Z4urce @leedave",
     fap_category="GPIO",
     fap_description="A camera suite application for the Flipper Zero ESP32-CAM module.",
     fap_icon="icons/camera_suite.png",
@@ -13,4 +13,5 @@ App(
     order=1,
     requires=["gui", "storage"],
     stack_size=8 * 1024,
+    version=1.1.0,
 )