Skip to content

Commit d960fd2

Browse files
committed
Minor fix
1 parent 0fc8f03 commit d960fd2

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

FtpServer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1360,7 +1360,7 @@ bool FtpServer::doList()
13601360
long fz = long( dir.fileSize());
13611361
// const char* fn = dir.fileName().c_str();
13621362
String aza = dir.fileName();
1363-
const char* fn = aza.c_str(); Serial.printf("test %s ", fn);
1363+
const char* fn = aza.c_str(); //Serial.printf("test %s ", fn);
13641364

13651365
// data.print( long( dir.fileSize()) );
13661366
// data.print( F(",\t") );

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- Wio Terminal (SdFat 2, Seed SD, and native FAT)
1212

1313
#### Changelog
14+
- 2022-05-21 2.1.1 Minor fix
1415
- 2022-03-30 2.1.0 Add UTF8 support and enabled It by default (Thanks to @plaber)
1516
- 2022-03-30 2.0.0 Complete support for STM32 with SD and SPI Flash minor bux fix and HELP command support
1617
- 2022-03-17 1.3.0 Fix enc28j60 and w5500 support and restructuring for local settings

library.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SimpleFTPServer",
33
"description": "Simple FTP Server for using esp8266, esp32, STM32, Arduino",
4-
"keywords": "arduino, esp8266, esp32, stm32, ftp, ftpserver, spiffs, Fat, LittleFS, Ethernet, WiFi",
4+
"keywords": "arduino, esp8266, esp32, stm32, ftp, FtpServer, spiffs, Fat, LittleFS, Ethernet, WiFi, WiFiNINA",
55
"homepage": "https://www.mischianti.org/category/my-libraries/simple-ftp-server/",
66
"authors":
77
{
@@ -16,6 +16,6 @@
1616
},
1717
"url": "https://www.mischianti.org",
1818
"frameworks": "Arduino",
19-
"version": "2.1.0",
19+
"version": "2.1.1",
2020
"platforms": "*"
2121
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SimpleFTPServer
2-
version=2.1.0
2+
version=2.1.1
33
author=Renzo Mischianti <renzo.mischianti@gmail.com>
44
maintainer=Renzo Mischianti <renzo.mischianti@gmail.com>
55
sentence=Simple FTP server for esp8266, esp32 and Arduino

0 commit comments

Comments
 (0)