-
Notifications
You must be signed in to change notification settings - Fork 11
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
Tauri #78
base: main
Are you sure you want to change the base?
Tauri #78
Conversation
Hey @d0z4rt 👋🏻 EDIT: I'm thinking, maybe it might be just easier to add support for Progressive Web App (PWA) for this app? |
I don't think it's going be too complicated since Tauri is just used to run the web app and doesn't require additional code, tho in the future you could make fancy exporting methods or even move some calculations to Rust but you'll need a js fallback in order for the app to still work in a browser (using OffscreenCanvas for example as you already mentioned in one of your issue). Imo the hardest part of adding tauri to this repo is handling builds with GitHub actions, there is some guidance here but I haven't tried yet. As for PWA they're interesting on mobile but sadly it's not fully supported on desktop yet. See: PWA Browser support |
OK, I see. I'll take a look later then... |
Hey, It uses a matrix in order to build for all platforms and produce a |
Heya, I thought it would be nice to be able to run the app in 'standalone' using Tauri. This is a work-in-progress and I wanted to open up the discussion to see if this idea might interests you :)