Ayaya, why did I do that again?

git-svn-id: file:///srv/svn/repo/aya/trunk@90 cec141ff-132a-4243-88a5-ce187bd62f94
This commit is contained in:
yakumo.izuru
2025-05-04 02:19:10 +00:00
parent 6d135bb68c
commit 9307af7e09
4 changed files with 12 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2014 Serge Zaitsev <hello@zserge.com> Copyright (c) 2014 Serge Zaitsev <hello@zserge.com>
Copyright (c) 2023 Izuru Yakumo <yakumo.izuru@chaotic.ninja> Copyright (c) 2023 Izuru Yakumo <eternal-servant@yakumo.dev>
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@@ -4,7 +4,8 @@ GOFLAGS ?= -v -buildvcs=false -buildmode=exe -ldflags "-w -X `${GO} list`.Date=$
PREFIX ?= /usr/local PREFIX ?= /usr/local
DATE ?= `date -u +%F` DATE ?= `date -u +%F`
GOOS ?= `${GO} env GOOS` GOOS ?= `${GO} env GOOS`
VERSION ?= 1.0F VERSION ?= 1.0F+${REV}
REV ?= `svn info --show-item revision || git rev-list --all | wc -l`
build: build:
${GO} build ${GOFLAGS} ./cmd/aya ${GO} build ${GOFLAGS} ./cmd/aya
clean: clean:

10
aya.1
View File

@@ -51,6 +51,7 @@ was forked from
.Lk https://git.mills.io/prologic/zs .Lk https://git.mills.io/prologic/zs
due to disgust with how the project due to disgust with how the project
turned out to be. turned out to be.
.Pp
Later on, features from the original Later on, features from the original
program were reimplemented and program were reimplemented and
it took a different path from both. it took a different path from both.
@@ -76,12 +77,15 @@ see
.Nm .Nm
is maintained by is maintained by
.An Izuru Yakumo .An Izuru Yakumo
.Aq Mt yakumo.izuru@chaotic.ninja .Aq Mt eternal-servant@yakumo.dev
.Pp .Pp
.Nm zs .Nm zs
was made by was made by
.An Serge Zaitsev .An Serge Zaitsev
.Aq Mt hello@zserge.com .Aq Mt hello@zserge.com
.Sh BUGS .Sh BUGS
If you find any, please report them to Always seems to generate HTML5 no matter what
.Aq Mt aya-dev@chaotic.ninja DOCTYPE you place in the layout file.
.Pp
This has to be a problem with
.Nm blackfriday

View File

@@ -13,8 +13,8 @@ var (
) )
// PrintVersion only displays the obvious // PrintVersion only displays the obvious
func PrintVersion(){ func PrintVersion() string {
fmt.Printf("%s", Version) return fmt.Sprintf("%s", Version)
} }
// PrintFullVersion display the full version and build // PrintFullVersion display the full version and build