Victor Aremu

Results 102 comments of Victor Aremu

Please learn some etiquette man! Afterward, edit this issue, maybe then maybe the author will be happy enough to update the package.

I was able to make this work for my Tauri app DMG. I had to do it manually using [create-dmg.](https://github.com/create-dmg/create-dmg) Build your Tauri app. Get the path to the `YourApp.app`....

> @ahkohd thank you for the hint! I will try this tool to see it! You're welcome. Keep in mind that you will have to tweak the icon position and...

Also, a memory leak happens when you emit an event to a window in a loop. During my investigation, I found out that if you emit an event to the...

Found something: https://bugs.webkit.org/show_bug.cgi?id=215729 https://github.com/Danesz/Sidewalk

Since we know we have a memory leak when calling eval, I will suggest that we should update the invoke system to use WebSockets to create some kind of RPC...

> tauri-invoke-http doesn't use eval - it uses a localhost server. Can we upgrade this to use WebSocket instead of HTTP? Maybe I fork the repo and see what I...

@qu1ck use https://github.com/ahkohd/tauri-awesome-rpc Works like charm. Also avoid using tauri APIs that uses eval under the hood such as window.emit(). Use AwesomeEmit and AwesomeEvent instead. See the repo for usage...

I'm on OSX. Using the WS RPC, I have seen a significant memory usage reduction. It seems there is another cause of your memory leak.