Skip to content

Commit 197464f

Browse files
committed
2026-08-31 21:05:03 commit
1 parent 94dee92 commit 197464f

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

client_cli/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "free-proxy"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
license = "MIT OR Apache-2.0"
55
edition = "2021"
66
authors = ["ZEROLINGG <bcsz8833221@gmail.com>"]

client_tauri/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "free-proxy",
4-
"version": "0.2.4",
4+
"version": "0.2.5",
55
"identifier": "com.zz.freeproxy",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

lib_test/src/cs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ ansi_log = "true"
132132
&& !line.contains("All rights reserved.")
133133
&& !line.contains("Install the latest PowerShell for new features and improvements!")
134134
&& !line.contains("https://aka.ms/PSWindows")
135-
&& !(line == "PS > ")
136-
&& !(line == "$ ")
135+
&& !(line == "PS >")
136+
&& !(line == "$")
137137
&& !(line.contains("sh-") && line.contains("$"))
138138
&& !line.contains("Loading personal and system profiles took")
139139

server-rs/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "free-proxy"
3-
version = "0.2.3"
3+
version = "0.2.5"
44
license = "MIT OR Apache-2.0"
55
edition = "2021"
66
authors = ["ZEROLINGG <bcsz8833221@gmail.com>"]

server-rs/src/proxy_http.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ pub(crate) async fn proxy(
352352
let mut body_stream = body_stream;
353353

354354
let mut content_length_zero = false;
355-
let mut is_sse = false; // 用于判断是否为 Server-Sent Events
355+
let mut is_sse = false;
356356

357357
let mut head_buf = Vec::with_capacity(512);
358358
let _ = write!(&mut head_buf, "HTTP/1.1 {} {}\r\n", status, status_text(status));

0 commit comments

Comments
 (0)