dar-backup 0.6.20.1__py3-none-any.whl → 0.7.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dar_backup/Changelog.md +29 -0
- dar_backup/README.md +720 -260
- dar_backup/__about__.py +6 -1
- dar_backup/clean_log.py +2 -0
- dar_backup/cleanup.py +4 -1
- dar_backup/command_runner.py +2 -0
- dar_backup/config_settings.py +2 -0
- dar_backup/dar-backup.conf +4 -2
- dar_backup/dar-backup.conf.j2 +60 -0
- dar_backup/dar_backup.py +30 -11
- dar_backup/dar_backup_systemd.py +3 -0
- dar_backup/demo.py +154 -81
- dar_backup/demo_backup_def.j2 +62 -0
- dar_backup/exceptions.py +2 -0
- dar_backup/installer.py +149 -19
- dar_backup/manager.py +6 -3
- dar_backup/rich_progress.py +3 -0
- dar_backup/util.py +68 -8
- {dar_backup-0.6.20.1.dist-info → dar_backup-0.7.1.dist-info}/METADATA +722 -261
- dar_backup-0.7.1.dist-info/RECORD +25 -0
- {dar_backup-0.6.20.1.dist-info → dar_backup-0.7.1.dist-info}/entry_points.txt +1 -0
- dar_backup-0.6.20.1.dist-info/RECORD +0 -23
- {dar_backup-0.6.20.1.dist-info → dar_backup-0.7.1.dist-info}/WHEEL +0 -0
- {dar_backup-0.6.20.1.dist-info → dar_backup-0.7.1.dist-info}/licenses/LICENSE +0 -0
dar_backup/Changelog.md
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
<!-- markdownlint-disable MD024 -->
|
|
2
2
|
# dar-backup Changelog
|
|
3
3
|
|
|
4
|
+
## v2-beta-0.6.21 - not yet released
|
|
5
|
+
|
|
6
|
+
Github link: [v2-beta-0.7.1](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.7.1/v2)
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- Quick Guide with reworked `demo` program.
|
|
11
|
+
- util.get_invocation_command_line() used to print command line.
|
|
12
|
+
- Installer to setup directories and catalog databases as prescribed in config file.
|
|
13
|
+
- Documentation on dar-backup --selection option improved.
|
|
14
|
+
- README.md clean up, signing section now with multiple collabsible sections.
|
|
15
|
+
- Install instructions fixed after trial in fresh utuntu VM.
|
|
16
|
+
- Small license display refac.
|
|
17
|
+
- .deb package for Ubuntu can now be built (draft quality)
|
|
18
|
+
|
|
19
|
+
-- DO NOT use unless for testing on an empty VM
|
|
20
|
+
-- no real checking if this package aligns with Ubuntu's package requirements
|
|
21
|
+
-- package `inputimeout` is installed via pip as Ubuntu does not have a .deb
|
|
22
|
+
|
|
23
|
+
- SPDX license header added to many files
|
|
24
|
+
- Action + program to capture cloning stats and store them in v2/doc directory. Includes a badge.
|
|
25
|
+
|
|
26
|
+
-- annotate new daily max number of clones
|
|
27
|
+
-- Celebration badge when number of clones numbers are hit (just for fun)
|
|
28
|
+
|
|
29
|
+
- Action + program to generate 12weeks cloning dashboard (a PNG) with annotation
|
|
30
|
+
- Tweaked the auto completion setup in .bashrc, it stopped working for me unknown reasons (needs some looking into)
|
|
31
|
+
- --verbose now affects the startup banner. Now it is printed only if --verbose is given
|
|
32
|
+
|
|
4
33
|
## v2-beta-0.6.20.1 - 2025-05-04
|
|
5
34
|
|
|
6
35
|
Github link: [v2-beta-0.6.20.1](https://github.com/per2jensen/dar-backup/tree/v2-beta-0.6.20.1/v2)
|