Updated build date, default VFS mount directory created date.

This commit is contained in:
Terje Io
2025-03-07 21:47:45 +01:00
parent c547f540f7
commit cbdfbd619d
3 changed files with 23 additions and 3 deletions

View File

@@ -1,5 +1,25 @@
## grblHAL changelog
<a name="20250307">Build 20250307
Core:
* Updated build date, default VFS mount directory created date.
Drivers:
* ESP32: added hook for adding 3rd party plugins to build without touching upstream code.
* STM32F4xx: removed some obsoleted preprocessor code. Ref. issue [#219](https://github.com/grblHAL/STM32F4xx/issues/219).
Plugins:
* Networking: updated ftp daemon to properly handle root file system mount/unmount events. Added ftp support for changing read-only attribute \(`W` - owner only\).
* SD card, littlefs: now blocks deletion of read-only files.
---
<a name="20250305">20250305
Core:

2
grbl.h
View File

@@ -42,7 +42,7 @@
#else
#define GRBL_VERSION "1.1f"
#endif
#define GRBL_BUILD 20250305
#define GRBL_BUILD 20250307
#define GRBL_URL "https://github.com/grblHAL"

4
vfs.c
View File

@@ -560,8 +560,8 @@ static bool vfs_get_time (struct tm *time)
{
memset(time, 0, sizeof(struct tm));
// 2024-01-01:00:00:00
time->tm_year = 2024 - 1900;
// 2025-01-01:00:00:00
time->tm_year = 2025 - 1900;
time->tm_mday = 1;
return true;