Asset packs in FAPs + cleanup unused icons

This commit is contained in:
Willy-JL
2023-06-29 02:03:32 +02:00
parent 3cbf932bd1
commit 8f37a6a79d
237 changed files with 268 additions and 85 deletions

View File

@@ -11,5 +11,4 @@ App(
stack_size=1 * 1024,
order=130,
fap_category="Debug",
fap_libs=["assets"],
)

View File

@@ -9,5 +9,4 @@ App(
order=2,
# fap_icon="",
fap_category="Misc",
fap_libs=["assets"],
)

View File

@@ -8,6 +8,5 @@ App(
stack_size=2 * 1024,
fap_icon="bpm_10px.png",
fap_category="Media",
fap_icon_assets="icons",
order=15,
)

View File

@@ -4,7 +4,7 @@
#include <gui/gui.h>
#include <input/input.h>
#include <stdlib.h>
#include "bpm_tapper_icons.h"
#include "assets_icons.h"
typedef enum {
EventTypeTick,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -30,6 +30,7 @@ typedef unsigned char byte;
#include <storage/storage.h>
#include <lib/toolbox/path.h>
#include <brainfuck_icons.h>
#include <assets_icons.h>
#include <storage/storage.h>
#include <stream/stream.h>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -7,6 +7,5 @@ App(
"gui",
],
fap_category="Misc",
fap_icon="icons/counter_icon.png",
fap_icon_assets="icons",
fap_icon="counter_icon.png",
)

View File

@@ -2,7 +2,6 @@
#include <gui/gui.h>
#include <input/input.h>
#include <stdlib.h>
#include <counter_icons.h>
#define MAX_COUNT 99
#define BOXTIME 2

View File

Before

Width:  |  Height:  |  Size: 233 B

After

Width:  |  Height:  |  Size: 233 B

View File

@@ -15,6 +15,7 @@
#include "usb/dap_v2_usb.h"
#include <dialogs/dialogs.h>
#include "dap_link_icons.h"
#include "assets_icons.h"
/***************************************************************************/
/****************************** DAP COMMON *********************************/
@@ -524,4 +525,4 @@ int32_t dap_link_app(void* p) {
dap_app_free(app);
return 0;
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -7,7 +7,6 @@ App(
requires=["gui"],
stack_size=1 * 1024,
order=90,
fap_icon_assets="assets",
fap_icon="icon.png",
fap_category="GPIO",
fap_description="ESP32-CAM app to stream a message in morse using the powerful flashlight. [Unplug the USB cable to test with Mayhem]",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -1,6 +1,6 @@
#include "uart_text_input.h"
#include <gui/elements.h>
#include "mayhem_morseflash_icons.h"
#include "assets_icons.h"
#include <furi.h>
struct UART_TextInput {

View File

@@ -9,5 +9,4 @@ App(
order=175,
fap_icon="etch-a-sketch-icon.png",
fap_category="Media",
fap_libs=["assets"],
)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -7,6 +7,7 @@
#include <storage/storage.h>
#include <string.h>
#include "flipbip_icons.h"
#include "assets_icons.h"
#include "../helpers/flipbip_haptic.h"
#include "../helpers/flipbip_led.h"
#include "../helpers/flipbip_string.h"

View File

@@ -4,6 +4,7 @@
#include <input/input.h>
#include <gui/elements.h>
#include "flipbip_icons.h"
#include "assets_icons.h"
struct FlipBipStartscreen {
View* view;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -2,6 +2,7 @@
#include <furi_hal.h>
#include <gui/gui.h>
#include <i2c_tools_icons.h>
#include <assets_icons.h>
#define APP_NAME "I2C Tools"
#define SCAN_MENU_TEXT "Scan"
@@ -35,4 +36,4 @@ typedef struct {
void draw_main_view(Canvas* canvas, i2cMainView* main_view);
i2cMainView* i2c_main_view_alloc();
void i2c_main_view_free(i2cMainView* main_view);
void i2c_main_view_free(i2cMainView* main_view);

View File

@@ -2,8 +2,9 @@
#include <furi_hal.h>
#include <gui/gui.h>
#include <i2c_tools_icons.h>
#include <assets_icons.h>
#include "../i2cscanner.h"
#define SCAN_TEXT "SCAN"
void draw_scanner_view(Canvas* canvas, i2cScanner* i2c_scanner);
void draw_scanner_view(Canvas* canvas, i2cScanner* i2c_scanner);

View File

@@ -2,8 +2,9 @@
#include <furi_hal.h>
#include <gui/gui.h>
#include <i2c_tools_icons.h>
#include <assets_icons.h>
#include "../i2csender.h"
#define SEND_TEXT "SEND"
void draw_sender_view(Canvas* canvas, i2cSender* i2c_sender);
void draw_sender_view(Canvas* canvas, i2cSender* i2c_sender);

View File

@@ -2,8 +2,9 @@
#include <furi_hal.h>
#include <gui/gui.h>
#include <i2c_tools_icons.h>
#include <assets_icons.h>
#include "../i2csniffer.h"
#define SNIFF_TEXT "SNIFF"
void draw_sniffer_view(Canvas* canvas, i2cSniffer* i2c_sniffer);
void draw_sniffer_view(Canvas* canvas, i2cSniffer* i2c_sniffer);

View File

@@ -7,7 +7,6 @@ App(
requires=["gui"],
stack_size=1 * 1024,
order=50,
fap_libs=["assets"],
fap_category="GPIO",
fap_icon="icon.png",
)

View File

@@ -12,7 +12,7 @@
#include <toolbox/stream/file_stream.h>
#include <hex_editor_icons.h>
// #include <assets_icons.h>
#include <assets_icons.h>
#define TAG "HexEditor"
@@ -354,4 +354,4 @@ int32_t hex_editor_app(void* p) {
hex_editor_free(hex_editor);
return 0;
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 657 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -25,6 +25,9 @@
#include "views/hid_tikshorts.h"
#include "views/hid_mouse_clicker.h"
#include "hid_icons.h"
#include <assets_icons.h>
#include "hid_path.h"
typedef enum {

View File

@@ -3,7 +3,6 @@
#include <gui/elements.h>
#include <gui/icon_i.h>
#include "../hid.h"
#include "hid_icons.h"
#define TAG "HidKeyboard"

View File

@@ -2,8 +2,6 @@
#include <gui/elements.h>
#include "../hid.h"
#include "hid_icons.h"
#define TAG "HidKeynote"
struct HidKeynote {

View File

@@ -5,8 +5,6 @@
#include <gui/elements.h>
#include "../hid.h"
#include "hid_icons.h"
#define TAG "HidMedia"
struct HidMedia {

View File

@@ -2,8 +2,6 @@
#include <gui/elements.h>
#include "../hid.h"
#include "hid_icons.h"
#define TAG "HidMouse"
struct HidMouse {

View File

@@ -2,8 +2,6 @@
#include <gui/elements.h>
#include "../hid.h"
#include "hid_icons.h"
#define TAG "HidMouseClicker"
#define DEFAULT_CLICK_RATE 1
#define MAXIMUM_CLICK_RATE 60

View File

@@ -2,8 +2,6 @@
#include <gui/elements.h>
#include "../hid.h"
#include "hid_icons.h"
#define TAG "HidMouseJiggler"
struct HidMouseJiggler {

View File

@@ -3,7 +3,6 @@
#include <gui/elements.h>
#include <gui/icon_i.h>
#include "../hid.h"
#include "hid_icons.h"
#define TAG "HidNumpad"

View File

@@ -2,8 +2,6 @@
#include "../hid.h"
#include <gui/elements.h>
#include "hid_icons.h"
#define TAG "HidTikShorts"
struct HidTikShorts {

View File

@@ -10,5 +10,4 @@ App(
],
fap_category="Tools",
fap_icon="ir_10px.png",
fap_icon_assets="images",
)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 299 B

View File

@@ -6,7 +6,7 @@
#include <gui/gui.h>
#include <input/input.h>
#include <dialogs/dialogs.h>
#include <ir_remote_icons.h>
#include <assets_icons.h>
#include <dolphin/dolphin.h>
#include <notification/notification.h>

View File

@@ -8,7 +8,6 @@ App(
],
fap_icon="metronome_icon.png",
fap_category="Media",
fap_icon_assets="images",
stack_size=2 * 1024,
order=20,
)

View File

@@ -1,6 +1,6 @@
#include <gui/canvas.h>
#include <gui/icon_i.h>
#include <metronome_icons.h>
#include <assets_icons.h>
//lib can only do bottom left/right
void elements_button_top_left(Canvas* canvas, const char* str) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

View File

@@ -9,7 +9,7 @@ App(
"storage",
],
stack_size=1 * 1024,
fap_icon="mfkey.png",
fap_icon="images/mfkey.png",
fap_category="NFC",
fap_author="noproto",
fap_icon_assets="images",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

View File

@@ -9,7 +9,6 @@ App(
],
stack_size=4 * 1024,
order=30,
fap_icon="images/mifare_fuzzer_10px.png",
fap_icon="mifare_fuzzer_10px.png",
fap_category="NFC",
fap_icon_assets="images",
)

View File

Before

Width:  |  Height:  |  Size: 139 B

After

Width:  |  Height:  |  Size: 139 B

View File

@@ -11,7 +11,6 @@ App(
order=60,
fap_icon="mouse_10px.png",
fap_category="GPIO",
fap_icon_assets="images",
fap_private_libs=[
Lib(
name="nrf24",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 576 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 299 B

View File

@@ -10,7 +10,7 @@
#include <furi_hal_resources.h>
#include <nrf24.h>
#include "mousejacker_ducky.h"
#include <nrf24_mouse_jacker_icons.h>
#include <assets_icons.h>
#include <dolphin/dolphin.h>
#define TAG "mousejacker"
@@ -112,7 +112,7 @@ static bool open_ducky_script(Stream* stream, PluginState* plugin_state) {
DialogsFileBrowserOptions browser_options;
dialog_file_browser_set_basic_options(
&browser_options, MOUSEJACKER_APP_PATH_EXTENSION, &I_badusb_10px);
&browser_options, MOUSEJACKER_APP_PATH_EXTENSION, &I_badkb_10px);
browser_options.hide_ext = false;
bool ret = dialog_file_browser_show(dialogs, path, path, &browser_options);

View File

@@ -11,7 +11,7 @@ App(
"notification",
],
stack_size=2 * 1024,
fap_icon="icons/ibutt_10px.png",
fap_icon="ibutt_10px.png",
fap_category="Tools",
fap_private_libs=[
Lib(

View File

@@ -21,6 +21,7 @@
#include <flipper_format/flipper_format_i.h>
#include "fuzzer_icons.h"
#include <assets_icons.h>
#define FUZZ_TIME_DELAY_MAX (80)
@@ -52,4 +53,4 @@ typedef struct {
FuzzerWorker* worker;
FuzzerPayload* payload;
} PacsFuzzerApp;
} PacsFuzzerApp;

View File

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -12,7 +12,6 @@ App(
stack_size=2 * 1024,
order=45,
fap_icon="music_10px.png",
fap_icon_assets="icons",
fap_category="Media",
)

Some files were not shown because too many files have changed in this diff Show More