Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace the hardcoded version with a dynamic value in the title name #64

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,14 @@ fn main() -> Result<(), eframe::Error> {
app_icon.height = icon_height;

let options = eframe::NativeOptions {
viewport: egui::ViewportBuilder::default().with_inner_size([WINDOW_WIDTH, WINDOW_HEIGHT])
.with_icon(app_icon),
viewport: egui::ViewportBuilder::default()
.with_title(format!("ER Save Editor {}", env!("CARGO_PKG_VERSION")))
.with_inner_size([WINDOW_WIDTH, WINDOW_HEIGHT])
.with_icon(app_icon),
..Default::default()
};

eframe::run_native("ER Save Editor 0.0.21", options, Box::new(|creation_context| {
eframe::run_native("ER Save Editor", options, Box::new(|creation_context| {
let mut fonts = egui::FontDefinitions::default();
egui_phosphor::add_to_fonts(&mut fonts, egui_phosphor::Variant::Regular);
egui_phosphor::add_to_fonts(&mut fonts, egui_phosphor::Variant::Fill);
Expand Down