@gengjiawen/os-init 1.8.0 → 1.9.1
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/CHANGELOG.md +14 -0
- package/android-setup.md +3 -3
- package/build/index.js +1 -1
- package/libs/index.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.9.1](https://github.com/gengjiawen/os-init/compare/v1.9.0...v1.9.1) (2025-11-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update unzip-url package version to 1.1.0 in package.json and pnpm-lock.yaml ([e800522](https://github.com/gengjiawen/os-init/commit/e8005229e0a4d28a91e0c82aceec4e41150ec8dc))
|
|
9
|
+
|
|
10
|
+
## [1.9.0](https://github.com/gengjiawen/os-init/compare/v1.8.0...v1.9.0) (2025-11-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* bump codex base model ([498bcc3](https://github.com/gengjiawen/os-init/commit/498bcc3b1e8a787ee61531b314c792127cd6c80b))
|
|
16
|
+
|
|
3
17
|
## [1.8.0](https://github.com/gengjiawen/os-init/compare/v1.7.1...v1.8.0) (2025-11-10)
|
|
4
18
|
|
|
5
19
|
|
package/android-setup.md
CHANGED
|
@@ -58,7 +58,7 @@ os-init set-android --skip-env-vars
|
|
|
58
58
|
- Internet connection to download Android SDK
|
|
59
59
|
- Node.js 22.12.0 or higher
|
|
60
60
|
|
|
61
|
-
The script uses `@
|
|
61
|
+
The script uses `@gengjiawen/unzip-url` package to download and extract the Android SDK, so no external `curl` or `unzip` tools are required. No sudo access is needed as the SDK is installed in your home directory.
|
|
62
62
|
|
|
63
63
|
## Environment Variables
|
|
64
64
|
|
|
@@ -93,11 +93,13 @@ sdkmanager --list
|
|
|
93
93
|
## Platform-Specific Notes
|
|
94
94
|
|
|
95
95
|
### macOS
|
|
96
|
+
|
|
96
97
|
- The SDK is downloaded from Google's macOS-specific distribution
|
|
97
98
|
- Works on both Intel and Apple Silicon Macs
|
|
98
99
|
- No sudo permissions required
|
|
99
100
|
|
|
100
101
|
### Linux
|
|
102
|
+
|
|
101
103
|
- The SDK is downloaded from Google's Linux-specific distribution
|
|
102
104
|
- Tested on Ubuntu and Debian-based systems
|
|
103
105
|
- No sudo permissions required when installing to home directory
|
|
@@ -124,5 +126,3 @@ If the Android SDK download fails, check your internet connection and try again.
|
|
|
124
126
|
- **Build Tools 36.0.0** - Tools for building Android apps
|
|
125
127
|
- **CMake 3.30.5** - For native code compilation
|
|
126
128
|
- **NDK 29.0.14206865** - Native Development Kit for C/C++ code
|
|
127
|
-
|
|
128
|
-
|
package/build/index.js
CHANGED
|
@@ -98,7 +98,7 @@ function getCodexConfigDir() {
|
|
|
98
98
|
return path.join(os.homedir(), '.codex');
|
|
99
99
|
}
|
|
100
100
|
const CODEX_CONFIG_TOML_TEMPLATE = `model_provider = "jw"
|
|
101
|
-
model = "gpt-5"
|
|
101
|
+
model = "gpt-5.1"
|
|
102
102
|
model_reasoning_effort = "high"
|
|
103
103
|
disable_response_storage = true
|
|
104
104
|
preferred_auth_method = "apikey"
|
package/libs/index.ts
CHANGED
|
@@ -121,7 +121,7 @@ function getCodexConfigDir(): string {
|
|
|
121
121
|
|
|
122
122
|
/** Template for Codex config.toml */
|
|
123
123
|
const CODEX_CONFIG_TOML_TEMPLATE = `model_provider = "jw"
|
|
124
|
-
model = "gpt-5"
|
|
124
|
+
model = "gpt-5.1"
|
|
125
125
|
model_reasoning_effort = "high"
|
|
126
126
|
disable_response_storage = true
|
|
127
127
|
preferred_auth_method = "apikey"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gengjiawen/os-init",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.9.1",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"bin": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"postbuild": "cpy '**/*' '!**/*.ts' ../build/ --cwd=libs --parents"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@gengjiawen/unzip-url": "^1.
|
|
22
|
+
"@gengjiawen/unzip-url": "^1.1.0",
|
|
23
23
|
"commander": "^12.1.0",
|
|
24
24
|
"ip": "^2.0.1",
|
|
25
25
|
"execa": "^8.0.1"
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"@types/ip": "^1.1.3",
|
|
39
39
|
"@types/jest": "29.5.12",
|
|
40
40
|
"@types/node": "24.1.0",
|
|
41
|
-
"cpy-cli": "^
|
|
41
|
+
"cpy-cli": "^6.0.0",
|
|
42
42
|
"husky": "9.1.6",
|
|
43
43
|
"jest": "29.7.0",
|
|
44
44
|
"lint-staged": "^15.2.2",
|
|
45
45
|
"nodemon": "3.1.4",
|
|
46
46
|
"prettier": "3.5.3",
|
|
47
|
-
"rimraf": "
|
|
47
|
+
"rimraf": "6.1.2",
|
|
48
48
|
"ts-jest": "29.2.4",
|
|
49
49
|
"ts-node": "^10.9.1",
|
|
50
50
|
"typescript": "5.6.3"
|