Skip to content

Commit 193dba3

Browse files
committed
Squashed 'spi_mem_manager/' changes from aa1a3b3..7de6ad4
7de6ad4 New naming fixes part 1 e305ba8 update ofw plugins, add new plugins 6f1e409 move base pack here REVERT: aa1a3b3 New random file name API fix (#40) REVERT: 081bdc3 Clock, music player, snake game from firmware repo (#19) REVERT: a89cfcb Added fap_version field to all apps (#15) REVERT: 9753f41 [FL-3475] Fix markdown for descriptions (#14) REVERT: c7cf51e Add descriptions for all the faps (#13) REVERT: 889d999 Manifest cleanup REVERT: 96ed981 Added app descriptions (#8) REVERT: 43563d7 Screenshots for app catalog (#6) REVERT: ac8196f Move apps from flipperzero firmware into separate repository git-subtree-dir: spi_mem_manager git-subtree-split: 7de6ad4
1 parent aa1a3b3 commit 193dba3

10 files changed

+3
-45
lines changed

.catalog/README.md

-37
This file was deleted.

.catalog/changelog.md

-4
This file was deleted.

.catalog/screenshots/1.png

-1.45 KB
Binary file not shown.

.catalog/screenshots/2.png

-2.04 KB
Binary file not shown.

.catalog/screenshots/3.png

-1.44 KB
Binary file not shown.

.catalog/screenshots/4.png

-2.5 KB
Binary file not shown.

application.fam

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ App(
66
requires=["gui"],
77
stack_size=1 * 2048,
88
fap_description="Application for reading and writing 25-series SPI memory chips",
9-
fap_version="1.1",
9+
fap_version="1.0",
1010
fap_icon="images/Dip8_10px.png",
1111
fap_category="GPIO",
1212
fap_icon_assets="images",

scenes/spi_mem_scene_about.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#define SPI_MEM_VERSION_APP "0.1.0"
55
#define SPI_MEM_DEVELOPER "DrunkBatya"
6-
#define SPI_MEM_GITHUB "https://github.com/flipperdevices/flipperzero-good-faps"
6+
#define SPI_MEM_GITHUB "https://github.com/flipperdevices/flipperzero-firmware"
77
#define SPI_MEM_NAME "\e#\e! SPI Mem Manager \e!\n"
88
#define SPI_MEM_BLANK_INV "\e#\e! \e!\n"
99

scenes/spi_mem_scene_read_filename.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void spi_mem_scene_read_set_random_filename(SPIMemApp* app) {
1111
size_t filename_start = furi_string_search_rchar(app->file_path, '/');
1212
furi_string_left(app->file_path, filename_start);
1313
}
14-
name_generator_make_auto(app->text_buffer, SPI_MEM_TEXT_BUFFER_SIZE, SPI_MEM_FILE_PREFIX);
14+
name_generator_make_auto(app->text_buffer, SPI_MEM_TEXT_BUFFER_SIZE, TAG);
1515
}
1616

1717
void spi_mem_scene_read_filename_on_enter(void* context) {

spi_mem_app_i.h

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
#define TAG "SPIMem"
2626
#define SPI_MEM_FILE_EXTENSION ".bin"
27-
#define SPI_MEM_FILE_PREFIX "SPIMem"
2827
#define SPI_MEM_FILE_NAME_SIZE 100
2928
#define SPI_MEM_TEXT_BUFFER_SIZE 128
3029

0 commit comments

Comments
 (0)