Skip to content

Commit

Permalink
0.2.4 - How many versions can I make in one day?
Browse files Browse the repository at this point in the history
Fix bug in desktop reader that could result in incorrect display name.
  • Loading branch information
Beinsezii committed Jul 21, 2023
1 parent 3b187e6 commit 4aa8b36
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linch"
version = "0.2.3"
version = "0.2.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# linch 0.2.3
# linch 0.2.4
Cross-desktop application launcher made with ~~iced~~ egui

<img src="./screenshot.png" height = 300 px />
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl Item {
for line in data.lines() {
if line.trim() == "[Desktop Entry]" {
start = true;
} else if line.trim().starts_with("[Desktop") {
} else if line.trim().starts_with("[") {
break;
} else if start {
if let Some((a, b)) = line.split_once("=") {
Expand Down

0 comments on commit 4aa8b36

Please sign in to comment.