Skip to content

Commit 4939782

Browse files
committed
Bump to 0.2.0
1 parent f21fb3b commit 4939782

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wallpaper-controller"
3-
version = "0.1.5"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "A utility to control Wallpaper Engine based on desktop visibility"
66

src/install/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ pub fn handle_installation(args: &Cli) {
8484
},
8585
Err(e) => {
8686
error!("Failed to set up startup service: {:?}", e);
87-
println!("\n\n\t• Setup failed! Please close all OS windows (including Task Manager, and Services) and try again.\n");
87+
println!("\n\n\t• Setup failed! Please try again.\n\tIf the issue persists please make sure to close all OS windows (including Task Manager, and Services) before retrying.\n");
8888
exit_blocking(1);
8989
}
9090
}
@@ -255,6 +255,7 @@ fn setup_startup_scheduled_task(exe_path: &Path, launch_args: Vec<OsString>) ->
255255
"/SC", "ONLOGON",
256256
"/RL", "HIGHEST",
257257
"/RU", &username,
258+
"/DELAY", "0001:15",
258259
"/F",
259260
])
260261
.output()?;

0 commit comments

Comments
 (0)