Merge pull request #32206 from stermic2/develop

feat: Add Julian Day to Auto Naming series
This commit is contained in:
Ejaaz Khan 2025-04-21 10:40:40 +05:30 committed by GitHub
commit 2f77ab7f88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -359,6 +359,8 @@ def parse_naming_series(
part = today.strftime("%d")
elif e == "YYYY":
part = today.strftime("%Y")
elif e == "JJJ":
part = today.strftime("%j")
elif e == "WW":
part = determine_consecutive_week_number(today)
elif e == "timestamp":