Skip to content

Commit

Permalink
Fix ESP32 SPIFFS file upload issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Mar 4, 2023
1 parent 443f256 commit 4c0023c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ESP Mail Client",
"version": "3.0.2",
"version": "3.0.3",
"keywords": "communication, email, imap, smtp, esp32, esp8266, samd, arduino",
"description": "Arduino E-Mail Client Library to send, read and get incoming email notification for ESP32, ESP8266 and SAMD21 devices. The library also supported other Arduino Devices using Clients interfaces e.g. WiFiClient, EthernetClient, and GSMClient.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=ESP Mail Client

version=3.0.2
version=3.0.3

author=Mobizt

Expand Down
2 changes: 1 addition & 1 deletion src/ESP_Mail_Client_Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

#ifndef ESP_MAIL_VERSION

#define ESP_MAIL_VERSION "3.0.2"
#define ESP_MAIL_VERSION "3.0.3"

#endif
6 changes: 3 additions & 3 deletions src/extras/MB_FS.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* The MB_FS, filesystems wrapper class v1.0.14
* The MB_FS, filesystems wrapper class v1.0.15
*
* This wrapper class is for SD and Flash filesystems interface which supports SdFat (//https://github.com/greiman/SdFat)
*
* Created March 1, 2023
* Created March 5, 2023
*
* The MIT License (MIT)
* Copyright (c) 2023 K. Suwatchai (Mobizt)
Expand Down Expand Up @@ -78,7 +78,7 @@
#include "SPI.h"

#if defined(ESP32) && __has_include(<sys/stat.h>)
#if MBFS_FLASH_FS == LittleFS
#ifdef _LITTLEFS_H_
#define MB_FS_USE_POSIX_STAT
#include <sys/stat.h>
namespace mb_fs_ns
Expand Down

0 comments on commit 4c0023c

Please sign in to comment.