better-ccflare 2.0.21 → 2.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -98,6 +98,10 @@ chmod +x better-ccflare-linux-arm64
98
98
  ```bash
99
99
  curl -L -o better-ccflare-macos-x86_64 https://github.com/tombii/better-ccflare/releases/latest/download/better-ccflare-macos-x86_64
100
100
  chmod +x better-ccflare-macos-x86_64
101
+
102
+ # Remove quarantine attribute (required on macOS to run unsigned binaries)
103
+ xattr -d com.apple.quarantine better-ccflare-macos-x86_64
104
+
101
105
  ./better-ccflare-macos-x86_64
102
106
  ```
103
107
 
@@ -105,9 +109,15 @@ chmod +x better-ccflare-macos-x86_64
105
109
  ```bash
106
110
  curl -L -o better-ccflare-macos-arm64 https://github.com/tombii/better-ccflare/releases/latest/download/better-ccflare-macos-arm64
107
111
  chmod +x better-ccflare-macos-arm64
112
+
113
+ # Remove quarantine attribute (required on macOS to run unsigned binaries)
114
+ xattr -d com.apple.quarantine better-ccflare-macos-arm64
115
+
108
116
  ./better-ccflare-macos-arm64
109
117
  ```
110
118
 
119
+ **macOS Gatekeeper Notice:** Our macOS binaries are not notarized by Apple as this requires a paid Apple Developer subscription. After downloading, you must remove the quarantine attribute using the `xattr` command shown above to run the binary. If you prefer not to run unsigned binaries, you can [install from source](#install-from-source) instead.
120
+
111
121
  #### Windows x86_64
112
122
  Download [`better-ccflare-windows-x64.exe`](https://github.com/tombii/better-ccflare/releases/latest/download/better-ccflare-windows-x64.exe) and run it.
113
123
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-ccflare",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "description": "Load balancer proxy for Claude API with intelligent distribution across multiple OAuth accounts to avoid rate limiting",
5
5
  "license": "MIT",
6
6
  "repository": {