version bump
- respond to terminal resize events - update packaging script
This commit is contained in:
parent
40521eb646
commit
03c09e1da6
8
gt.1
8
gt.1
|
@ -5,11 +5,11 @@
|
||||||
.nh
|
.nh
|
||||||
.ad l
|
.ad l
|
||||||
.\" Begin generated content:
|
.\" Begin generated content:
|
||||||
.TH "gt" "1" "2024-07-31" "gt version v0.0.1" "User Commands"
|
.TH "gt" "1" "2024-07-31" "gt version v0.0.2" "User Commands"
|
||||||
.PP
|
.PP
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.PP
|
.PP
|
||||||
gt - manual page for gt version 0.\&0.\&1
|
gt - manual page for gt version 0.\&0.\&2
|
||||||
.PP
|
.PP
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
.PP
|
.PP
|
||||||
|
@ -27,7 +27,7 @@ g(o)t(rash) is a simple, command line program to interface with the XDG Trash.\&
|
||||||
.PP
|
.PP
|
||||||
.SS VERSION:
|
.SS VERSION:
|
||||||
.PP
|
.PP
|
||||||
0.\&0.\&1
|
0.\&0.\&2
|
||||||
.PP
|
.PP
|
||||||
.SS AUTHOR:
|
.SS AUTHOR:
|
||||||
.PP
|
.PP
|
||||||
|
@ -68,7 +68,7 @@ operate on files recursively
|
||||||
.RE
|
.RE
|
||||||
\fB--work-dir\fR dir, \fB-w\fR dir
|
\fB--work-dir\fR dir, \fB-w\fR dir
|
||||||
.RS 4
|
.RS 4
|
||||||
operate on files in this `DIRECTORY`
|
operate on files in this directory
|
||||||
.PP
|
.PP
|
||||||
.RE
|
.RE
|
||||||
\fB--hidden\fR, \fB-h\fR
|
\fB--hidden\fR, \fB-h\fR
|
||||||
|
|
6
gt.1.scd
6
gt.1.scd
|
@ -1,8 +1,8 @@
|
||||||
gt(1) ["gt version v0.0.1" ["User Commands"]]
|
gt(1) ["gt version v0.0.2" ["User Commands"]]
|
||||||
|
|
||||||
# NAME
|
# NAME
|
||||||
|
|
||||||
gt \- manual page for gt version 0.0.1
|
gt \- manual page for gt version 0.0.2
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ g(o)t(rash) is a simple, command line program to interface with the XDG Trash. F
|
||||||
|
|
||||||
## VERSION:
|
## VERSION:
|
||||||
|
|
||||||
0.0.1
|
0.0.2
|
||||||
|
|
||||||
## AUTHOR:
|
## AUTHOR:
|
||||||
|
|
||||||
|
|
2
justfile
2
justfile
|
@ -1,5 +1,5 @@
|
||||||
binary := "gt"
|
binary := "gt"
|
||||||
version := "0.0.1"
|
version := "0.0.2"
|
||||||
build_dir := "bin"
|
build_dir := "bin"
|
||||||
dist_dir := "dist"
|
dist_dir := "dist"
|
||||||
cmd := "."
|
cmd := "."
|
||||||
|
|
2
main.go
2
main.go
|
@ -23,7 +23,7 @@ import (
|
||||||
const (
|
const (
|
||||||
appname string = "gt"
|
appname string = "gt"
|
||||||
appsubtitle string = "xdg trash cli"
|
appsubtitle string = "xdg trash cli"
|
||||||
appversion string = "v0.0.1"
|
appversion string = "v0.0.2"
|
||||||
appdesc string = `A small command line program to interface with the
|
appdesc string = `A small command line program to interface with the
|
||||||
Freedesktop.org / XDG trash specification.
|
Freedesktop.org / XDG trash specification.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue