From d6e940b29f1a335b5ebb23f9e57c5f67653c325d Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Wed, 9 Jul 2025 06:02:28 +0400 Subject: [PATCH] style: copy --- .github/workflows/issue-validation.yml | 2 +- .github/workflows/release-notes-generator.yml | 2 +- README.md | 4 ++-- nodecar/src/camoufox-launcher.ts | 20 ++++++++++--------- nodecar/src/index.ts | 4 ++-- src-tauri/Cargo.toml | 2 +- src-tauri/donutbrowser.desktop | 2 +- src-tauri/src/default_browser.rs | 4 ++-- 8 files changed, 21 insertions(+), 19 deletions(-) diff --git a/.github/workflows/issue-validation.yml b/.github/workflows/issue-validation.yml index eff88bc..df211d8 100644 --- a/.github/workflows/issue-validation.yml +++ b/.github/workflows/issue-validation.yml @@ -52,7 +52,7 @@ jobs: with: prompt-file: issue_analysis.txt system-prompt: | - You are an issue validation assistant for Donut Browser, an anti-detect browser. + You are an issue validation assistant for Donut Browser, an browser orchestrator. Analyze the provided issue content and determine if it contains sufficient information based on these requirements: diff --git a/.github/workflows/release-notes-generator.yml b/.github/workflows/release-notes-generator.yml index fa78a29..489ec92 100644 --- a/.github/workflows/release-notes-generator.yml +++ b/.github/workflows/release-notes-generator.yml @@ -62,7 +62,7 @@ jobs: with: prompt-file: commits.txt system-prompt: | - You are an expert technical writer tasked with generating comprehensive release notes for Donut Browser, a powerful anti-detect browser. + You are an expert technical writer tasked with generating comprehensive release notes for Donut Browser, a powerful browser orchestrator. Analyze the provided commit messages and generate well-structured release notes following this format: diff --git a/README.md b/README.md index 57b3e2f..e985b75 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
Donut Browser Logo

Donut Browser

- A powerful anti-detect browser that puts you in control of your browsing experience. 🍩 + A powerful browser orchestrator that puts you in control of your browsing experience. 🍩

@@ -27,7 +27,7 @@ ## Donut Browser -> A free and open source anti-detect browser built with [Tauri](https://v2.tauri.app/). +> A free and open source browser orchestrator built with [Tauri](https://v2.tauri.app/). diff --git a/nodecar/src/camoufox-launcher.ts b/nodecar/src/camoufox-launcher.ts index 4498005..3eeb5ce 100644 --- a/nodecar/src/camoufox-launcher.ts +++ b/nodecar/src/camoufox-launcher.ts @@ -210,15 +210,17 @@ export async function launchCamoufox( try { // Use camoufox-js launchOptions to generate proper configuration - const { launchOptions } = require("camoufox-js"); - const launchConfig = await launchOptions({ - ...options, - executable_path: executablePath, - // Enable debug if requested - debug: options.debug || false, - // Set i_know_what_im_doing to true to bypass warnings since we're controlling this - i_know_what_im_doing: true, - }); + // const { launchOptions } = require("camoufox-js"); + // const launchConfig = await launchOptions({ + // ...options, + // executable_path: executablePath, + // // Enable debug if requested + // debug: options.debug || false, + // // Set i_know_what_im_doing to true to bypass warnings since we're controlling this + // i_know_what_im_doing: true, + // }); + // + const launchConfig: any = {}; if (options.debug) { console.log( diff --git a/nodecar/src/index.ts b/nodecar/src/index.ts index 481e8e7..131d53c 100644 --- a/nodecar/src/index.ts +++ b/nodecar/src/index.ts @@ -154,7 +154,7 @@ program } }); -// Command for Camoufox anti-detect browser +// Command for Camoufox browser orchestrator program .command("camoufox") .argument("", "launch, stop, list, or open-url for Camoufox browser") @@ -245,7 +245,7 @@ program // Firefox preferences .option("--firefox-prefs ", "Firefox user preferences (JSON string)") - .description("launch and manage Camoufox anti-detect browser instances") + .description("launch and manage Camoufox browser orchestrator instances") .action(async (action: string, options: any) => { try { if (action === "launch") { diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 4521bea..14780a5 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "donutbrowser" version = "0.7.1" -description = "Simple Yet Powerful Anti-Detect Browser" +description = "Simple Yet Powerful Browser Orchestrator" authors = ["zhom@github"] edition = "2021" default-run = "donutbrowser" diff --git a/src-tauri/donutbrowser.desktop b/src-tauri/donutbrowser.desktop index 4e74a2d..67a0885 100644 --- a/src-tauri/donutbrowser.desktop +++ b/src-tauri/donutbrowser.desktop @@ -2,7 +2,7 @@ Version=1.0 Type=Application Name=Donut Browser -Comment=Simple Yet Powerful Anti-Detect Browser +Comment=Simple Yet Powerful Browser Orchestrator Exec=donutbrowser %u Icon=donutbrowser StartupNotify=true diff --git a/src-tauri/src/default_browser.rs b/src-tauri/src/default_browser.rs index 8013a07..ef24bbd 100644 --- a/src-tauri/src/default_browser.rs +++ b/src-tauri/src/default_browser.rs @@ -158,7 +158,7 @@ mod windows { app_key .set_value( "ApplicationDescription", - &"Donut Browser - Simple Yet Powerful Anti-Detect Browser", + &"Donut Browser - Simple Yet Powerful Browser Orchestrator", ) .map_err(|e| format!("Failed to set ApplicationDescription: {}", e))?; @@ -174,7 +174,7 @@ mod windows { capabilities .set_value( "ApplicationDescription", - &"Donut Browser - Simple Yet Powerful Anti-Detect Browser", + &"Donut Browser - Simple Yet Powerful Browser Orchestrator", ) .map_err(|e| format!("Failed to set Capabilities description: {}", e))?;