Skip to content

Commit 76dfa3a

Browse files
committed
Bugfix
1 parent 89b79b5 commit 76dfa3a

File tree

4 files changed

+73
-5
lines changed

4 files changed

+73
-5
lines changed

Cargo.lock

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

launcher/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "launcher"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
authors = ["Jakob Schwab <j.schwab@mail.de>"]
55
edition = "2018"
66
default-run = "launcher"

launcher/src/main_launcher.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,7 @@ fn set_panic_hook() {
14721472
let (message, location) = panic_message_split_to_message_and_location(panic_info);
14731473
let final_message = format!("{}\n\nError occured at: {}", message, location);
14741474

1475-
show_messagebox("Pixel Stitch Error", &final_message, true);
1475+
show_messagebox("Pixie Stitch Error", &final_message, true);
14761476

14771477
// NOTE: This forces the other threads to shutdown as well
14781478
std::process::abort();
@@ -1540,7 +1540,7 @@ fn main() {
15401540
}
15411541

15421542
#[cfg(not(debug_assertions))]
1543-
show_messagebox("Pixel Stitch", "Finished creating patterns. Enjoy!", false);
1543+
show_messagebox("Pixie Stitch", "Finished creating patterns. Enjoy!", false);
15441544
}
15451545

15461546
////////////////////////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)