Module:Sandbox/Dat Hack3r: Difference between revisions
Appearance
Dat Hack3r (talk | contribs) No edit summary |
Dat Hack3r (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
function p.lastReleaseNumber(frame) | function p.lastReleaseNumber(frame) | ||
-- Define the start date of Week 1 | -- Define the start date of Week 1 | ||
local week1Start = os.time{year=2024, month=9, day=8} | local week1Start = os.time{year=2024, month=9, day=8} | ||
-- | -- Get current date | ||
local currentDate = os.time() | |||
local currentDate = os.time | |||
-- Calculate the difference in days from the start of Week 1 to the current date | -- Calculate the difference in days from the start of Week 1 to the current date | ||
local daysDifference = os.difftime(currentDate, week1Start) / (24 * 60 * 60) | local daysDifference = os.difftime(currentDate, week1Start) / (24 * 60 * 60) | ||
-- | -- Return the last Weekly Briefing Release | ||
return "Weekly Briefing Release "..math.floor(daysDifference / 7) + 1 | |||
end | end | ||
return p | return p |