浏览代码

Merge totp from https://github.com/akopachov/flipper-zero_authenticator

Willy-JL 1 年之前
父节点
当前提交
70fae8dc93
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      totp/application.fam
  2. 1 1
      totp/version.h
  3. 1 1
      totp/workers/bt_type_code/bt_type_code.c

+ 1 - 1
totp/application.fam

@@ -7,7 +7,7 @@ App(
     requires=["gui", "cli", "dialogs", "storage", "input", "notification", "bt"],
     stack_size=2 * 1024,
     order=20,
-    fap_version="5.150",
+    fap_version="5.151",
     fap_author="Alexander Kopachov (@akopachov)",
     fap_description="Software-based TOTP/HOTP authenticator for Flipper Zero device",
     fap_weburl="https://github.com/akopachov/flipper-zero_authenticator",

+ 1 - 1
totp/version.h

@@ -2,4 +2,4 @@
 
 #define TOTP_APP_VERSION_MAJOR (5)
 #define TOTP_APP_VERSION_MINOR (15)
-#define TOTP_APP_VERSION_PATCH (0)
+#define TOTP_APP_VERSION_PATCH (1)

+ 1 - 1
totp/workers/bt_type_code/bt_type_code.c

@@ -14,7 +14,7 @@
 #include "../../config/app/config.h"
 #include "../../services/config/constants.h"
 
-#define HID_BT_KEYS_STORAGE_PATH_FORMAT CONFIG_FILE_DIRECTORY_PATH "/.bt_hid_%2X.keys"
+#define HID_BT_KEYS_STORAGE_PATH_FORMAT CONFIG_FILE_DIRECTORY_PATH "/.bt_hid_%02x.keys"
 
 struct TotpBtTypeCodeWorkerContext {
     char* code_buffer;