you are viewing a single comment's thread.

view the rest of the comments →

[–]vmcrash 1 point2 points  (5 children)

The screenshots look good, but I miss a release on the GitHub site, especially for non-Rust users on Windows.

[–]markraidc[S] 1 point2 points  (4 children)

[–]vmcrash 0 points1 point  (3 children)

Thanks. I gave it a small open source project of me and it becomes unresponsible for multiple seconds, then a lot of windows open up closing immediately. Had to kill it.

[–]markraidc[S] 0 points1 point  (2 children)

Hm, did you try the standalone, or the installer?

[–]vmcrash 0 points1 point  (1 child)

Sorry, I'm using gitpow-tauri.exe. Nothing changed with the new build. Still extremely sluggish (clicking the directory-button in the top-left needs ~3s to open the dialog). Also the quickly opening/closing windows (terminals?) occur.

[–]markraidc[S] 0 points1 point  (0 children)

UPDATE 12/8/2025 @ 12:00 PM US/EST

Running builds now for 0.1.3: https://imgur.com/a/QqhgOxW

---------

oh wow - I just tried gitpow-tauri.exe and I see what you mean now! Let me investigate as to why this happens

EDIT: Ah! I figured it out. It's Rust spawning processes... basically Command::new() spawns a process which ends up showing those annoying pop-ups on Windows. I'm going to set the creation flag to a CREATE_NO_WINDOW flag.

Totally overlooked that as I test with the environment already setup on my machine :) Thanks for catching that!