Release 1.09
Update version number and update documentation * Add Bash completion script (#60) * Support WSL detection (#61) * Add introspect command (used by completion)
This commit is contained in:
parent
356c47a19f
commit
246eab8b52
5 changed files with 20 additions and 4 deletions
5
CHANGES
5
CHANGES
|
@ -1,3 +1,8 @@
|
||||||
|
1.09
|
||||||
|
* Add Bash completion script (#60)
|
||||||
|
* Support WSL detection (#61)
|
||||||
|
* Add introspect command (used by completion)
|
||||||
|
|
||||||
1.08
|
1.08
|
||||||
* Fix bug alternates based on `CLASS` (#51)
|
* Fix bug alternates based on `CLASS` (#51)
|
||||||
* Support globs and paths with space in .yadm/encrypt (#53, #54)
|
* Support globs and paths with space in .yadm/encrypt (#53, #54)
|
||||||
|
|
2
yadm
2
yadm
|
@ -19,7 +19,7 @@ if [ -z "$BASH_VERSION" ]; then
|
||||||
[ "$YADM_TEST" != 1 ] && exec bash "$0" "$@"
|
[ "$YADM_TEST" != 1 ] && exec bash "$0" "$@"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
VERSION=1.08
|
VERSION=1.09
|
||||||
|
|
||||||
YADM_WORK="$HOME"
|
YADM_WORK="$HOME"
|
||||||
YADM_DIR="$HOME/.yadm"
|
YADM_DIR="$HOME/.yadm"
|
||||||
|
|
2
yadm.1
2
yadm.1
|
@ -1,5 +1,5 @@
|
||||||
." vim: set spell so=8:
|
." vim: set spell so=8:
|
||||||
.TH yadm 1 "3 April 2017" "1.08"
|
.TH yadm 1 "4 May 2017" "1.09"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
yadm \- Yet Another Dotfiles Manager
|
yadm \- Yet Another Dotfiles Manager
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
7
yadm.md
7
yadm.md
|
@ -31,6 +31,8 @@
|
||||||
|
|
||||||
yadm perms
|
yadm perms
|
||||||
|
|
||||||
|
yadm introspect category
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
yadm is a tool for managing a collection of files across multiple com-
|
yadm is a tool for managing a collection of files across multiple com-
|
||||||
puters, using a shared Git repository. In addition, yadm provides a
|
puters, using a shared Git repository. In addition, yadm provides a
|
||||||
|
@ -144,6 +146,11 @@
|
||||||
all managed files to be listed. Otherwise, the list will only
|
all managed files to be listed. Otherwise, the list will only
|
||||||
include files from the current directory or below.
|
include files from the current directory or below.
|
||||||
|
|
||||||
|
introspect category
|
||||||
|
Report internal yadm data. Supported categories are commands,
|
||||||
|
configs, repo, and switches. The purpose of introspection is to
|
||||||
|
support command line completion.
|
||||||
|
|
||||||
perms Update permissions as described in the PERMISSIONS section. It
|
perms Update permissions as described in the PERMISSIONS section. It
|
||||||
is usually unnecessary to run this command, as yadm automati-
|
is usually unnecessary to run this command, as yadm automati-
|
||||||
cally processes permissions by default. This automatic behavior
|
cally processes permissions by default. This automatic behavior
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Summary: Yet Another Dotfiles Manager
|
Summary: Yet Another Dotfiles Manager
|
||||||
Name: yadm
|
Name: yadm
|
||||||
Version: 1.08
|
Version: 1.09
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
URL: https://github.com/TheLocehiliosan/yadm
|
URL: https://github.com/TheLocehiliosan/yadm
|
||||||
License: GPLv3
|
License: GPLv3
|
||||||
|
@ -34,9 +34,13 @@ install -m 644 yadm.1 ${RPM_BUILD_ROOT}%{_mandir}/man1
|
||||||
%attr(755,root,root) %{_bindir}/yadm
|
%attr(755,root,root) %{_bindir}/yadm
|
||||||
%attr(644,root,root) %{_mandir}/man1/*
|
%attr(644,root,root) %{_mandir}/man1/*
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc CHANGES CONTRIBUTORS README.md
|
%doc CHANGES CONTRIBUTORS README.md completion/yadm.bash_completion
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu May 4 2017 Tim Byrne <sultan@locehilios.com> - 1.09-1
|
||||||
|
- Bump version to 1.09
|
||||||
|
- Add yadm.bash_completion
|
||||||
|
|
||||||
* Mon Apr 3 2017 Tim Byrne <sultan@locehilios.com> - 1.08-1
|
* Mon Apr 3 2017 Tim Byrne <sultan@locehilios.com> - 1.08-1
|
||||||
- Bump version to 1.08
|
- Bump version to 1.08
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue