Rok Mandeljc

Results 553 comments of Rok Mandeljc

On one hand, this seems like a non-trivial change to save the user from creating a two-line entry-point script for their frozen application. On the other hand, having this would...

I suppose we could add a bootloader option to print a static user-defined greetings message when started. And perhaps another option to print the names of files as they are...

Hmmm, looks like `ShowWindow` does not work with the shiny new Windows Terminal. Not sure if we can do anything about it, though - aside from putting a warning into...

> For months, I have been wondering why I was getting > > > qt.tlsbackend.ossl: Failed to load libssl/libcrypto. > > warnings while building my `PySide6`-based app, even with `--log-level=ERROR`....

Huh... so `playwright` (and [their PyInstaller hooks](https://github.com/microsoft/playwright-python/blob/main/playwright/_impl/__pyinstaller/hook-playwright.async_api.py)) expect us to be able to properly collect whole Chrome .app bundle that they stuff in their package? I really wish I could...

@benjie-git How do you include that .app bundle in the PyInstaller app? It is presumably smuggled in as data (otherwise I think v5 would also raise an error), but do...

> When I run the frozen app from the command line (`./dist/HangTest.app/Contents/MacOS/HangTest`) it never seems to hang. The hang only occurs when launched from the Finder. I suppose the OS...

Hmmm.... This will be a pain, because we don't really have a baseline to compare the behavior to. I.e., anything ran directly from command-line seems to behave differently (so the...

> On macOS 13.1, running the app (without rebuilding since the OS upgrade) about 20 times gave one dialog which opened but won't respond. Neither the OK, Close or Minimise...

FWIW, [our argv emulation documentation](https://pyinstaller.org/en/stable/feature-notes.html#macos-event-forwarding-and-argv-emulation-in-app-bundles) does warn against using it with onedir bundles that make use of UI toolkits. Similarly, the [py2app documentation](https://py2app.readthedocs.io/en/latest/options.html#id1) warns against using their argv emulation with...