Skip to content

Commit 0c11154

Browse files
committed
Web Crawler - v1.0.1
- Updated the settings so they save as intended. - Added additional error handling. - Fixed a bug in the text input that prevented users from typing.
1 parent 70724ca commit 0c11154

File tree

7 files changed

+116
-443
lines changed

7 files changed

+116
-443
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.1
2+
- Updated the settings so they save as intended.
3+
- Added additional error handling.
4+
- Fixed a bug in the text input that prevented users from typing.
5+
16
## 1.0
27
- Updated the HTTP Method toggle to work as intended.
38
- Updated FlipperHTTP to the latest version.

application.fam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ App(
1010
fap_description="Browse the web, fetch API data, and more.",
1111
fap_author="JBlanked",
1212
fap_weburl="https://github.com/jblanked/WebCrawler-FlipperZero",
13-
fap_version = "1.0",
13+
fap_version = "1.0.1",
1414
)

assets/02-main.png

15 Bytes
Loading

callback/web_crawler_callback.c

Lines changed: 108 additions & 391 deletions
Large diffs are not rendered by default.

callback/web_crawler_callback.h

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -95,55 +95,6 @@ void web_crawler_set_file_type_update(void *context);
9595
*/
9696
void web_crawler_set_file_rename_update(void *context);
9797

98-
/**
99-
* @brief Handler for Path configuration item click.
100-
* @param context The context - WebCrawlerApp object.
101-
* @param index The index of the item that was clicked.
102-
*/
103-
void web_crawler_setting_item_path_clicked(void *context, uint32_t index);
104-
105-
/**
106-
* @brief Handler for headers configuration item click.
107-
* @param context The context - WebCrawlerApp object.
108-
* @param index The index of the item that was clicked.
109-
*/
110-
void web_crawler_setting_item_headers_clicked(void *context, uint32_t index);
111-
112-
/**
113-
* @brief Handler for payload configuration item click.
114-
* @param context The context - WebCrawlerApp object.
115-
* @param index The index of the item that was clicked.
116-
*/
117-
void web_crawler_setting_item_payload_clicked(void *context, uint32_t index);
118-
119-
/**
120-
* @brief Handler for SSID configuration item click.
121-
* @param context The context - WebCrawlerApp object.
122-
* @param index The index of the item that was clicked.
123-
*/
124-
void web_crawler_setting_item_ssid_clicked(void *context, uint32_t index);
125-
126-
/**
127-
* @brief Handler for Password configuration item click.
128-
* @param context The context - WebCrawlerApp object.
129-
* @param index The index of the item that was clicked.
130-
*/
131-
void web_crawler_setting_item_password_clicked(void *context, uint32_t index);
132-
133-
/**
134-
* @brief Handler for File Type configuration item click.
135-
* @param context The context - WebCrawlerApp object.
136-
* @param index The index of the item that was clicked.
137-
*/
138-
void web_crawler_setting_item_file_type_clicked(void *context, uint32_t index);
139-
140-
/**
141-
* @brief Handler for File Rename configuration item click.
142-
* @param context The context - WebCrawlerApp object.
143-
* @param index The index of the item that was clicked.
144-
*/
145-
void web_crawler_setting_item_file_rename_clicked(void *context, uint32_t index);
146-
14798
/**
14899
* @brief Handler for File Delete configuration item click.
149100
* @param context The context - WebCrawlerApp object.

flip_storage/web_crawler_storage.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ bool load_char(
445445
{
446446
storage_file_free(file);
447447
furi_record_close(RECORD_STORAGE);
448-
return NULL; // Return false if the file does not exist
448+
return false; // Return false if the file does not exist
449449
}
450450

451451
// Read data into the buffer

web_crawler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "web_crawler_icons.h"
99

1010
#define TAG "Web Crawler"
11-
#define VERSION_TAG TAG " v1.0"
11+
#define VERSION_TAG TAG " v1.0.1"
1212
extern char *http_method_names[];
1313

1414
// Define the submenu items for our WebCrawler application

0 commit comments

Comments
 (0)