Skip to content

Commit 17b3513

Browse files
committed
codex 0.137.0
1 parent 5af6019 commit 17b3513

10 files changed

Lines changed: 102 additions & 94 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ build/install/codex/bin/codex --version
6161
- The wrapper uses the official Solaris Rust standalone installer target
6262
`x86_64-pc-solaris`.
6363
- The pinned Codex source is the upstream `openai/codex` release tag
64-
`rust-v0.136.0`, built from its `codex-rs/` workspace.
64+
`rust-v0.137.0`, built from its `codex-rs/` workspace.
6565
- Set `SOLARIS_CODEX_PROXY_SETUP=/path/to/proxy.sh` if your host needs an
6666
environment hook before downloads.
6767
- The codex build clears inherited Solaris `LD_*` hardening variables because

patches/codex/0002-tui-disable-unsupported-clipboard-backends-on-solaris.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Why it is needed:
1111
at runtime when clipboard actions are attempted on Solaris
1212

1313
diff --git a/codex-rs/tui/Cargo.toml b/codex-rs/tui/Cargo.toml
14-
index ffc5c5a..f8c345a 100644
14+
index 581f67b..a8ce06f 100644
1515
--- a/codex-rs/tui/Cargo.toml
1616
+++ b/codex-rs/tui/Cargo.toml
1717
@@ -144,9 +144,9 @@ windows-sys = { version = "0.52", features = [
@@ -57,7 +57,7 @@ index 1ad369d..8781d42 100644
5757
#[cfg(target_os = "linux")]
5858
fn wsl_clipboard_copy(text: &str) -> Result<(), String> {
5959
diff --git a/codex-rs/tui/src/clipboard_paste.rs b/codex-rs/tui/src/clipboard_paste.rs
60-
index 4d28b36..a2473bf 100644
60+
index 55ca6ca..fc7754c 100644
6161
--- a/codex-rs/tui/src/clipboard_paste.rs
6262
+++ b/codex-rs/tui/src/clipboard_paste.rs
6363
@@ -1,5 +1,6 @@
@@ -93,8 +93,8 @@ index 4d28b36..a2473bf 100644
9393
pub fn paste_image_to_temp_png() -> Result<(PathBuf, PastedImageInfo), PasteImageError> {
9494
// First attempt: read image from system clipboard via arboard (native paths or image data).
9595
match paste_image_as_png() {
96-
@@ -236,6 +244,13 @@ pub fn paste_image_to_temp_png() -> Result<(PathBuf, PastedImageInfo), PasteImag
97-
))
96+
@@ -242,6 +250,13 @@ pub(crate) fn normalize_pasted_search_query(pasted: &str) -> Option<String> {
97+
(!normalized.is_empty()).then_some(normalized)
9898
}
9999

100100
+#[cfg(target_os = "solaris")]

0 commit comments

Comments
 (0)