Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
args: '--target aarch64-apple-darwin'
- platform: 'macos-latest'
args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-22.04'
args: ''
- platform: 'ubuntu-22.04-arm'
args: ''
- platform: 'ubuntu-latest'
args: 'NO_STRIP=1'
- platform: 'ubuntu-24.04-arm'
args: 'NO_STRIP=1'
- platform: 'windows-latest'
args: ''

Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v5

- name: install dependencies (ubuntu only)
if: startsWith(matrix.platform, 'ubuntu-22.04')
if: startsWith(matrix.platform, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
args: '--target aarch64-apple-darwin'
- platform: 'macos-latest'
args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-22.04'
args: ''
- platform: 'ubuntu-22.04-arm'
args: ''
- platform: 'ubuntu-latest'
args: 'NO_STRIP=1'
- platform: 'ubuntu-24.04-arm'
args: 'NO_STRIP=1'
- platform: 'windows-latest'
args: ''

Expand All @@ -44,7 +44,7 @@ jobs:
- uses: actions/checkout@v5

- name: install dependencies (ubuntu only)
if: startsWith(matrix.platform, 'ubuntu-22.04')
if: startsWith(matrix.platform, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@
"@fontsource/roboto": "^5.2.8",
"@mui/icons-material": "^7.3.5",
"@mui/material": "^7.3.5",
"@mui/x-data-grid": "^8.17.0",
"@mui/x-data-grid": "^8.18.0",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-os": "^2.3.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.5"
"react-router-dom": "^7.9.6"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tauri-apps/cli": "^2.9.4",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.32.0",
Expand Down
109 changes: 67 additions & 42 deletions src-tauri/Cargo.lock

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

4 changes: 2 additions & 2 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ rust-version = "1.91.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "2.5.1", features = [] }
tauri-build = { version = "2.5.2", features = [] }

[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "2.9.2", features = [] }
tauri = { version = "2.9.3", features = [] }
open = "5.3.2"
chrono = "0.4.42"
tauri-plugin-dialog = "2.4.2"
Expand Down
4 changes: 1 addition & 3 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ fn main() {
// Fix for NVIDIA
#[cfg(target_os = "linux")]
unsafe {
std::env::set_var("__GL_THREADED_OPTIMIZATIONS", "0");
std::env::set_var("__NV_DISABLE_EXPLICIT_SYNC", "1");
std::env::set_var("WEBKIT_DISABLE_DMABUF_RENDERER", "1");
std::env::set_var("WEBKIT_DISABLE_COMPOSITING_MODE", "1");
}

let shared_state = SharedState {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"windows": [
{
"fullscreen": false,
"height": 780,
"height": 880,
"resizable": true,
"title": "Advanced PortChecker",
"width": 1200
Expand Down
Loading
Loading