Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Apr 23, 2023
1 parent 44f303b commit 0b8320d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
3 changes: 0 additions & 3 deletions doc/accessories.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,3 @@ from each run into a single accumulating log file. To arrange this you can use

This accumulates the log files as they are created to
~/.local/share/emborg/{config_name}.log.nt.



12 changes: 9 additions & 3 deletions doc/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ Latest development release
| Version: 1.35.3
| Released: 2023-04-22
- :ref:`due <due>` command now reports the latest :ref:`prune <prune>` and
:ref:`compact <compact>` operations as well as the latest :ref:`create
<create>` operation.
- :ref:`due <due>` and :ref:`info <info>` commands now report the latest
:ref:`prune <prune>` and :ref:`compact <compact>` operations as well as the
latest :ref:`create <create>` operation.

.. note::

If you use :ref:`emborg-overdue <client_overdue>` from the client you will
need to change the paths you specify in *overdue.conf*. They now need to
end in ``.latest.nt`` rather than ``.lastbackup``.


1.35 (2023-03-20)
Expand Down
2 changes: 1 addition & 1 deletion emborg/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ def run(cls, command, args, settings, options):
latest = read_latest(settings.date_file)
date = latest.get('create')
if date:
output(f" last backed up: {date}, {when(date)} ago")
output(f" last create: {date}, {when(date)} ago")
date = latest.get('prune')
if date:
output(f" last prune: {date}, {when(date)} ago")
Expand Down

0 comments on commit 0b8320d

Please sign in to comment.