1
Fork 0
mirror of https://github.com/redstrate/Auracite.git synced 2025-04-24 13:37:45 +00:00

Replace option_env! with env

This commit is contained in:
Joshua Goins 2025-03-10 21:12:53 -04:00
parent 13dd122b92
commit c9a11a6843

View file

@ -30,7 +30,7 @@ fn main() {
let mut about_data = KAboutData::from( let mut about_data = KAboutData::from(
QString::from("zone.xiv.auracite"), QString::from("zone.xiv.auracite"),
i18nc("@title", "Auracite"), i18nc("@title", "Auracite"),
QString::from(option_env!("CARGO_PKG_VERSION").unwrap()), QString::from(env!("CARGO_PKG_VERSION")),
i18nc("@title", "Export your FFXIV character in portable, generic formats."), i18nc("@title", "Export your FFXIV character in portable, generic formats."),
License::GPL_V3, License::GPL_V3,
); );