Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f9b8af88c4 | ||
|
|
8234ec7e8d | ||
|
|
5ca6dc860b |
BIN
src-tauri/icons/fnos.icns
vendored
Normal file
BIN
src-tauri/icons/lobechat.icns
vendored
BIN
src-tauri/icons/pve.icns
vendored
Normal file
4
src-tauri/pake.json
vendored
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"url": "https://lobechat.com/",
|
"url": "https://192.168.31.2:8006/",
|
||||||
"url_type": "web",
|
"url_type": "web",
|
||||||
"hide_title_bar": false,
|
"hide_title_bar": true,
|
||||||
"fullscreen": false,
|
"fullscreen": false,
|
||||||
"width": 1200,
|
"width": 1200,
|
||||||
"height": 780,
|
"height": 780,
|
||||||
|
|||||||
BIN
src-tauri/png/fnos_256.ico
vendored
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
src-tauri/png/fnos_32.ico
vendored
Normal file
|
After Width: | Height: | Size: 945 B |
BIN
src-tauri/png/fnos_512.png
vendored
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
src-tauri/png/lobechat_256.ico
vendored
|
Before Width: | Height: | Size: 32 KiB |
BIN
src-tauri/png/lobechat_32.ico
vendored
|
Before Width: | Height: | Size: 2.7 KiB |
BIN
src-tauri/png/lobechat_512.png
vendored
|
Before Width: | Height: | Size: 67 KiB |
BIN
src-tauri/png/pve_256.ico
vendored
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
src-tauri/png/pve_32.ico
vendored
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
src-tauri/png/pve_512.png
vendored
Normal file
|
After Width: | Height: | Size: 43 KiB |
@@ -98,7 +98,7 @@ pub fn set_window(app: &mut App, config: &PakeConfig, tauri_config: &Config) ->
|
|||||||
#[cfg(all(not(target_os = "windows"), not(target_os = "macos")))]
|
#[cfg(all(not(target_os = "windows"), not(target_os = "macos")))]
|
||||||
let mut linux_browser_args = String::from("--disable-blink-features=AutomationControlled");
|
let mut linux_browser_args = String::from("--disable-blink-features=AutomationControlled");
|
||||||
|
|
||||||
if window_config.ignore_certificate_errors {
|
if !window_config.ignore_certificate_errors {
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
{
|
{
|
||||||
windows_browser_args.push_str(" --ignore-certificate-errors");
|
windows_browser_args.push_str(" --ignore-certificate-errors");
|
||||||
|
|||||||
6
src-tauri/tauri.conf.json
vendored
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"productName": "Lobechat",
|
"productName": "Proxmox Virtual Environment",
|
||||||
"identifier": "com.lobehub.Lobechat",
|
"identifier": "com.pve.Proxmox",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"app": {
|
"app": {
|
||||||
"withGlobalTauri": true,
|
"withGlobalTauri": true,
|
||||||
"trayIcon": {
|
"trayIcon": {
|
||||||
"iconPath": "png/lobechat_512.png",
|
"iconPath": "png/pve_512.png",
|
||||||
"iconAsTemplate": false,
|
"iconAsTemplate": false,
|
||||||
"id": "pake-tray"
|
"id": "pake-tray"
|
||||||
},
|
},
|
||||||
|
|||||||
4
src-tauri/tauri.linux.conf.json
vendored
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"productName": "lobechat",
|
"productName": "Proxmox Virtual Environment",
|
||||||
"bundle": {
|
"bundle": {
|
||||||
"icon": ["png/lobechat_512.png"],
|
"icon": ["png/pve_512.png"],
|
||||||
"active": true,
|
"active": true,
|
||||||
"linux": {
|
"linux": {
|
||||||
"deb": {
|
"deb": {
|
||||||
|
|||||||
2
src-tauri/tauri.macos.conf.json
vendored
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"bundle": {
|
"bundle": {
|
||||||
"icon": ["icons/lobechat.icns"],
|
"icon": ["icons/pve.icns"],
|
||||||
"active": true,
|
"active": true,
|
||||||
"targets": ["dmg"]
|
"targets": ["dmg"]
|
||||||
}
|
}
|
||||||
|
|||||||
4
src-tauri/tauri.windows.conf.json
vendored
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"bundle": {
|
"bundle": {
|
||||||
"icon": ["png/lobechat_256.ico", "png/lobechat_32.ico"],
|
"icon": ["png/pve_256.ico", "png/pve_32.ico"],
|
||||||
"active": true,
|
"active": true,
|
||||||
"resources": ["png/lobechat_32.ico"],
|
"resources": ["png/pve_32.ico"],
|
||||||
"targets": ["msi"],
|
"targets": ["msi"],
|
||||||
"windows": {
|
"windows": {
|
||||||
"digestAlgorithm": "sha256",
|
"digestAlgorithm": "sha256",
|
||||||
|
|||||||