freebuff 0.0.126 → 0.0.128
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 +1 -1
- package/launcher.js +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ freebuff
|
|
|
33
33
|
|
|
34
34
|
**Which countries is Freebuff available in?** All countries. Freebuff runs in "full" mode in the US, Canada, UK, EU, and other select countries, and in "limited" mode everywhere else (or while using a VPN). See [freebuff.com](https://freebuff.com) for the full list.
|
|
35
35
|
|
|
36
|
-
**What is limited mode?** Limited mode lets you use Freebuff outside the full-access countries, or while using a VPN. It includes DeepSeek V4 Flash and MiMo 2.5, with
|
|
36
|
+
**What is limited mode?** Limited mode lets you use Freebuff outside the full-access countries, or while using a VPN. It includes DeepSeek V4 Flash and MiMo 2.5, with 6 one-hour sessions per day.
|
|
37
37
|
|
|
38
38
|
**Are you training on my data?** No. We don't share your data with third parties that would train on it or use it for another purpose, unless you choose a model clearly labeled as "Collects data for training."
|
|
39
39
|
|
package/launcher.js
CHANGED
|
@@ -1110,9 +1110,15 @@ function createLauncher(productConfig) {
|
|
|
1110
1110
|
// exe or the download is corrupt — is thrown synchronously.
|
|
1111
1111
|
let child
|
|
1112
1112
|
try {
|
|
1113
|
+
const { env: optionEnv, ...spawnOptions } = options
|
|
1113
1114
|
child = spawn(CONFIG.binaryPath, process.argv.slice(2), {
|
|
1114
1115
|
stdio: 'inherit',
|
|
1115
|
-
...
|
|
1116
|
+
...spawnOptions,
|
|
1117
|
+
env: {
|
|
1118
|
+
...process.env,
|
|
1119
|
+
...optionEnv,
|
|
1120
|
+
CODEBUFF_LAUNCHER_PID: String(process.pid),
|
|
1121
|
+
},
|
|
1116
1122
|
})
|
|
1117
1123
|
} catch (err) {
|
|
1118
1124
|
exitOnSpawnFailure(err)
|