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:
2
LICENSE
2
LICENSE
@@ -1,7 +1,7 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
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
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
3
Makefile
3
Makefile
@@ -4,7 +4,8 @@ GOFLAGS ?= -v -buildvcs=false -buildmode=exe -ldflags "-w -X `${GO} list`.Date=$
|
||||
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:
|
||||
|
||||
10
aya.1
10
aya.1
@@ -51,6 +51,7 @@ was forked from
|
||||
.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 @@ see
|
||||
.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
|
||||
|
||||
@@ -13,8 +13,8 @@ var (
|
||||
)
|
||||
|
||||
// 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
|
||||
|
||||
Reference in New Issue
Block a user