Skip to content

Commit a7b7c2e

Browse files
committed
Updated version number in the program itself 🙈
1 parent 72c4062 commit a7b7c2e

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.vscode/launch.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,14 @@
9191
"terminalName": "Cargo",
9292
"showTerminal": true
9393
},
94+
{
95+
"name": "Build release for all Platforms",
96+
"type": "f5anything",
97+
"request": "launch",
98+
"command": "cargo build --release --target wasm32-unknown-unknown; cargo build --release --target x86_64-pc-windows-msvc; cargo build --release --target x86_64-apple-darwin; cargo build --release --target x86_64-unknown-linux-gnu",
99+
"terminalName": "Cargo",
100+
"showTerminal": true
101+
},
94102
{
95103
"name": "Vite",
96104
"type": "f5anything",

docs/rust_graph_visualiser.wasm

0 Bytes
Binary file not shown.

src/ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub(crate) fn paint_ui(mode: &mut Mode, graph: &mut Graph, mut bg_color: &mut [f
169169
ui.separator();
170170

171171
ui.horizontal(|ui| {
172-
ui.label("v0.2.1");
172+
ui.label("v1.0.0");
173173
ui.separator();
174174
ui.label(format!("FPS:{}", get_fps()));
175175
});

0 commit comments

Comments
 (0)