Skip to content

Commit

Permalink
new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Aug 25, 2024
1 parent 6a8599d commit 6c16a79
Show file tree
Hide file tree
Showing 50 changed files with 1 addition and 2 deletions.
Binary file modified src-tauri/icons/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/128x128@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square107x107Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square142x142Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square150x150Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square284x284Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square30x30Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square310x310Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square44x44Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square71x71Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square89x89Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/StoreLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src-tauri/icons/android/mipmap-hdpi/ic_launcher.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src-tauri/icons/android/mipmap-mdpi/ic_launcher.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file modified src-tauri/icons/icon.icns
Binary file not shown.
Binary file modified src-tauri/icons/icon.ico
Binary file not shown.
Binary file modified src-tauri/icons/icon.png
Binary file removed src-tauri/icons/ios/AppIcon-20x20@1x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-20x20@2x-1.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-20x20@2x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-20x20@3x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-29x29@1x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-29x29@2x-1.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-29x29@2x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-29x29@3x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-40x40@1x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-40x40@2x-1.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-40x40@2x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-40x40@3x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-512@2x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-60x60@2x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-60x60@3x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-76x76@1x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-76x76@2x.png
Diff not rendered.
Binary file removed src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png
Diff not rendered.
3 changes: 1 addition & 2 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ mod utils;
use tauri::{Manager, Listener};
use tauri_plugin_autostart::MacosLauncher;
use tauri_plugin_prevent_default::Flags;
use tauri::WindowEvent;

fn main() {
tauri::Builder::default()
Expand Down Expand Up @@ -60,7 +59,7 @@ fn main() {
})
.on_window_event(|app, event| {
#[cfg(not(dev))]
if let WindowEvent::Focused(false) = event {
if let tauri::WindowEvent::Focused(false) = event {
if let Some(window) = app.get_webview_window("main") {
let _ = window.hide();
}
Expand Down

0 comments on commit 6c16a79

Please sign in to comment.