[FL-2937] Remove resources from API to prevent frequent API version increase (#1935)
* Remove all icons from API * Music player: icons * Signal generator: icons * Bt hid: icons * Weather station: icons * Picopass: icons * File browser test: icons * Example images: documentation * Remove global assets header * Fix picopass Co-authored-by: あく <alleteam@gmail.com>
BIN
applications/plugins/bt_hid_app/assets/ButtonDown_7x4.png
Normal file
After Width: | Height: | Size: 102 B |
BIN
applications/plugins/bt_hid_app/assets/ButtonLeft_4x7.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
applications/plugins/bt_hid_app/assets/ButtonRight_4x7.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
applications/plugins/bt_hid_app/assets/ButtonUp_7x4.png
Normal file
After Width: | Height: | Size: 102 B |
BIN
applications/plugins/bt_hid_app/assets/Ok_btn_9x9.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
applications/plugins/bt_hid_app/assets/Pin_arrow_down_7x9.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
applications/plugins/bt_hid_app/assets/Pin_arrow_left_9x7.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
applications/plugins/bt_hid_app/assets/Pin_arrow_right_9x7.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
applications/plugins/bt_hid_app/assets/Pin_arrow_up_7x9.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
applications/plugins/bt_hid_app/assets/Pin_back_arrow_10x8.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
@@ -11,8 +11,9 @@ App(
|
||||
provides=["music_player_start"],
|
||||
stack_size=2 * 1024,
|
||||
order=20,
|
||||
fap_icon="../../../assets/icons/Archive/music_10px.png",
|
||||
fap_icon="icons/music_10px.png",
|
||||
fap_category="Misc",
|
||||
fap_icon_assets="icons",
|
||||
)
|
||||
|
||||
App(
|
||||
|
BIN
applications/plugins/music_player/icons/music_10px.png
Normal file
After Width: | Height: | Size: 142 B |
@@ -3,7 +3,7 @@
|
||||
#include <furi.h>
|
||||
#include <furi_hal.h>
|
||||
|
||||
#include <assets_icons.h>
|
||||
#include <music_player_icons.h>
|
||||
#include <gui/gui.h>
|
||||
#include <dialogs/dialogs.h>
|
||||
#include <storage/storage.h>
|
||||
|
@@ -17,4 +17,5 @@ App(
|
||||
name="loclass",
|
||||
),
|
||||
],
|
||||
fap_icon_assets="icons",
|
||||
)
|
||||
|
BIN
applications/plugins/picopass/icons/DolphinMafia_115x62.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
applications/plugins/picopass/icons/DolphinNice_96x59.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
applications/plugins/picopass/icons/Nfc_10px.png
Normal file
After Width: | Height: | Size: 304 B |
BIN
applications/plugins/picopass/icons/RFIDDolphinReceive_97x61.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
applications/plugins/picopass/icons/RFIDDolphinSend_97x61.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
@@ -2,6 +2,7 @@
|
||||
|
||||
#include <toolbox/path.h>
|
||||
#include <flipper_format/flipper_format.h>
|
||||
#include <picopass_icons.h>
|
||||
|
||||
#define TAG "PicopassDevice"
|
||||
|
||||
|
@@ -24,6 +24,7 @@
|
||||
|
||||
#include <storage/storage.h>
|
||||
#include <lib/toolbox/path.h>
|
||||
#include <picopass_icons.h>
|
||||
|
||||
#define PICOPASS_TEXT_STORE_SIZE 128
|
||||
|
||||
|
@@ -9,4 +9,5 @@ App(
|
||||
order=50,
|
||||
fap_icon="signal_gen_10px.png",
|
||||
fap_category="Tools",
|
||||
fap_icon_assets="icons",
|
||||
)
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
BIN
applications/plugins/signal_generator/icons/SmallArrowUp_3x5.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
@@ -1,6 +1,7 @@
|
||||
#include "../signal_gen_app_i.h"
|
||||
#include "furi_hal.h"
|
||||
#include <gui/elements.h>
|
||||
#include <signal_generator_icons.h>
|
||||
|
||||
typedef enum {
|
||||
LineIndexChannel,
|
||||
|
BIN
applications/plugins/weather_station/images/Lock_7x8.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 3.5 KiB |
BIN
applications/plugins/weather_station/images/Quest_7x8.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
applications/plugins/weather_station/images/Scanning_123x52.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
applications/plugins/weather_station/images/Unlock_7x8.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
@@ -1,11 +1,10 @@
|
||||
#include "weather_station_receiver.h"
|
||||
#include "../weather_station_app_i.h"
|
||||
#include "weather_station_icons.h"
|
||||
#include <weather_station_icons.h>
|
||||
#include <math.h>
|
||||
|
||||
#include <input/input.h>
|
||||
#include <gui/elements.h>
|
||||
#include <assets_icons.h>
|
||||
#include <m-array.h>
|
||||
|
||||
#define FRAME_HEIGHT 12
|
||||
|