Changed.d: emit nightly header

This commit is contained in:
Sebastian Wilzbach 2017-02-27 07:49:08 +01:00
parent a333dda1eb
commit 1b196207fe

View file

@ -332,6 +332,7 @@ int main(string[] args)
{
auto outputFile = "./changelog.dd";
auto nextVersionString = "LATEST";
bool useNightlyTemplate;
auto currDate = Clock.currTime();
auto nextVersionDate = "%s %02d, %04d"
@ -347,6 +348,7 @@ int main(string[] args)
"output|o", &outputFile,
"date", &nextVersionDate,
"version", &nextVersionString,
"nightly", &useNightlyTemplate,
"prev-version", &previousVersion, // this can automatically be detected
"no-text", &hideTextChanges);
@ -377,7 +379,12 @@ Please supply a bugzilla version
w.formattedWrite("$(CHANGELOG_NAV_LAST %s)\n\n", previousVersion);
{
w.formattedWrite("$(VERSION %s, =================================================,\n\n", nextVersionDate);
// NITGHLY_VERSION is a special ddoc macro with e.g. different download links
if (useNightlyTemplate)
w.formattedWrite("$(NIGHTLY_VERSION %s,\n,\n,", nextVersionDate);
else
w.formattedWrite("$(VERSION %s, =================================================,\n\n", nextVersionDate);
scope(exit) w.put(")\n");
if (!hideTextChanges)