-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bash/tauri integration #76
Conversation
On my machine there is a weird behaviour where the window creeps down a tiny bit each time it's opened and closed, but I think it has to do with the title bar on my Window manage as I've seen similar behaviour with other apps on my desktop before. If anybody could test on Windows that it stays in the same place each time it's closed and opened I would greatly appreciate that. |
43978ea
to
59f8023
Compare
59f8023
to
4e3cdcf
Compare
4e3cdcf
to
9f81053
Compare
For some reason the buttons to open steam profiles don't work from inside Tauri. I added the
|
It seems that opening stuff from tauri requires it's own API instead of using the regular open functions like you would in a browser. It could probably be worked around by having support in the UI to check if it's running in tauri and use the alternative API (see this github issue, but it's not ideal. Besides having to add special cases to the UI to support it, I feel the many additional dependencies and the very negative impact on compile times by using tauri mean it's not worth merging it in in this state. I will leave this branch here though in case anybody else wants to have a look or finds a reasonable fix/alternative/compromise. |
Adds tauri integration to run the client as a desktop app (by adding
--desktop
when running the executable).