codex-plus-patcher 0.1.0 → 0.1.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/README.md
CHANGED
|
@@ -6,7 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
Codex Plus is an experimental local demonstrator for changes that can be layered onto an installed Codex desktop app without redistributing the app itself. The patcher is meant for technically curious users who want to inspect, test, or iterate on small binary patch sets against their own local copy.
|
|
8
8
|
|
|
9
|
-
The current built-in patches
|
|
9
|
+
The current built-in patches:
|
|
10
|
+
|
|
11
|
+
- expose nested git repositories in the Review pane
|
|
12
|
+
- add user bubble color controls in Appearance settings
|
|
10
13
|
|
|
11
14
|
## How It Works
|
|
12
15
|
|
package/package.json
CHANGED
package/src/core/patch-engine.js
CHANGED
|
@@ -6,7 +6,7 @@ const { patchAsar, sha256File } = require("./asar");
|
|
|
6
6
|
const { readPlistValue, replacePlistString, setPlistBuddyValue } = require("./plist");
|
|
7
7
|
|
|
8
8
|
const ASAR_PATH_IN_BUNDLE = "Contents/Resources/app.asar";
|
|
9
|
-
const PATCHER_REPO_URL = "https://github.com/
|
|
9
|
+
const PATCHER_REPO_URL = "https://github.com/michaelw/codex-plus-patcher";
|
|
10
10
|
|
|
11
11
|
function run(command, args) {
|
|
12
12
|
return new Promise((resolve, reject) => {
|
|
@@ -46,7 +46,7 @@ const codexPlusDisclaimerBody = [
|
|
|
46
46
|
function patchAboutDialog(text, context = {}) {
|
|
47
47
|
const appliedPatches = context.appliedPatches || [];
|
|
48
48
|
const lines = [
|
|
49
|
-
`Patcher: ${context.patcherRepoUrl || "https://github.com/
|
|
49
|
+
`Patcher: ${context.patcherRepoUrl || "https://github.com/michaelw/codex-plus-patcher"}`,
|
|
50
50
|
`Patcher commit: ${context.patcherGitSha || "unknown"}`,
|
|
51
51
|
`Source app.asar: ${context.sourceAsarSha256 || "unknown"}`,
|
|
52
52
|
"",
|