codex-linux 1.0.0 → 1.0.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.
@@ -101,33 +101,6 @@ jobs:
101
101
  env:
102
102
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
103
103
 
104
- npm-publish:
105
- runs-on: ubuntu-latest
106
- needs: [test, build]
107
- if: startsWith(github.ref, 'refs/tags/v')
108
-
109
- steps:
110
- - uses: actions/checkout@v4
111
-
112
- - name: Use Node.js
113
- uses: actions/setup-node@v4
114
- with:
115
- node-version: '20.x'
116
- registry-url: 'https://registry.npmjs.org'
117
-
118
- - name: Update package version
119
- run: |
120
- VERSION=${GITHUB_REF#refs/tags/v}
121
- cd packages/npm-installer
122
- npm version $VERSION --no-git-tag-version
123
-
124
- - name: Publish to NPM
125
- run: |
126
- cd packages/npm-installer
127
- npm publish --access public
128
- env:
129
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
130
-
131
104
  docker:
132
105
  runs-on: ubuntu-latest
133
106
  needs: test
package/README.md CHANGED
@@ -14,48 +14,11 @@ A Linux port of OpenAI Codex - A powerful command center for managing multiple A
14
14
 
15
15
  ## Installation
16
16
 
17
- ### Quick Install (Recommended)
18
-
19
- Choose one of these two universal methods:
20
-
21
- #### Option 1: Curl (Universal - All Linux Distributions)
22
-
23
- ```bash
24
- curl -fsSL https://codex-linux.dev/install.sh | bash
25
- ```
26
-
27
- This installs the AppImage to `~/.local/bin/` and creates a desktop entry.
28
-
29
- **With sudo (system-wide install):**
30
- ```bash
31
- curl -fsSL https://codex-linux.dev/install.sh | bash -s -- --system
32
- ```
33
-
34
- **Uninstall:**
35
- ```bash
36
- curl -fsSL https://codex-linux.dev/install.sh | bash -s -- --uninstall
37
- ```
38
-
39
- #### Option 2: NPM (For Node.js developers)
40
-
41
- ```bash
42
- # Install globally
43
- npm install -g codex-linux
44
-
45
- # Or run without installing
46
- npx codex-linux
47
- ```
48
-
49
- **Update:**
50
- ```bash
51
- npm update -g codex-linux
52
- ```
53
-
54
17
  ### Prerequisites
55
18
 
56
- - Node.js 18+ (for NPM install)
57
- - Git (for source install)
58
- - Linux (Ubuntu 20.04+, Fedora 35+, Arch Linux, etc.)
19
+ - Node.js 18+
20
+ - Git
21
+ - Linux (Ubuntu 20.04+, Fedora 35+, or Arch Linux)
59
22
 
60
23
  ### From Source
61
24
 
@@ -79,11 +42,12 @@ npm run package:linux
79
42
 
80
43
  ### Pre-built Packages
81
44
 
82
- Download the latest release from [GitHub Releases](https://github.com/ranker-org/codex-linux-app/releases):
45
+ Download the latest release:
83
46
 
84
- - **AppImage** (Universal): `Codex-Linux-x.x.x.AppImage` - Works on all distributions
85
- - **Debian/Ubuntu**: `codex-linux_x.x.x_amd64.deb`
86
- - **Fedora/RHEL**: `codex-linux-x.x.x.x86_64.rpm`
47
+ - **AppImage** (Universal): `Codex-Linux-1.0.0.AppImage`
48
+ - **Debian/Ubuntu**: `codex-linux_1.0.0_amd64.deb`
49
+ - **Fedora/RHEL**: `codex-linux-1.0.0.x86_64.rpm`
50
+ - **Arch Linux**: `codex-linux-1.0.0.pacman`
87
51
 
88
52
  ## Quick Start
89
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-linux",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A Linux port of OpenAI Codex - Multi-agent AI coding command center",
5
5
  "main": "dist/main/main.js",
6
6
  "author": "Codex Linux Team",
@@ -37,6 +37,7 @@
37
37
  "axios": "^1.6.2",
38
38
  "better-sqlite3": "^9.4.0",
39
39
  "chokidar": "^3.5.3",
40
+ "conf": "^10.2.0",
40
41
  "class-variance-authority": "^0.7.0",
41
42
  "clsx": "^2.0.0",
42
43
  "cors": "^2.8.6",
@@ -58,7 +59,7 @@
58
59
  "mongodb": "^7.1.0",
59
60
  "mysql2": "^3.17.5",
60
61
  "node-cron": "^3.0.3",
61
- "node-fetch": "^3.3.2",
62
+ "node-fetch": "^2.7.0",
62
63
  "openai": "^4.28.0",
63
64
  "pg": "^8.18.0",
64
65
  "playwright": "^1.58.2",
@@ -55,7 +55,7 @@ get_latest_version() {
55
55
  download_appimage() {
56
56
  local version=$1
57
57
  local arch=$2
58
- local url="https://github.com/${REPO}/releases/download/${version}/Codex-Linux-${version}-${arch}.AppImage"
58
+ local url="https://github.com/${REPO}/releases/download/${version}/Codex.Linux-${version#v}.AppImage"
59
59
  local output="$BINARY_NAME.AppImage"
60
60
 
61
61
  info "Downloading ${APP_NAME} ${version} (${arch})..."