Skip to content

Commit

Permalink
chore(release): version v0.9.811 (#1589)
Browse files Browse the repository at this point in the history
Description
---
Onwards and upwards
  • Loading branch information
brianp authored Feb 28, 2025
2 parents 6e57869 + 91f5da7 commit 39ad3bd
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tari-universe",
"private": true,
"version": "0.9.810",
"version": "0.9.811",
"type": "module",
"scripts": {
"dev": "vite dev --mode development",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Tari Universe"
edition = "2021"
name = "tari-universe"
repository = "https://github.com/tari-project/universe"
version = "0.9.810"
version = "0.9.811"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
8 changes: 6 additions & 2 deletions src-tauri/src/auto_launcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ impl AutoLauncher {
auto_launcher.enable()?;
// To startup application as admin on windows, we need to create a task scheduler
#[cfg(target_os = "windows")]
self.toggle_windows_admin_auto_launcher(true).await?;
let _unused = self.toggle_windows_admin_auto_launcher(true).await.inspect_err(|e| {
warn!(target: LOG_TARGET, "Failed to enable admin auto-launcher: {}", e)
});
}
_ => {
auto_launcher.enable()?;
Expand All @@ -126,7 +128,9 @@ impl AutoLauncher {
match PlatformUtils::detect_current_os() {
CurrentOperatingSystem::Windows => {
#[cfg(target_os = "windows")]
self.toggle_windows_admin_auto_launcher(false).await?;
let _unused = self.toggle_windows_admin_auto_launcher(false).await.inspect_err(|e| {
warn!(target: LOG_TARGET, "Failed to disable admin auto-launcher: {}", e)
});
auto_launcher.disable()?;
}
_ => {
Expand Down
5 changes: 3 additions & 2 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,10 @@ async fn setup_inner(
let mm_proxy_manager = state.mm_proxy_manager.clone();

let is_auto_launcher_enabled = state.config.read().await.should_auto_launch();
AutoLauncher::current()
let _unused = AutoLauncher::current()
.initialize_auto_launcher(is_auto_launcher_enabled)
.await?;
.await
.inspect_err(|e| error!(target: LOG_TARGET, "Could not initialize auto launcher: {:?}", e));

let (tx, rx) = watch::channel("".to_string());
let progress = ProgressTracker::new(app.clone(), Some(tx));
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.9.810",
"version": "0.9.811",
"productName": "Tari Universe (Alpha)",
"mainBinaryName": "Tari Universe (Alpha)",
"identifier": "com.tari.universe.alpha",
Expand Down

0 comments on commit 39ad3bd

Please sign in to comment.