Package Details: zulucrypt 7.0.0-1

Git Clone URL: https://aur.archlinux.org/zulucrypt.git (read-only, click to copy)
Package Base: zulucrypt
Description: A cli and gui frontend to cryptsetup
Upstream URL: https://mhogomchungu.github.io/zuluCrypt
Keywords: cryptsetup encryption security tcplay truecrypt veracrypt
Licenses: GPL
Conflicts: zulucrypt-git
Submitter: salan54
Maintainer: salan54
Last Packager: salan54
Votes: 71
Popularity: 1.53
First Submitted: 2013-02-03 13:05 (UTC)
Last Updated: 2024-08-21 09:06 (UTC)

Latest Comments

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

<deleted-account> commented on 2015-09-01 20:07 (UTC)

Ops, i never read ,only write. The error message (4.7.7) "This application failed to start because it could not find or load the Qt platform plugin "xcb". Available platform plugins are: eglfs, linuxfb, minimal, minimalegl, offscreen, xcb. Reinstalling the application may fix this problem." qt5-base is installed.

salan54 commented on 2015-09-01 14:01 (UTC)

version 4.7.7 -- add support for creating and opening VeraCrypt volumes that use dynamic mode. -- make zuluCrypt-gui window and zuluMount-gui window resizable with the new sizes surviving restarts.

jdn06 commented on 2015-08-27 11:13 (UTC)

What a speedy answer! Thank you: it works with left click!

mhogomchungu commented on 2015-08-27 11:06 (UTC)

@jdn06, Just tested and i can confirm your observation. The change of behavior is caused by Qt5. To get the menu,you have to left click as right clicking no longer work. The old behavior can be attained by rebuilding zuluCrypt and make it depend on Qt4 because Qt4 gives the menu with both left click and right click. GUI components of zuluCrypt where build with Qt4 previously and are now build with Qt5 and the lost of right click seems to be a casualty of the change. Its strange i never noticed this before.

jdn06 commented on 2015-08-27 10:45 (UTC)

Since last release, right-click on an opened volume in zuluCrypt-gui doesn't work anymore. Am I the only one with the problem?

mhogomchungu commented on 2015-08-12 12:11 (UTC)

@pekka, What error message did you get when it failed to build? It build fine with Qt5 if you have necessary libraries installed. While here,i would like to announce that version 4.7.7 will be released on the first of September.

<deleted-account> commented on 2015-07-30 08:19 (UTC)

Not KDE users With awesomeVM QT5 build not work. cange "-DQT5=true" to "-DQT5=false"

salan54 commented on 2015-06-20 16:07 (UTC)

zulucrypt (on archlinux) is now build with Qt5 library.

salan54 commented on 2015-06-04 19:49 (UTC)

@mhogomchungu: Thanks for the explanations. I think I will release another package for Qt5. I will do that this weekend, just before the change to AUR4...

mhogomchungu commented on 2015-06-04 15:24 (UTC)

@salan54,you need to use "-DQT5=true" option to tell the build system to build against Qt5. I think you should change the cmake command to one of the following two to be explicit with all options. For Qt4 build: cmake -DCMAKE_INSTALL_PREFIX=/usr/ -DUDEVSUPPORT=true -DNOGUI=false -DQT5=false -DHOMEMOUNTPREFIX=false -DNOGNOME=false -DNOKDE=true -DCMAKE_BUILD_TYPE=RELEASE . .. For Qt5 build: cmake -DCMAKE_INSTALL_PREFIX=/usr/ -DUDEVSUPPORT=true -DNOGUI=false -DQT5=true -DHOMEMOUNTPREFIX=false -DNOGNOME=false -DNOKDE=true -DCMAKE_BUILD_TYPE=RELEASE . .. Explanations for each option is are here: https://github.com/mhogomchungu/zuluCrypt/blob/f9bdcdcc64d4c9fca260b9b96140198393c30fd6/BUILD_INSTRUCTIONS#L69