Gisle Vanem

Results 232 comments of Gisle Vanem

Another minor issue which I continue here: Enabling `MOTOBJECT_VERBOSE`, the `MOTDirectory` class member is named `m_carousel` (not `carousel`): ```diff --- a/gui/motobject.cpp 2022-11-05 14:02:33 +++ b/gui/motobject.cpp 2023-01-04 14:31:35 @@ -400,7 +400,7...

Yes that's correct. My patch is too simple. I do not know how Qt can have 2 handlers: * one for `QT_MESSAGE_PATTERN` console-messages. * and a GUI-handler as now.

Yes. I'd like the Application log not to be customised (unless those ESC-codes can give GUI-colours, can Qt do that?). Trying this: ```diff --- a/gui/mainwindow.cpp 2023-12-01 14:46:44 +++ b/gui/mainwindow.cpp 2023-12-08...

BTW. starting with `AbracaDABra.exe --reverse`, the App-log looks: ![Abra-console-3](https://github.com/KejPi/AbracaDABra/assets/945271/7283d0d1-bfb5-4edd-b023-2cb7542141da) Not quite Semitic :-)

I assume it should read from right to left.

> Could you please provide a feedback? I did not see this until now. But you patch made no difference.

Inspecting the running .exe with [ProcessExplorer](https://learn.microsoft.com/en-gb/sysinternals/downloads/process-explorer) shows it has this env-var: ``` QT_MESSAGE_PATTERN=%{file}:%{line}, %{if-debug}DBG%{endif} %{if-info}INFO%{endif}%{if-warning}WARN%{endif}%{if-critical}CRIT%{endif} %{if-fatal}FATAL%{endif}: %{message}  == 27 ``` (all on one line). But it has no effect...

> Application does not print function names by default. What does this mean. Modifying my starting `abra.bat` to use: ``` QT_MESSAGE_PATTERN=%{function}, %{if-debug}DBG%{endif} %{if-info}INFO%{endif}%{if-warning}WARN%{endif}%{if-critical}CRIT%{endif} %{if-fatal}FATAL%{endif}: %{message} ``` and **no** `start AbracaDABra.exe`...

As you now seems to have added this feature, I tried to build with it. But since `lib/windows_amd64/libfmlistInterface.dll*` are built using MinGW (?), they are not usable by MSVC due...