David Dalcino

Results 95 comments of David Dalcino

> I would like to also add, that there might also be an other case, where this happens, specifically if you install tools only, because then I don't have anything...

I think #173 ought to fix this. I've modified the test code so that versions `5.15` and `6.3.*` are requested, instead of a fully resolved version; all tests are passing...

Agreed, testing `tools-only` is relevant here. I have modified #173 accordingly.

Apparently, Handlebars 4.3.0 and 3.0.8 are also affected by related CVEs, including these: - Prototype Pollution: https://github.com/advisories/GHSA-765h-qjxv-5f44 - Prototype Pollution: https://github.com/advisories/GHSA-f2jv-r9rf-7988 - Cross Site Scripting: https://github.com/advisories/GHSA-9prh-257w-9277 It appears that there's...

Great question! As this is a new feature, we don’t support it yet. Clearly, this is something we should support. Part of the problem is that aqt is set up...

Support for linux arm64 gh actions runners is tracked here: https://github.com/actions/runner-images/issues/5631 This feature will be a lot easier to test after 5631 is implemented

From this code, at https://github.com/rectalogic/aqtinstall/blob/arm64/aqt/helper.py#L282-L288: ```python def os_arch_ext(os_name: str) -> str: if os_name == "windows": return "_x86" elif os_name == "linux" and platform.machine() == "aarch64": return "_arm64" else: return "_x64"...

> It makes no sense why they would organize it like this. LOL welcome to QT, there's a lot of stuff like this at download.qt.io, unfortunately.

Current full list of jobs (please excuse any spelling errors; I had to copy the list via OCR): ``` Mac install-qt 5.13.2 clang_64 for desktop Mac install-qt 5.15.2 clang_64 for...

Autodetection of Qt versions and tools is not something that aqt attempts to accomplish. For the most part, aqt simply downloads archives from the Qt repo and unzips them; it...