From db9f09a0b21f8dc366a0712104ba26608584cd8f Mon Sep 17 00:00:00 2001 From: NotNite Date: Thu, 2 Feb 2023 20:26:48 -0500 Subject: [PATCH] update error messages --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index bc4c48c..6f0ce8a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -216,7 +216,7 @@ fn main() -> anyhow::Result<()> { Ok(config) => config, Err(e) => { show_error( - "An error occured trying to fetch information required for GeezShade.", + "An error occured trying to fetch information required for GeezShade. This may be because you are offline, the server is down, or the installer is critically out of date.\nTry downloading the latest version at https://notnite.com/geezshade or try again later.", format!("{:?}", e), ); @@ -253,7 +253,7 @@ fn main() -> anyhow::Result<()> { } if let Err(e) = do_the_thing(xiv_install.to_path_buf(), config) { - show_error("An error occured.", format!("{:?}", e)); + show_error("An error occured setting up ReShade.", format!("{:?}", e)); return Err(e); }