Skip to content

Commit

Permalink
Merge pull request #4 from zenoxs/fix-windows-background
Browse files Browse the repository at this point in the history
Fix Windows background
  • Loading branch information
zenoxs authored May 25, 2022
2 parents 70f5570 + f6d3c46 commit c4f305c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tauri-appcenter-companion",
"private": false,
"repository": "https://github.com/zenoxs/tauri-appcenter-companion",
"version": "0.4.0",
"version": "0.4.1",
"license": "GPL-3.0",
"author": "Amaury CIVIER",
"scripts": {
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
@@ -1,6 +1,6 @@
[package]
name = "tauri-appcenter-companion"
version = "0.4.0"
version = "0.4.1"
description = "Companion app for Appcenter"
authors = ["Amaury CIVIER"]
license = "GPL-3.0"
Expand Down
5 changes: 5 additions & 0 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ use window_vibrancy::apply_mica;
#[tauri::command]
async fn frontend_ready(window: tauri::Window) {
window.get_window("main").unwrap().show().unwrap();
window
.get_window("main")
.unwrap()
.set_decorations(true)
.unwrap();
}

fn main() {
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "AC Companion",
"version": "0.4.0"
"version": "0.4.1"
},
"build": {
"distDir": "../dist",
Expand Down Expand Up @@ -78,7 +78,7 @@
"height": 600,
"transparent": true,
"resizable": true,
"decorations": true,
"decorations": false,
"fullscreen": false,
"visible": false,
"focus": true
Expand Down

0 comments on commit c4f305c

Please sign in to comment.