Compare commits
5 Commits
fnOS
...
notion-cal
| Author | SHA1 | Date | |
|---|---|---|---|
| 5bd1bf5ca3 | |||
|
|
3b454d4100 | ||
|
|
394ad0dac5 | ||
|
|
958824008a | ||
| a804376c9c |
BIN
src-tauri/icons/fnos.icns
vendored
BIN
src-tauri/icons/notion-calendar.icns
vendored
Normal file
BIN
src-tauri/icons/notion.icns
vendored
Normal file
BIN
src-tauri/icons/perplexity.icns
vendored
Normal file
BIN
src-tauri/icons/weread.icns
vendored
4
src-tauri/pake.json
vendored
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"windows": [
|
||||
{
|
||||
"url": "https://192.168.31.3:5667/",
|
||||
"url": "https://calendar.notion.so/",
|
||||
"url_type": "web",
|
||||
"hide_title_bar": true,
|
||||
"fullscreen": false,
|
||||
@@ -33,6 +33,6 @@
|
||||
},
|
||||
"system_tray_path": "icons/icon.png",
|
||||
"inject": [],
|
||||
"proxy_url": "",
|
||||
"proxy_url": "http://192.168.31.5:10808",
|
||||
"multi_instance": false
|
||||
}
|
||||
|
||||
BIN
src-tauri/png/fnos_256.ico
vendored
|
Before Width: | Height: | Size: 14 KiB |
BIN
src-tauri/png/fnos_32.ico
vendored
|
Before Width: | Height: | Size: 945 B |
BIN
src-tauri/png/fnos_512.png
vendored
|
Before Width: | Height: | Size: 39 KiB |
BIN
src-tauri/png/notion-calendar_256.ico
vendored
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
BIN
src-tauri/png/notion-calendar_32.ico
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
src-tauri/png/notion-calendar_512.png
vendored
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
src-tauri/png/notion_256.ico
vendored
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
src-tauri/png/notion_32.ico
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src-tauri/png/notion_512.png
vendored
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
src-tauri/png/perplexity_256.ico
vendored
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
src-tauri/png/perplexity_32.ico
vendored
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
src-tauri/png/perplexity_512.png
vendored
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
src-tauri/png/weread_256.ico
vendored
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 24 KiB |
BIN
src-tauri/png/weread_32.ico
vendored
|
Before Width: | Height: | Size: 803 B After Width: | Height: | Size: 2.5 KiB |
BIN
src-tauri/png/weread_512.png
vendored
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 27 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")))]
|
||||
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")]
|
||||
{
|
||||
windows_browser_args.push_str(" --ignore-certificate-errors");
|
||||
|
||||
6
src-tauri/tauri.conf.json
vendored
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"productName": "FnOS",
|
||||
"identifier": "com.feiniu.FnOS",
|
||||
"productName": "Notion Calendar",
|
||||
"identifier": "com.notion-calendar.NotionCalendar",
|
||||
"version": "1.0.0",
|
||||
"app": {
|
||||
"withGlobalTauri": true,
|
||||
"trayIcon": {
|
||||
"iconPath": "png/fnos_512.png",
|
||||
"iconPath": "png/notion-calendar_512.png",
|
||||
"iconAsTemplate": false,
|
||||
"id": "pake-tray"
|
||||
},
|
||||
|
||||
4
src-tauri/tauri.linux.conf.json
vendored
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"productName": "fnos",
|
||||
"productName": "notion-calendar",
|
||||
"bundle": {
|
||||
"icon": ["png/fnos_512.png"],
|
||||
"icon": ["png/notion-calendar_512.png"],
|
||||
"active": true,
|
||||
"linux": {
|
||||
"deb": {
|
||||
|
||||
2
src-tauri/tauri.macos.conf.json
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"bundle": {
|
||||
"icon": ["icons/fnos.icns"],
|
||||
"icon": ["icons/notion.icns"],
|
||||
"active": true,
|
||||
"targets": ["dmg"]
|
||||
}
|
||||
|
||||
4
src-tauri/tauri.windows.conf.json
vendored
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"bundle": {
|
||||
"icon": ["png/fnos_256.ico", "png/fnos_32.ico"],
|
||||
"icon": ["png/notion-calendar_256.ico", "png/notion-calendar_32.ico"],
|
||||
"active": true,
|
||||
"resources": ["png/fnos_32.ico"],
|
||||
"resources": ["png/notion-calendar_32.ico"],
|
||||
"targets": ["msi"],
|
||||
"windows": {
|
||||
"digestAlgorithm": "sha256",
|
||||
|
||||