tobil4sk
tobil4sk
Haxe documentation specifies that an exception should be thrown if the path is not a valid directory: > If `path` does not denote a valid directory, an exception is thrown....
Currently if `HXCPP_ARMV7` is set for example, hxcpp ignores it and adds the host architecture as if no architecture were set. This causes problems, for example, because it might result...
The wchar_t overload for String::create() assumes that wchar_t has a size of two bytes, which is only the case on Windows. On other systems it creates an invalid string if...
When passing an invalid unicode string to `_hx_std_file_contents_string`, instead of giving the `Invalid UTF16` error, it gives `Critical Error: Allocating from a GC-free thread`. This is because the exception is...
Looks like there are a few places where the arm64 architecture is not considered on Mac. For example: https://github.com/HaxeFoundation/hxcpp/blob/3f6de84d4decb0a7aa1131ebd527f623b1e2d2b1/tools/hxcpp/BuildTool.hx#L1546 https://github.com/HaxeFoundation/hxcpp/blob/e23515d4acd43f3609e5ca49a8cebdad285db78d/tools/run/RunMain.hx#L99 Setting these should hopefully allow the correct binaries to be...
https://github.com/HaxeFoundation/haxelib/actions/runs/7431993301/job/20223297439#step:5:5345 ``` W: GPG error: http://repo.mysql.com/apt/ubuntu bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B7B3B788A8D3785C ``` mysql 5.7 is no longer supported...
Closes #493. For most git installs, a (faster) shallow clone can now be performed with `--depth=1`, which avoids cloning the entire history and instead only clones one commit's worth of...
Implements argon2id hashing of passwords on the server, with automatic rehashing of the old Md5 hashes. The Md5 hashing on the client is kept as is for now. See #314.