From cbdfbd619dda3e5510eecb3790475654d929c19d Mon Sep 17 00:00:00 2001 From: Terje Io Date: Fri, 7 Mar 2025 21:47:45 +0100 Subject: [PATCH] Updated build date, default VFS mount directory created date. --- changelog.md | 20 ++++++++++++++++++++ grbl.h | 2 +- vfs.c | 4 ++-- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 381ce92..f839695 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,25 @@ ## grblHAL changelog +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. + +--- + 20250305 Core: diff --git a/grbl.h b/grbl.h index 19041e2..7af1126 100644 --- a/grbl.h +++ b/grbl.h @@ -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" diff --git a/vfs.c b/vfs.c index f792ba3..e023f9a 100644 --- a/vfs.c +++ b/vfs.c @@ -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;