jblanked 9 месяцев назад
Родитель
Сommit
e6c753999e
4 измененных файлов с 6 добавлено и 3 удалено
  1. 3 0
      CHANGELOG.md
  2. 1 1
      README.md
  3. 1 1
      alloc/flip_wifi_alloc.c
  4. 1 1
      application.fam

+ 3 - 0
CHANGELOG.md

@@ -1,3 +1,6 @@
+## v1.4
+- Updated to the latest FlipperHTTP library.
+
 ## v1.3.2
 ## v1.3.2
 - Fixed a crash that occurred when deleting a network from the Saved APs list.
 - Fixed a crash that occurred when deleting a network from the Saved APs list.
 - Updated to connect to the network after clicking "Set" on the selected SSID in the Saved APs list.
 - Updated to connect to the network after clicking "Set" on the selected SSID in the Saved APs list.

+ 1 - 1
README.md

@@ -2,7 +2,7 @@ FlipWiFi is the companion app for the popular FlipperHTTP flash, originally intr
 
 
 ## Requirements
 ## Requirements
 
 
-- WiFi Developer Board, Raspberry Pi, or ESP32 Device with FlipperHTTP Flash: https://github.com/jblanked/FlipperHTTP
+- WiFi Developer Board, Raspberry Pi, or ESP32 Device flashed with FlipperHTTP v1.8.2 or higher: https://github.com/jblanked/FlipperHTTP
 - 2.4 GHz WiFi Access Point
 - 2.4 GHz WiFi Access Point
 
 
 ## Features
 ## Features

+ 1 - 1
alloc/flip_wifi_alloc.c

@@ -14,7 +14,7 @@ FlipWiFiApp *flip_wifi_app_alloc()
     }
     }
 
 
     // Submenu
     // Submenu
-    if (!easy_flipper_set_submenu(&app->submenu_main, FlipWiFiViewSubmenuMain, "FlipWiFi v1.3.2", callback_exit_app, &app->view_dispatcher))
+    if (!easy_flipper_set_submenu(&app->submenu_main, FlipWiFiViewSubmenuMain, "FlipWiFi v1.4", callback_exit_app, &app->view_dispatcher))
     {
     {
         return NULL;
         return NULL;
     }
     }

+ 1 - 1
application.fam

@@ -9,6 +9,6 @@ App(
     fap_icon_assets="assets",
     fap_icon_assets="assets",
     fap_author="JBlanked",
     fap_author="JBlanked",
     fap_weburl="https://github.com/jblanked/FlipWiFi",
     fap_weburl="https://github.com/jblanked/FlipWiFi",
-    fap_version="1.3.2",
+    fap_version="1.4",
     fap_description="FlipperHTTP companion app.",
     fap_description="FlipperHTTP companion app.",
 )
 )