Commit Graph

2331 Commits

Author SHA1 Message Date
Mounir IDRASSI
2148714651
Linux/FreeBSD: Update build scripts: use wxwidgets 3.2.5, drop explicit GTK3 config since it detected automatically
We also update copyrights date
2024-06-26 02:29:22 +02:00
Mounir IDRASSI
31898a38d4
Linux/FreeBSD: use GTK3 flavor for default generic gui installer. create GTK2 specific gui installer. 2024-06-26 02:23:57 +02:00
Mounir IDRASSI
6f29514191
Linux/FreeBSD: automatically detect presence of GTK3. Remove WITHGTK3 makefile argument. 2024-06-26 01:31:23 +02:00
Jertzukka
f934f45c2d
Fix error in translation xml (#1368)
Needed to pass xml validator
2024-06-24 09:08:07 +02:00
Jertzukka
292fe82840
Fix regression in core service deserialization (#1367)
Introducing data into the standard out in the core service will
cause deserialization problems, as the pipes are used for interprocess
communication.
2024-06-24 09:07:19 +02:00
Mounir IDRASSI
0ea32b02b9
MacOSX: Fix compiler warning
Update friend declaration in FuseService.h and refactor GetCharWidth to ComputeCharWidth in WaitDialog.h to avoif hiding GetCharWidth inherited from wxWindow
2024-06-23 22:43:14 +02:00
Mounir IDRASSI
f1f626cc56
Increment version to 1.26.12 2024-06-23 21:37:59 +02:00
Mounir IDRASSI
01361e300f
MacOSX: set FUSE-T workaround max delay to 5 seconds. Make logic specific to FUSE-T volumes. 2024-06-23 16:57:18 +02:00
Mounir IDRASSI
a23da988d2
MacOSX: Disable libtiff support in wxWidget full build 2024-06-23 16:54:43 +02:00
Mounir IDRASSI
210827d27c
MacOSX: Add notarization script and entitlements file used to create official VeraCrypt dmg 2024-06-23 12:55:13 +02:00
Mounir IDRASSI
5ca2eee624
MacOSX: use same version define in Info.plist files. Indicate 12.0 as minimum supported macOS version 2024-06-23 12:52:35 +02:00
Mounir IDRASSI
875a1da0fb
macOSX: Add "FUSE-T build" in About dialog when linking against FUSE-T instead of MacFUSE 2024-06-23 12:50:40 +02:00
Mounir IDRASSI
423352056e
Update copyright date in some files 2024-06-23 12:49:08 +02:00
Mounir IDRASSI
03ad95164b
Increment version to 1.26.11. Update Release Notes. 2024-06-23 12:43:26 +02:00
Mounir IDRASSI
edde1d45f6
MacOSX: Add for using FUSE-T instead of MacFUSE
The build script build_veracrypt_macosx.h now accepts the argument -f to enable fuse-t support.
It is also possible to set the environment variable VC_OSX_FUSET to 1 for FUSE-T support.
A change was done in CoreUnix::GetMountedVolumes to add a waiting loop  for control file to be accessible because when using FUSE-T there always a delay before control file can be serialized.
2024-06-22 01:13:20 +02:00
Mounir IDRASSI
8b01b533cf
MacOSX: Fix compilation error in build configurations other than official release 2024-06-21 09:48:18 +02:00
Mounir IDRASSI
c370d4887c
Linux: Fix assembly files not built on Linux
This is a regression caused by macOS changes. And endif statement was misplaced.
2024-06-19 09:02:31 +02:00
Mounir IDRASSI
779d755eac
fix: Correct missing 'endif' in Main.make for MacOSX section
Replaced an incorrect 'end' statement with 'endif' in the
MacOSX-specific section of the Main.make file. This resolves the make
error caused by an unclosed conditional block.
2024-06-18 23:36:16 +02:00
Deniz Türkoglu
688086011d
Improve documentation (#1360)
* Improve markdown documentation in README.md

This commit fixes some of the minor spelling mistakes and uses
markdown formatting to link to local files, for documentation.

* Remove reference to outdated packages installation

This is a legacy installation file that is no longer maintained.
2024-06-18 00:49:11 +02:00
Mounir IDRASSI
329866ae4c
MacOSX: Update macOS specifics part of the Readme 2024-06-16 21:32:05 +02:00
Mounir IDRASSI
8b73ccd07a
MacOSX: Fix whitespaces by using tabs in Makefile 2024-06-16 15:50:59 +02:00
Mounir IDRASSI
e4e83d30c1
MacOSX: Use wxWidgets 3.2.5. Detect SDK version dynamically. Remove unused "r" getopts option. 2024-06-16 15:28:33 +02:00
Mounir IDRASSI
978ebe6693
MacOSX: Fix skipping codesign and productsign for local development build 2024-06-16 15:10:57 +02:00
Mounir IDRASSI
a92cefa605
MacOSX: Add universal binary of yasm so that it can run on arm64 machines 2024-06-16 14:49:15 +02:00
Mounir IDRASSI
8a4962dc07
MacOSX: Better build flags logic handling. Suppress Xcode 15 linked warning. 2024-06-16 14:46:31 +02:00
Deniz Türkoglu
406a1686f5
Improve and simplify macOS builds (#1276)
* Add missing macOS requirement for 'make package'

We need packages for the last build step on macOS, update docs
to reflect the requirement.

* Add build instructions using homebrew

On macOS, we can use a package manager to easily install
dependencies. This simplifies onboarding and building Veracrypt.

* Add flag to use homebrew packages

When building, we can use prebuilt wxwidgets from homebrew to
simplify and speed up local building. We also put the package
behind a flag as it's optional during development.

* Skip signing for local builds

When building with homebrew, skip signing. This can be put behind
a flag to enable, if needed.

* Use system yasm on macOS if available

The binary in the repo is not universal (x86_64) and therefore
building fails on arm architecture if Rosetta is not installed.

Use local yasm if available.

* Build local arch only in development

When building via homebrew and locally, build only the local arch
which skips ASM for arm(Mx) for MacOS. This removes the need to
have rosetta installed for building.

* Fix compilation issue when COMPILE_ASM is undefined

Use a conditional check for COMPILE_ASM not being false instead of true.
This avoids passing the variable to other parts of the build script.

* Set SDK 12 as the minimum requirement and target

Align the requirement to SDK 12 in both the makefile and script,
and update the comment to remove confusion.
I chose to leave this on 12 to be on the side of err and support
as many building platforms as possible, when we can support.

The local script now also sets the target using the local sdk
version. This should improve the local development experience.

* Fix wrong architecture for macOS in x86 builds

We now build only the current arch for local development builds
in macOS. This change also fixes the x86 builds failing.

* Add instructions brew backed macOS local builds

Flags to build a local build using homebrew packages are not
default and require parameter -b to build. We also don't build
packages directly, which requires -p.

* Fix wxwidgets not linking in local x86 macOS development builds

* Clarify build location in the document
2024-06-16 10:39:18 +02:00
Mounir IDRASSI
455a4f2176
Avoid conflict with C++17 features std::byte by using uint8 type instead of byte 2024-06-12 12:30:04 +02:00
Jertzukka
bf9f3ec4f0
Avoid assert by verifying installed languages exist (#1354)
wxDir::GetAllFiles will throw an assert when opening the preferences dialog
if for some reason the user has not installed VeraCrypt properly and is
missing the intended folder. This patch adds a check to ensure the folder
first exists before querying its files.
2024-06-03 23:10:53 +02:00
Jertzukka
ea7489b93b
FreeBSD: Support automatic detection and mounting of ext2/3/4, exFAT, NTFS filesystems (#1350) 2024-06-03 15:57:46 +02:00
Jertzukka
bd1e772657
FreeBSD: Fix privilege escalation prompts not showing up (#1349)
The behaviour of `wc -l` is different on FreeBSD, in which the stdout
result is padded by spaces in the beginning, which causes that the
result[0] is not actually the value we care about. This patch adds
a translate removing all whitespace from the output.
2024-06-03 08:09:54 +02:00
Mounir IDRASSI
6ac3b02a24 Linux: enhancements to build_cmake_deb.sh script. Use wxWidgets 3.2.5 2024-05-21 00:34:17 +02:00
Mounir IDRASSI
01d414c3fe Linux: Update dependencies for debian packages on Ubuntu 24.04 and Debian 13
packages were renamed and we linked statically against wxWidgets in GUI mode because of a bug in wxWidegts that was solved in 3.2.5 (https://github.com/wxWidgets/wxWidgets/issues/24081)
2024-05-21 00:32:31 +02:00
Jertzukka
114624b3a5
Prepare for changes in wxWidgets 3.3 (#1343)
* Move from deprecated wxScopedPtr to std::unique_ptr
wxScopedPtr was included previously through some header hierarchy which as of 3.3 is
no longer the case causing it to break. But instead of including a header for a deprecated
function explicitly, just move to std::unique_ptr as recommended by upstream.

* Convert to explicit conversions from wxString
As of 35c35c235e
wxWidgets defaults to STL classes, which has a side-effect that
some implicit conversions break. This patch converts those conversions
to explicit in anticipation of wxWidgets 3.3 release.
2024-05-18 03:46:39 +02:00
Jertzukka
55c3a8dc58
Fix incorrect max hidden volume size for file containers on CLI (#1338)
Currently the maximum hidden volume size for file containers is
limited by available free space on the device the file container
resides on, which we do not care about. This commit changes so
that only Normal volumes get their `maxVolumeSize` limited by
`AvailableDiskSpace`. Also the --size=max parameter is restricted
from hidden volume creation as there is no way to determine a good
size as we do not mount the outer volume through the CLI process
flow to determine available free space on the outer volume.
2024-05-08 19:00:09 +02:00
Mounir IDRASSI
e96f3035d9
Windows: Enhance memory protection mechanism by preventing process owner from granting permissions to itself. 2024-05-08 17:31:57 +02:00
Mounir IDRASSI
6d37bd662e
Update Korean translations (By Kangjun Heo, 0x00000FF@github) 2024-04-19 09:25:12 +02:00
Daniel Dias Rodrigues
da56ba89d2
Updated translation: pt-br. (#1306)
* Updated translation: pt-br.

* Translation pt-br fixes: MIP to PIM, period etc.

* Translation pt-br: IDT_FILE_SYS, plural form.
2024-04-11 21:23:43 +02:00
Mounir IDRASSI
5679f4fcae
Spanish translation file: fix minor punctuation error (double period) 2024-04-10 23:58:07 +02:00
RoboSchmied
c446773823
Fix: 7 typos (#1324)
Signed-off-by: RoboSchmied <github@roboschmie.de>
2024-04-10 23:50:05 +02:00
pji2918
bd4566fe1f
Update Korean Translation (#1291)
* Update Korean Translation

Signed-off-by: pji2918 <son77391@gmail.com>

* fix typo

Signed-off-by: pji2918 <son77391@gmail.com>

* fix minor typo

Signed-off-by: pji2918 <son77391@gmail.com>

* fix typo

Signed-off-by: pji2918 <son77391@gmail.com>

* fix typo

Signed-off-by: pji2918 <son77391@gmail.com>

* fix typo

Signed-off-by: pji2918 <son77391@gmail.com>

* fix typo

Signed-off-by: pji2918 <son77391@gmail.com>

* fix typo

Signed-off-by: pji2918 <son77391@gmail.com>

* fix typo

Signed-off-by: pji2918 <son77391@gmail.com>

---------

Signed-off-by: pji2918 <son77391@gmail.com>
2024-04-10 23:36:05 +02:00
风之暇想
8711b3c5a9
Update Language.zh-cn.xml (#1315)
* Update Language.zh-cn.xml

修正错误

* Update Language.zh-cn.xml
2024-04-10 19:36:40 +02:00
DLL125
ecf1047019
update zlib + copyright (#1302) 2024-04-10 18:47:29 +02:00
MayanTigger
ce2a254c51
07Feb23-Update Language.es.xml (#1301) 2024-04-10 18:24:09 +02:00
Jertzukka
f846a808d1
Correct exceptions to match the correct language strings (#1299)
Fixes the order of the language strings to match the correct
exceptions.
2024-04-10 17:58:37 +02:00
Jertzukka
dc8d8ce404
Unix CLI: Don't initially re-ask PIM if it was already specified (#1288)
We don't need to reset PIM in PasswordException as it is immediately
fell back to if PIM is specified in text mode, but password is not.
This causes an exception that resets the PIM when it shouldn't.
2024-04-10 10:44:01 +02:00
Jonatan
afc6215074
Update Swedish translation (#1287)
* Update Swedish translation

Fix typos

* Fix typo

Fix typo

* Update Swedish translation

* Revert last change
2024-04-10 10:42:45 +02:00
Mounir IDRASSI
6e28375060
Translations: Update Spanish translation 2023-12-16 00:51:36 +01:00
Mounir IDRASSI
34664e338d
Spanish Translation: fix typos and enhancements 2023-12-15 00:46:39 +01:00
MayanTigger
add8ef71b1
Update Language.es-22Nov23.xml (#1261)
Hello:
I think of there were a regression of the fields already translated. 
Now translated 
1441, 1443 up to 1451

Have a great day!
2023-12-15 00:39:11 +01:00
Jonatan
fd156affd5
Update Swedish translation (#1278) 2023-12-15 00:29:40 +01:00