Skip to content

Commit

Permalink
Web Crawler - v1.0.1
Browse files Browse the repository at this point in the history
- Updated the settings so they save as intended.
- Added additional error handling.
- Fixed a bug in the text input that prevented users from typing.
  • Loading branch information
jblanked committed Jan 16, 2025
1 parent 70724ca commit 0c11154
Show file tree
Hide file tree
Showing 7 changed files with 116 additions and 443 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.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.0
- Updated the HTTP Method toggle to work as intended.
- Updated FlipperHTTP to the latest version.
Expand Down
2 changes: 1 addition & 1 deletion application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ App(
fap_description="Browse the web, fetch API data, and more.",
fap_author="JBlanked",
fap_weburl="https://github.com/jblanked/WebCrawler-FlipperZero",
fap_version = "1.0",
fap_version = "1.0.1",
)
Binary file modified assets/02-main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
499 changes: 108 additions & 391 deletions callback/web_crawler_callback.c

Large diffs are not rendered by default.

49 changes: 0 additions & 49 deletions callback/web_crawler_callback.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,55 +95,6 @@ void web_crawler_set_file_type_update(void *context);
*/
void web_crawler_set_file_rename_update(void *context);

/**
* @brief Handler for Path configuration item click.
* @param context The context - WebCrawlerApp object.
* @param index The index of the item that was clicked.
*/
void web_crawler_setting_item_path_clicked(void *context, uint32_t index);

/**
* @brief Handler for headers configuration item click.
* @param context The context - WebCrawlerApp object.
* @param index The index of the item that was clicked.
*/
void web_crawler_setting_item_headers_clicked(void *context, uint32_t index);

/**
* @brief Handler for payload configuration item click.
* @param context The context - WebCrawlerApp object.
* @param index The index of the item that was clicked.
*/
void web_crawler_setting_item_payload_clicked(void *context, uint32_t index);

/**
* @brief Handler for SSID configuration item click.
* @param context The context - WebCrawlerApp object.
* @param index The index of the item that was clicked.
*/
void web_crawler_setting_item_ssid_clicked(void *context, uint32_t index);

/**
* @brief Handler for Password configuration item click.
* @param context The context - WebCrawlerApp object.
* @param index The index of the item that was clicked.
*/
void web_crawler_setting_item_password_clicked(void *context, uint32_t index);

/**
* @brief Handler for File Type configuration item click.
* @param context The context - WebCrawlerApp object.
* @param index The index of the item that was clicked.
*/
void web_crawler_setting_item_file_type_clicked(void *context, uint32_t index);

/**
* @brief Handler for File Rename configuration item click.
* @param context The context - WebCrawlerApp object.
* @param index The index of the item that was clicked.
*/
void web_crawler_setting_item_file_rename_clicked(void *context, uint32_t index);

/**
* @brief Handler for File Delete configuration item click.
* @param context The context - WebCrawlerApp object.
Expand Down
2 changes: 1 addition & 1 deletion flip_storage/web_crawler_storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ bool load_char(
{
storage_file_free(file);
furi_record_close(RECORD_STORAGE);
return NULL; // Return false if the file does not exist
return false; // Return false if the file does not exist
}

// Read data into the buffer
Expand Down
2 changes: 1 addition & 1 deletion web_crawler.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "web_crawler_icons.h"

#define TAG "Web Crawler"
#define VERSION_TAG TAG " v1.0"
#define VERSION_TAG TAG " v1.0.1"
extern char *http_method_names[];

// Define the submenu items for our WebCrawler application
Expand Down

0 comments on commit 0c11154

Please sign in to comment.