Compare commits

...

2 Commits

Author SHA1 Message Date
zhom 689ac8e3ca fix: windows build correct string literal 2025-07-07 07:34:55 +04:00
zhom 0e1c5dcfb6 docs: add feature description 2025-07-07 07:33:41 +04:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -38,6 +38,7 @@
## Features
- Create unlimited number of local browser profiles completely isolated from each other
- Bypass website restrictions and avoid getting banned by using anti-detection features powered by [Camoufox](https://camoufox.com/)
- Proxy support with basic auth for all browsers except for TOR Browser
- Import profiles from your existing browsers
- Automatic updates both for browsers and for the app itself
+1 -1
View File
@@ -238,7 +238,7 @@ mod windows {
let hours = &offset_str[..colon_pos];
let minutes = &offset_str[colon_pos + 1..];
if let (Ok(h), Ok(m)) = (hours.parse::<i32>(), minutes.parse::<i32>()) {
return format!("{:+03d}:{:02d}", h, m);
return format!("{:+03}:{:02}", h, m);
}
}
}