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:
parent
13dd122b92
commit
c9a11a6843
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ fn main() {
|
|||
let mut about_data = KAboutData::from(
|
||||
QString::from("zone.xiv.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."),
|
||||
License::GPL_V3,
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue