Compare commits

...
Author SHA1 Message Date
zhom 1bfbb365c5 chore: version bump 2025-08-07 07:23:25 +04:00
zhom 1a15af1ded refactor: disable proxy is profile is running 2025-08-07 07:22:42 +04:00
zhom ca20ccb489 test: disable camoufox config tests while CI is rate limited 2025-08-07 07:17:58 +04:00
6 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "donutbrowser",
"private": true,
"license": "AGPL-3.0",
"version": "0.8.0",
"version": "0.8.1",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
+1 -1
View File
@@ -983,7 +983,7 @@ dependencies = [
[[package]]
name = "donutbrowser"
version = "0.8.0"
version = "0.8.1"
dependencies = [
"async-trait",
"base64 0.22.1",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "donutbrowser"
version = "0.8.0"
version = "0.8.1"
description = "Simple Yet Powerful Browser Orchestrator"
authors = ["zhom@github"]
edition = "2021"
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Donut Browser",
"version": "0.8.0",
"version": "0.8.1",
"identifier": "com.donutbrowser",
"build": {
"beforeDevCommand": "pnpm dev",
+2
View File
@@ -558,6 +558,7 @@ async fn test_nodecar_camoufox_configuration_options(
}
/// Test Camoufox generate-config command with basic options
#[ignore = "CI is rate limited for camoufox download"]
#[tokio::test]
async fn test_nodecar_camoufox_generate_config_basic(
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
@@ -619,6 +620,7 @@ async fn test_nodecar_camoufox_generate_config_basic(
}
/// Test Camoufox generate-config command with custom fingerprint
#[ignore = "CI is rate limited for camoufox download"]
#[tokio::test]
async fn test_nodecar_camoufox_generate_config_custom_fingerprint(
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
+3 -1
View File
@@ -769,7 +769,9 @@ export function ProfilesDataTable({
onClick={() => {
onProxySettings(profile);
}}
disabled={!browserState.isClient || isBrowserUpdating}
disabled={
!browserState.isClient || isBrowserUpdating || isRunning
}
>
Configure Proxy
</DropdownMenuItem>