From c48eec22d678669f7e424c5bdb2e374b47d347ed Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 30 Sep 2025 10:46:41 +0200 Subject: [PATCH] don't recommend --release builds --- content/devlog/2025.smd | 8 ++++---- content/index.smd | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/content/devlog/2025.smd b/content/devlog/2025.smd index 7fe63f2..da1a156 100644 --- a/content/devlog/2025.smd +++ b/content/devlog/2025.smd @@ -394,10 +394,10 @@ merged. Here's a list of highlights of whats new (in no particular order): - **Win32 GUI** - Yes, flow can now render itself in a win32 GUI window for all those terminal impaired windows users (with full GPU acceleration!). The GUI binary can be built with `zig - build -Dgui --release=safe` and is called `flow-gui.exe`. Functionality in this GUI version of - flow is identical to the TUI version, although as of this writing there are some minor renderer - features still missing such as curly underlines, mouse cursors and double wide characters. - Thanks to `@marler8997` for the huge amount of work he put into this. + build -Dgui -Doptimize=ReleaseSafe` and is called `flow-gui.exe`. Functionality in this GUI + version of flow is identical to the TUI version, although as of this writing there are some + minor renderer features still missing such as curly underlines, mouse cursors and double wide + characters. Thanks to `@marler8997` for the huge amount of work he put into this. - **Multi cursor changes** - Adding cursors is now `alt+click` (it was `ctrl+click`). This is to fall inline with common practice in other editors (zed and vscode). Also, you can now remove diff --git a/content/index.smd b/content/index.smd index c1a1a54..1c50cf1 100644 --- a/content/index.smd +++ b/content/index.smd @@ -109,7 +109,7 @@ Or check your favorite local system package repository. ### Build from Source ```bash # Basic build -zig build --release=fast +zig build -Doptimize=ReleaseSafe # Cross-compile examples zig build -Dtarget=x86_64-windows --prefix zig-out/win64