Kaynağa Gözat

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

Willy-JL 1 yıl önce
ebeveyn
işleme
d2432a5949
3 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. 1 1
      totp/application.fam
  2. 1 1
      totp/cli/plugins/export/export.c
  3. 1 1
      totp/version.h

+ 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.140",
+    fap_version="5.141",
     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/cli/plugins/export/export.c

@@ -41,7 +41,7 @@ static void print_uri_component(const char* data, size_t length) {
            c == '-' || c == '_') {
             putchar(c);
         } else {
-            printf("%%%x", c);
+            printf("%%%02x", c);
         }
         c_ptr++;
     }

+ 1 - 1
totp/version.h

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