all repos — hastysite @ 228a143403effea2164c62c10a236dc50aa7f91e

A high-performance static site generator.

Now storing package metadata as strings.
h3rald h3rald@h3rald.com
Tue, 19 May 2026 14:33:33 +0200
commit

228a143403effea2164c62c10a236dc50aa7f91e

parent

ab9e4c37a9066d809f021557972daf81aebef79c

4 files changed, 12 insertions(+), 7 deletions(-)

jump to
M .gitignore.gitignore

@@ -8,3 +8,6 @@ hastysite

hastysite.exe HastySite_UserGuide.htm .DS_Store +nimble.develop +nimble.paths +nimbledeps
A config.nims

@@ -0,0 +1,4 @@

+# begin Nimble config (version 2) +when withDir(thisDir(), system.fileExists("nimble.paths")): + include "nimble.paths" +# end Nimble config
M hastysite.nimblehastysite.nimble

@@ -1,16 +1,14 @@

-import hastysitepkg/config - # Package -version = pkgVersion -author = pkgAuthor -description = pkgDescription +version = "1.4.1" +author = "Fabio Cevasco" +description = "A small but powerful static site generator" license = "MIT" bin = @["hastysite"] installDirs = @["minpkg", "hastysitepkg"] # Deps requires "nim >= 2.2.0 & <= 3.0.0" -requires "min >= 0.45.0" +requires "min >= 0.47.0" requires "checksums >= 0.2.1" requires "hastyscribe >= 2.1.0" requires "mustache >= 0.4.3"
M hastysitepkg/config.nimhastysitepkg/config.nim

@@ -1,5 +1,5 @@

const pkgName* = "HastySite" - pkgVersion* = "1.4.0" + pkgVersion* = "1.4.1" pkgDescription* = "A small but powerful static site generator" pkgAuthor* = "Fabio Cevasco"