Package Details: vorta 0.9.1-3

Git Clone URL: https://aur.archlinux.org/vorta.git (read-only, click to copy)
Package Base: vorta
Description: A GUI for BorgBackup
Upstream URL: https://github.com/borgbase/vorta
Keywords: backup borg
Licenses: GPL
Submitter: bjo
Maintainer: Paragoumba
Last Packager: Paragoumba
Votes: 78
Popularity: 3.72
First Submitted: 2018-11-19 21:33 (UTC)
Last Updated: 2024-03-18 09:25 (UTC)

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9 10 11 12 13 14 Next › Last »

EarthMind commented on 2021-01-19 11:40 (UTC)

@samuel-w Great work! @bjo, could you add that as a patch to the PKGBUILD as long as this change is not part of an official release?

samuel-w commented on 2021-01-17 21:07 (UTC) (edited on 2021-01-17 21:17 (UTC) by samuel-w)

I created a fix for https://github.com/borgbase/vorta/issues/693. https://github.com/borgbase/vorta/commit/9af1eb5ba648fed97260a6d3ca2aa7221cd1fb74

diff --unified --recursive --text --color vorta.old/src/vorta/utils.py vorta.new/src/vorta/utils.py
--- vorta.old/src/vorta/utils.py    2020-09-10 00:27:28.000000000 -0500
+++ vorta.new/src/vorta/utils.py    2021-01-17 15:13:56.756840996 -0600
@@ -58,12 +58,11 @@


 def choose_file_dialog(parent, title, want_folder=True):
-    options = QFileDialog.Options()
-    if want_folder:
-        options |= QFileDialog.ShowDirsOnly
-    dialog = QFileDialog(parent, title, os.path.expanduser('~'), options=options)
+    dialog = QFileDialog(parent, title, os.path.expanduser('~'))
     dialog.setFileMode(QFileDialog.Directory if want_folder else QFileDialog.ExistingFiles)
     dialog.setParent(parent, QtCore.Qt.Sheet)
+    if want_folder:
+        dialog.setOption(QFileDialog.ShowDirsOnly)
     return dialog



EarthMind commented on 2021-01-13 09:41 (UTC)

I have the same problem as Toadfield on multiple machines. As a temporary workaround, I copied the paths and then pressed the Paste Folders/Files button

Toadfield commented on 2021-01-12 19:43 (UTC)

I can't add a folder to backup. If I click on "Open",nothing happens.

m8D2 commented on 2021-01-10 22:13 (UTC)

@close2: I had the same error about wrong checksum, please do a clean build, it should be fine now.

bjo commented on 2021-01-10 15:37 (UTC)

@close2: The PKGBUILD contains a sha256sum, not a sha512sum.

close2 commented on 2021-01-10 13:23 (UTC) (edited on 2021-01-10 13:23 (UTC) by close2)

The sha512sum of the (current) vorta-0.7.1.tar.gz is d079ea0219a7e8d2578a36272787594e9557101fe8be6472e08ce86499f284daec83c3f442e5c3fa4c06de9ffd85cf030956479a592cd1c5f1483ca154c7a68b

which is different to the checksum in the package.

EarthMind commented on 2021-01-06 09:56 (UTC)

The file dialog to add source folders or to mount archives or to extract files doesn't properly anymore for me. It won't open the folder. The Cancel button works though. Anyone have an idea what the cause is?

gargakumar commented on 2021-01-04 20:43 (UTC)

@yochananmarqos thanks for the tip !