# HG changeset patch # User yakumo.izuru # Date 1746325150 0 # Node ID 744541fee713c692715cc0553be30da650f1f5ea # Parent 01ae2ad18ed1faa7339f418726a4a0c0a99a21c9 Ayaya, why did I do that again? diff -r 01ae2ad18ed1 -r 744541fee713 LICENSE --- a/LICENSE Thu Apr 17 14:06:12 2025 +0000 +++ b/LICENSE Sun May 04 02:19:10 2025 +0000 @@ -1,7 +1,7 @@ The MIT License (MIT) Copyright (c) 2014 Serge Zaitsev -Copyright (c) 2023 Izuru Yakumo +Copyright (c) 2023 Izuru Yakumo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff -r 01ae2ad18ed1 -r 744541fee713 Makefile --- a/Makefile Thu Apr 17 14:06:12 2025 +0000 +++ b/Makefile Sun May 04 02:19:10 2025 +0000 @@ -4,7 +4,8 @@ PREFIX ?= /usr/local DATE ?= `date -u +%F` GOOS ?= `${GO} env GOOS` -VERSION ?= 1.0F +VERSION ?= 1.0F+${REV} +REV ?= `svn info --show-item revision || git rev-list --all | wc -l` build: ${GO} build ${GOFLAGS} ./cmd/aya clean: diff -r 01ae2ad18ed1 -r 744541fee713 aya.1 --- a/aya.1 Thu Apr 17 14:06:12 2025 +0000 +++ b/aya.1 Sun May 04 02:19:10 2025 +0000 @@ -51,6 +51,7 @@ .Lk https://git.mills.io/prologic/zs due to disgust with how the project turned out to be. +.Pp Later on, features from the original program were reimplemented and it took a different path from both. @@ -76,12 +77,15 @@ .Nm is maintained by .An Izuru Yakumo -.Aq Mt yakumo.izuru@chaotic.ninja +.Aq Mt eternal-servant@yakumo.dev .Pp .Nm zs was made by .An Serge Zaitsev .Aq Mt hello@zserge.com .Sh BUGS -If you find any, please report them to -.Aq Mt aya-dev@chaotic.ninja +Always seems to generate HTML5 no matter what +DOCTYPE you place in the layout file. +.Pp +This has to be a problem with +.Nm blackfriday diff -r 01ae2ad18ed1 -r 744541fee713 version.go --- a/version.go Thu Apr 17 14:06:12 2025 +0000 +++ b/version.go Sun May 04 02:19:10 2025 +0000 @@ -13,8 +13,8 @@ ) // PrintVersion only displays the obvious -func PrintVersion(){ - fmt.Printf("%s", Version) +func PrintVersion() string { + return fmt.Sprintf("%s", Version) } // PrintFullVersion display the full version and build