Skip to content

Commit 8caea36

Browse files
committed
Fixed builds.
Updated changelog.
1 parent 2e68e5a commit 8caea36

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

build/Changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
LuaWebGen
33

4+
v1.3.1 (2021-05-25)
5+
- Fixed non-page templates not getting processed before pages.
6+
- Added minimal example site.
7+
- Printing more verbose info.
8+
49
v1.3 (2021-05-24)
510
- Added JSON as a supported data format.
611
- Added "xml" as a new template file type (for e.g. RSS feeds and sitemaps).

build/build.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ if doRelease then
253253
copyDirectoryRecursive("bin", outputDir.."/bin")
254254
copyDirectoryRecursive("lib", outputDir.."/lib")
255255
copyDirectoryRecursive("srcgen", outputDir.."/srcgen")
256-
copyDirectoryRecursive("testsite", outputDir.."/testsite", {".gitignore","logs","output","temp"--[[,"Build.cmd"]]})
256+
copyDirectoryRecursive("examples", outputDir.."/examples", {".gitignore","logs","output","temp"--[[,"Build.cmd"]]})
257257
copyFile("temp/app.exe", values.exePath)
258258
copyFile("webgen.lua", outputDir.."/webgen.lua")
259259
copyFile("build/Changelog.txt", outputDir.."/_Changelog.txt")
@@ -270,7 +270,7 @@ if doRelease then
270270

271271
copyDirectoryRecursive("lib", outputDir.."/lib")
272272
copyDirectoryRecursive("srcgen", outputDir.."/srcgen")
273-
copyDirectoryRecursive("testsite", outputDir.."/testsite", {".gitignore","logs","output","temp","Build.cmd"})
273+
copyDirectoryRecursive("examples", outputDir.."/examples", {".gitignore","logs","output","temp","Build.cmd"})
274274
copyFile("webgen.lua", outputDir.."/webgen.lua")
275275
copyFile("build/Changelog.txt", outputDir.."/_Changelog.txt")
276276
copyFile("build/README.txt", outputDir.."/_README.txt")

build/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

examples/minimal/Build.cmd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@ECHO OFF
2+
CD /D "%~dp0"
3+
..\..\webgen.exe build

0 commit comments

Comments
 (0)