Rok Mandeljc

Results 553 comments of Rok Mandeljc

You did create relative and valid symlinks, right?

E.g., trying to create frozen program from your sample: ``` $ pyinstaller --clean --noconfirm --windowed program.py 586 INFO: PyInstaller: 4.9 587 INFO: Python: 3.9.4 [...] 16271 INFO: checking COLLECT 16271...

We should take this opportunity and rework the macOS signing as well, to perform signing on all collected files instead of just binaries. Often, shared libs end up collected as...

I suppose it wouldn't hurt to have `fnmatch`-based matching implemented. On the other hand, I don't think `Tree` is (or should be) commonly used outside our codebase...

It accepts a module or package name, but not a [distribution (package)](https://packaging.python.org/en/latest/glossary/#term-Distribution-Package) name. Whereas `--copy-metadata` requires a distribution name to properly collect the metadata. So in your case, because distribution...

To clarify, the manifest above is called `Microsoft.VC90.CRT.MANIFEST` and was collected into the dist along with `msvcr*90.dll` files? (I.e., this is not an .exe.manifest file, which should be embedded into...

Hmm, I can get the same `Microsoft.VC90.CRT.MANIFEST` with `` element generated, but it doesn't seem to cause the side-by-side issue on my Windows 10 system. But the problematic part is...

You're right; hard-cut transparency [does not seem to be supported on linux](https://github.com/pyinstaller/pyinstaller/blob/7875d7684c6ddad90e91af9141229083ebb1297f/PyInstaller/building/splash_templates.py#L162-L163). Sounds like a platform-specific limitation of Tcl/Tk. And yeah, it would be nice if the docs contained a...

Not for `onefile` mode, but with that one, I can't see how we could get past the two-process model without losing ability to clean up after the program finishes.

The problem is that from PyInstaller's perspective, you are not (directly) importing `QtMultimedia` - you are doing that indirectly, via QML, and PyInstaller has no means of analyzing `.qml` files...