Skip to content

Commit c678f79

Browse files
Updates version
Signed-off-by: Cole Gentry <peapod2007@gmail.com>
1 parent 7353ca8 commit c678f79

5 files changed

Lines changed: 5 additions & 7 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ultralog"
3-
version = "1.4.0"
3+
version = "1.4.1"
44
edition = "2021"
55
description = "A high-performance ECU log viewer written in Rust"
66
authors = ["Cole Gentry"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A high-performance, cross-platform ECU log viewer written in Rust.
66

77
![CI](https://github.com/SomethingNew71/UltraLog/actions/workflows/ci.yml/badge.svg)
88
![License](https://img.shields.io/badge/license-AGPL--3.0-blue.svg)
9-
![Version](https://img.shields.io/badge/version-1.4.0-green.svg)
9+
![Version](https://img.shields.io/badge/version-1.4.1-green.svg)
1010

1111
---
1212

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@
710710
<strong>Free and open source</strong> — no subscriptions, no licenses, just download and go.
711711
</p>
712712
<div class="hero-badges">
713-
<span class="version-badge">v1.4.0</span>
713+
<span class="version-badge">v1.4.1</span>
714714
<a href="https://github.com/SomethingNew71/UltraLog" class="opensource-badge" target="_blank">
715715
<i class="fa-brands fa-github"></i> Open Source
716716
</a>

src/app.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -426,9 +426,7 @@ impl UltraLogApp {
426426

427427
// Track file load for analytics
428428
let ecu_type_str = format!("{:?}", file.ecu_type);
429-
let file_size = std::fs::metadata(&file.path)
430-
.map(|m| m.len())
431-
.unwrap_or(0);
429+
let file_size = std::fs::metadata(&file.path).map(|m| m.len()).unwrap_or(0);
432430
analytics::track_file_loaded(&ecu_type_str, file_size);
433431

434432
// Compute time range for this file

wiki/Home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ UltraLog is a high-performance, cross-platform desktop application for viewing a
5353

5454
## Version Information
5555

56-
- **Current Version:** 1.4.0
56+
- **Current Version:** 1.4.1
5757
- **License:** AGPL-3.0
5858
- **Author:** Cole Gentry
5959

0 commit comments

Comments
 (0)