Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This fork / pullrequest adds polyfills and capabilities to make this application usable via the browser and therefore also mobile devices.
All major bugs and exceptions have been fixed, but maintenance may be required for any new electron module or similar modules used in the preload scripts.
Currently the quasar server on port 9300 is used indirectly. Therefore, this server must also be present in the bundled application by activating it or implementing an alternative server.
Its core consists of the websocket on port 9301, which is used to emulate ipc communication, the polyfill in the web part of the application, which activates all rewritten preload scripts in the browser and establishes communication with the server, and the build script to rewrite all preload scripts to use the polyfills.
This fork still contains some fragments of the first version. These are still functional as such and use an alternative principle in which they copy the contents of the electron window without any scripts to send them to the browser and send back the interactions to electron to be emulated in the main window.
The only advantages of this solution are that no polyfills are required and therefore the preload scripts do not have to be rewritten and that the server is currently the only one of the two approaches that can be switched on and off independently.
Known files with fragments:
The following button is a fragment and toggles the server for the old solution:
![grafik](https://private-user-images.githubusercontent.com/51849622/377624342-921e292f-3a80-4da7-b342-211a43710765.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk4MzkzNzgsIm5iZiI6MTczOTgzOTA3OCwicGF0aCI6Ii81MTg0OTYyMi8zNzc2MjQzNDItOTIxZTI5MmYtM2E4MC00ZGE3LWIzNDItMjExYTQzNzEwNzY1LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE4VDAwMzc1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTNkMjY1MDBhZGI1MTE1MzQ0MWNlZDA3ZWQyOTIzYzQ3MDg1ZGM5ODQxYmU0NjA5NTYxYTE1NGEzMTRlYTA5YTEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.ks--86X3ceXX_JLRnywcOJlgszH8WSWhNMoBrQ-EUwg)
It could may help resolve the following issues: #30 and/or #26
PS: I can of course explain more about the changes if the code or something similar is not immediately understandable.