Commit Graph

561 Commits

Author SHA1 Message Date
Manu c963aaf3f2
Pin tzlocal version required for apscheduler (#1085) 2021-10-23 08:33:21 +04:00
Frederic Brodbeck 9bad152a80
Show backup size with excludes applied. By @freder (#961) 2021-10-18 15:41:37 +04:00
XXXBold 9919070e49
Add tooltip containing path name. By @XXXBold (#1072) 2021-10-13 18:40:19 +04:00
Bastien 54d8bbe6b1
Implement multiple queues. By @bastiencyr (#1045)
Scheduler now has the ability to run jobs on multiple repositories concurrently and run multiple jobs on one repo (by queuing them).

For each repository, there is one queue. I have represented a queue by a 'site'. Between sites (ie repository), tasks run concurrently. On one site, tasks run one by one. The user also run tasks by adding them to the queue but he can't run multiple backups because start backup button is disabled when a job is running.
2021-10-04 15:31:41 +04:00
Manu 06dc2489d7
Add new SSH key error (#1070) 2021-09-29 17:10:37 +04:00
Manu 901992f026 Bump version to v0.7.8 2021-08-26 13:02:10 +04:00
Philipp Hossner ff010b3bc4
Handle malformed .vorta-init.json on import. Fixes #1053. By @phihos (#1054)
Show error dialog when .vorta-init.json is malformed.
2021-08-12 08:32:08 +04:00
Olivier Le Moal 7d2dbe001d
Fix double call to on_user_click. By @olivierlemoal (#1031) 2021-08-02 15:02:37 +04:00
Manu ea40d7b359 Bump version to v0.7.7 2021-06-21 10:01:18 +04:00
Manu 05efc27a2c Update translations. Add SK .ts file. Fixes #1013 2021-06-21 10:00:42 +04:00
Manu 5d5415035a
Remove PyQt5 pinning. Fixes #1011 (#1022)
* Remove PyQt5 pinning. Fixes #1011
* Bump Borg version in GH workflow.
2021-06-21 09:30:01 +04:00
bastiencyr 5700f096bb
Fix for diff command (#1019)
Fixes #1016
2021-06-20 14:15:19 +04:00
Manu eb037dd41b Build fixes 2021-06-08 18:50:56 +04:00
Manu 748e546b9c Bump version to v0.7.6 2021-06-08 18:09:43 +04:00
Philipp Hossner 5192bd132c
Import/export settings (or bootstrap with default config). By @phihos (#955) 2021-06-05 15:15:38 +04:00
bastiencyr 0862c827d8
Alert when deleting last profile. By @bastiencyr. (#1006)
Fixes #918
2021-06-04 11:33:16 +04:00
Manu 0bdcb577e2
Add /opt/homebrew/bin to PATH. Fixes #1001 (#1002) 2021-05-30 19:33:24 +04:00
bastiencyr 292066f8b7
Put folders first in diff/extract. Fixes #915. By @bastiencyr (#999) 2021-05-30 19:21:27 +04:00
Manu be6a39bc29
Skip sizing folders on permission error. Fixes #968 (#969) 2021-05-04 08:45:49 +08:00
Manu b96e8d460e
Called set_progress() on wrong class. (#965) 2021-04-28 09:30:04 +08:00
Manu 33f0c4c4e4
Fix color for eye icon when masking password (#959) 2021-04-25 15:14:35 +08:00
Manu 0e91775091
Refuse to add inaccessible folders, warn on inaccessible files during backup (#951)
* Refuse to add inaccessible folders
* Warn when Borg returns a warning (e.g. for inaccessible files)
2021-04-21 15:15:31 +08:00
Manu 3b57ab43a4
Option to run tests with SSH debugging (#953) 2021-04-18 21:33:48 +08:00
Manu 96ed84b28d
Check for full disk access on macOS (#952) 2021-04-18 21:24:49 +08:00
Manu 15a97e4570
Open window on left-click. Fixes #938 (#945)
* XDG-compliant tray behavior
2021-04-17 16:18:00 +08:00
Robert Blenis 61326e1814
Fix issue #940 - KeyError in get_dict_from_list. By @rblenis (#947)
* fix issue #940 - KeyError in get_dict_from_list
- cause of error : defaultdict added more defaultdict while attempting to traverse the tree, but once a 'potential leaf' node was added, it was added as a dict, not a defaultdict.
- two possible solutions:
    - 1 - change everywhere that adds a 'potential' leaf node to add a defaultdict (ie nested_dict()) - this occurs in several places, but not many.
    - 2 - change get_dict_from_list to add a default dict (not defaultdict) when traversing the tree, for the case where a multi-level node is added on top of an existing node. This requires only changing a single location, and means that the dictionaries returned by accessing the tree will behave like normal dict (ie, won't by default add missing keys).
* Add test case for issues #940 and #925
2021-04-12 22:54:32 +08:00
Manu 518df6ff55
Correctly rename profile in dropdown. Fixes #943 (#944) 2021-04-09 22:55:12 +08:00
Robert Blenis 0f5335ed7f
Add support for 'diff --json-lines'. By @rblenis (#909)
* add support for 'diff --json-lines' available in borg 1.1.16.
* fixes issue #901 (diff not handling CR/LF in filenames)
* improve `pretty_bytes()` formatting function
2021-03-30 07:47:27 +08:00
Manu 064ba7c50a
Delete dialogs on close. Fixes #456 (#922) 2021-03-16 14:24:56 +08:00
Robert Blenis 08797aba77
Fix 'list --json-lines' command when only a single result line is output. By @rblenis (#910) 2021-03-12 22:47:11 +08:00
Manu 2b009c517f Minor: Add hidden keyring imports for macOS 2021-03-03 22:01:34 +08:00
Manu 7dc6f83b92
Add signing to Github Action Workflow (#912) 2021-03-03 20:59:10 +08:00
Manu af2d6a9e73 Bump version to v0.7.5, update translations 2021-03-03 10:37:35 +08:00
Robert Blenis c66b1026c7
Use json mode to list archive files. By @rblenis (#885) 2021-03-01 16:49:49 +08:00
samuel-w bd3c479d1e
Add untranslated strings. By @samuel-w (#902) 2021-03-01 16:03:39 +08:00
samuel-w f7533b76b7
Disable codecov comments (#904) 2021-03-01 15:45:56 +08:00
Manu 6d8ad901fb
Allow to fully disable using the system keychain. (#898)
- Add option to avoid using system keychain.
- Prioritize keychains first. Then try to start them.
- Maintenance: Possible fixes for hung tests and segfault on exit on some setups.
2021-03-01 15:25:31 +08:00
Manu 824707c798
Fix issue with unassigned self.handle (#899) 2021-02-27 14:59:22 +08:00
Manu 84c3d3c822 Bump version to v0.7.4 2021-02-26 11:07:42 +08:00
Manu b19fa1ab6f Add Swedish translation by. Update existing translations. 2021-02-26 09:22:16 +08:00
samuel-w 46c3eee9a4
Improve kwallet verification. By @samuel-w (#889) 2021-02-24 21:25:17 +08:00
Manu 8da81e73b6
Remove failing SSH key check (#887) 2021-02-23 21:38:27 +08:00
Robert Blenis 3c0dd72205
Add option to refresh individual archives. By @rblenis (#878) 2021-02-23 10:12:09 +08:00
Manu 7949e80381
More test fixes, avoid segfault when quitting (#877) 2021-02-22 09:45:43 +08:00
Robert Blenis d701211037
Fix log table sorting. By @rblenis (#881)
Fixes #880
2021-02-22 09:38:35 +08:00
Manu 563b0a0bb7 Bump version to v0.7.3 2021-02-18 15:10:25 +08:00
samuel-w 95d964c40f
Add mount option override checkbox. By @samuel-w (#682)
* Tests: avoid clicking other window
2021-02-18 15:01:32 +08:00
Manu 9a4bbf0d65
Remove support for deprecated macOS XML wifi list. (#868)
* Use pytest-cov plugin to avoid hangers and subproc issues.
2021-02-18 13:50:58 +08:00
samuel-w bd0a1b8f4d
Add custom options to borg create command. By @samuel-w (#677)
And slight refactor of schedule tab.
2021-02-18 11:03:03 +08:00
Manu 355ddda0ec
Simplify default archive name (#861) 2021-02-18 09:52:59 +08:00