Hennadii Chernyshchyk
Hennadii Chernyshchyk
Yes, and it will be like this from now on.
We generate NSIS automatically. I think if you run the uninstaller from the previous version, it will remove `HKEY_CURRENT_USER\Software\Crow Translate\Crow Translate`. And after installing new version and running uninstaller it...
Oh, I see. Probably it's because of this variable: https://github.com/crow-translate/crow-translate/blob/bf47e3502a4edb8024a0d20030d58d6d164479a1/CMakeLists.txt#L18 Could you try changing it to `${PROJECT_NAME}` locally and see if it fixes the issue? I don't have Windows machine...
> I don't understand this. What to do after the change? Compile and run the installer. See instructions [here](https://github.com/crow-translate/crow-translate#building-a-package-using-cpack). > Do you speak Russian? I do, but I prefer to...
Can't reproduce on my machine. I also use Arch.
Looks like the problem is related to your graphical drivers. Something in Qt causes this.
> Is it possible to make any settings optionally? If it worked before, then some new things have hardware dependence. I didn't add anything. Something in your machine is crashing...
The issue is different. The program was unable to detect autostart provide because we don't support FreeBSD. Feel free to add extra defines though.
Just grep the code for `No autostart provider implemented`. You will see the place where you most likely want to replace `Q_OS_LINUX` with `Q_OS_UNIX`.
> While I understand that FreeBSD is not officially supported, would you consider including this patch upstream Sure! But instead of `#if defined(Q_OS_LINUX) || defined(Q_OS_UNIX)` use just `#if defined(Q_OS_UNIX)`.