Skip to content

Commit 2367c3c

Browse files
committed
bump to version 0.2.0
1 parent 3759f2f commit 2367c3c

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Serial Monitor changelog
2+
3+
All notable changes to the `Serial Monitor` crate will be documented in this file.
4+
5+
# Unreleased
6+
7+
* ...
8+
9+
## 0.2.0 - 09.03.2024 - New Design, Improved Performance
10+
11+
### Added:
12+
13+
* [egui-phosphor](https://github.com/amPerl/egui-phosphor) icons for certain buttons
14+
* multiple plots support (thanks [@oeb25](https://github.com/oeb25))
15+
* implemented keyboard shortcuts
16+
* improved serial transfer speed (thanks [@L-Trump](https://github.com/L-Trump))
17+
* Bug fixes (thanks [@zimward](https://github.com/zimward))
18+
19+
## Earlier:
20+
21+
* code clean up (thanks [@lonesometraveler](https://github.com/lonesometraveler))

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serial-monitor-rust"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Linus Leo Stöckli"]
66
description = "Serial Monitor and Plotter written in rust."
@@ -45,5 +45,5 @@ dbg-name = false
4545
name = "Serial Monitor"
4646
no-build = false
4747
output = "target/wix/SerialMonitorInstaller.msi"
48-
version = "0.1.2"
48+
version = "0.2.0"
4949
license = "GPL-3.0"

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
A cross-platform serial monitor and plotter written entirely in rust, the GUI is written
66
using [egui](https://github.com/emilk/egui).
77
Inspired by the serial monitor/plotter from the Arduino IDE, but both plotting and reading the traffic can be done
8-
simultaneously.
8+
simultaneously.
99

1010
[Binary bundles](https://github.com/hacknus/serial-monitor-rust/releases) are available for Linux, macOS and Windows.
1111

@@ -31,14 +31,15 @@ Features:
3131
- [ ] make side panel and plot/serial prompt be resizeable (snappy?)
3232
- [ ] current command entered is lost when navigating through the history
3333
- [ ] command history is currently unlimited (needs an upper limit to prevent huge memory usage)
34+
- [ ] data history is currently unlimited (needs an upper limit to prevent huge memory usage)
3435
- [ ] ...
3536

3637
![Screenshot of the application on macOS](screenshot.png)
3738

3839
The source code can be run using ```cargo run``` or bundled to a platform-executable using cargo bundle.
3940
Currently [cargo bundle](https://github.com/burtonageo/cargo-bundle) only supports linux and macOS
4041
bundles [see github issue](https://github.com/burtonageo/cargo-bundle/issues/77).
41-
As a work-around we can use [cargo wix](https://github.com/volks73/cargo-wix) to create a windows installer.
42+
As a work-around we can use [cargo wix](https://github.com/volks73/cargo-wix) to create a windows installer.
4243

4344
After downloading
4445
```cargo install cargo-bundle``` or ```cargo install cargo-wix```
@@ -51,7 +52,7 @@ Tested on:
5152

5253
- macOS 12.4 Monterey x86
5354
- macOS 13.2.1 Ventura ARM
54-
- Debian 12 (Testing) x86
55+
- Debian 12 (Testing) x86
5556
- Windows 10 x86
5657
- ...
5758

0 commit comments

Comments
 (0)