Bump version to 0.7.0

This commit is contained in:
David Holland 2023-09-15 13:37:13 +02:00
parent d03951dce1
commit 61beb05d76
Signed by: DustVoice
GPG Key ID: 47068995A14EDCA9
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[package]
authors = ["David Holland <info@dustvoice.de>"]
name = "rustybeans"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -7,7 +7,7 @@
<head>
<!-- change this to your project name -->
<title>eframe template</title>
<title>RustyBeans</title>
<!-- config for our rust wasm binary. go to https://trunkrs.dev/assets/#rust for more customization -->
<link data-trunk rel="rust" data-wasm-opt="2" />

View File

@ -402,7 +402,7 @@ impl eframe::App for Ui {
.label_formatter(|name, value| {
let coord = format!("{:.1}g @ {:.1}s", value.y, value.x);
if !name.is_empty() {
format!("{} [ {} ]", coord, name)
format!("{} [{}]", coord, name)
} else {
coord
}