Skip to content

Commit

Permalink
Merge pull request #4 from hedger/master
Browse files Browse the repository at this point in the history
Fixes for ufbt
  • Loading branch information
QtRoS authored Nov 11, 2023
2 parents b982fa5 + 941d01c commit ae598c3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 56 deletions.
56 changes: 4 additions & 52 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,52 +1,4 @@
# Prerequisites
*.d

# Object files
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
dist/*
.vscode
.clang-format
.editorconfig
4 changes: 1 addition & 3 deletions application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ App(
name="Hex Viewer",
apptype=FlipperAppType.EXTERNAL,
entry_point="hex_viewer_app",
cdefines=["APP_HEX_VIEWER"],
requires=[
"gui",
"dialogs",
],
stack_size=2 * 1024,
order=20,
fap_libs=["assets"],
fap_icon="icons/hex_10px.png",
fap_icon_assets="icons",
fap_category="Tools",
)
3 changes: 2 additions & 1 deletion helpers/hex_viewer_storage.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#pragma once

#include <stdlib.h>
#include <string.h>
#include <storage/storage.h>
Expand All @@ -17,6 +19,5 @@
void hex_viewer_save_settings(void* context);
void hex_viewer_read_settings(void* context);


bool hex_viewer_open_file(void* context, const char* file_path);
bool hex_viewer_read_file(void* context);

0 comments on commit ae598c3

Please sign in to comment.