dimcode-darwin-x64 0.1.4-beta.1 → 0.1.6-beta.0

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/bin/dimcode CHANGED
Binary file
@@ -192,7 +192,7 @@ See `references/track_changes_guide.md` for full XML examples.
192
192
 
193
193
  Quick reference — inserting text with tracking:
194
194
  ```xml
195
- <w:ins w:id="1" w:author="Editor" w:date="2026-03-21T10:00:00Z">
195
+ <w:ins w:id="1" w:author="DimAgent" w:date="2026-03-21T10:00:00Z">
196
196
  <w:r>
197
197
  <w:t>New text here</w:t>
198
198
  </w:r>
@@ -201,7 +201,7 @@ Quick reference — inserting text with tracking:
201
201
 
202
202
  Deleting text with tracking:
203
203
  ```xml
204
- <w:del w:id="2" w:author="Editor" w:date="2026-03-21T10:00:00Z">
204
+ <w:del w:id="2" w:author="DimAgent" w:date="2026-03-21T10:00:00Z">
205
205
  <w:r>
206
206
  <w:delText>Removed text</w:delText> <!-- MUST use delText, not t -->
207
207
  </w:r>
@@ -105,7 +105,7 @@ New deletion: w:id="49"
105
105
 
106
106
  ## Author and Date
107
107
 
108
- - **Author**: Free text. Use consistent strings (e.g., `"Editor"` for all automated edits)
108
+ - **Author**: Free text. Use consistent strings (e.g., `"DimAgent"` for all automated edits)
109
109
  - **Date**: ISO 8601 with UTC timezone marker: `2026-03-21T10:30:00Z`
110
110
  - Must include the `T` separator and `Z` suffix (or `+HH:MM` offset)
111
111
  - Omitting the date is allowed but not recommended
@@ -121,7 +121,7 @@ Add `<w:ins>` wrapper around new content at the target location:
121
121
  ```xml
122
122
  <w:p>
123
123
  <w:r><w:t>Existing text. </w:t></w:r>
124
- <w:ins w:id="5" w:author="Editor" w:date="2026-03-21T12:00:00Z">
124
+ <w:ins w:id="5" w:author="DimAgent" w:date="2026-03-21T12:00:00Z">
125
125
  <w:r><w:t>Proposed new text. </w:t></w:r>
126
126
  </w:ins>
127
127
  <w:r><w:t>More existing text.</w:t></w:r>
@@ -135,7 +135,7 @@ Wrap existing content in `<w:del>` and change `<w:t>` to `<w:delText>`:
135
135
  ```xml
136
136
  <w:p>
137
137
  <w:r><w:t>Keep this. </w:t></w:r>
138
- <w:del w:id="6" w:author="Editor" w:date="2026-03-21T12:01:00Z">
138
+ <w:del w:id="6" w:author="DimAgent" w:date="2026-03-21T12:01:00Z">
139
139
  <w:r>
140
140
  <w:rPr><w:b /></w:rPr>
141
141
  <w:delText>Remove this.</w:delText>
@@ -166,14 +166,14 @@ When tracked deletion spans a paragraph boundary, use `<w:pPrChange>` on the mer
166
166
  ```xml
167
167
  <w:p>
168
168
  <w:pPr>
169
- <w:pPrChange w:id="7" w:author="Editor" w:date="2026-03-21T12:05:00Z">
169
+ <w:pPrChange w:id="7" w:author="DimAgent" w:date="2026-03-21T12:05:00Z">
170
170
  <w:pPr>
171
171
  <w:pStyle w:val="Normal" />
172
172
  </w:pPr>
173
173
  </w:pPrChange>
174
174
  </w:pPr>
175
175
  <w:r><w:t>First paragraph text. </w:t></w:r>
176
- <w:del w:id="8" w:author="Editor" w:date="2026-03-21T12:05:00Z">
176
+ <w:del w:id="8" w:author="DimAgent" w:date="2026-03-21T12:05:00Z">
177
177
  <w:r><w:delText> </w:delText></w:r>
178
178
  </w:del>
179
179
  <w:r><w:t>Second paragraph text (now merged).</w:t></w:r>
@@ -188,10 +188,10 @@ The entire new paragraph is wrapped in `<w:ins>`:
188
188
  <w:p>
189
189
  <w:pPr>
190
190
  <w:rPr>
191
- <w:ins w:id="9" w:author="Editor" w:date="2026-03-21T12:10:00Z" />
191
+ <w:ins w:id="9" w:author="DimAgent" w:date="2026-03-21T12:10:00Z" />
192
192
  </w:rPr>
193
193
  </w:pPr>
194
- <w:ins w:id="10" w:author="Editor" w:date="2026-03-21T12:10:00Z">
194
+ <w:ins w:id="10" w:author="DimAgent" w:date="2026-03-21T12:10:00Z">
195
195
  <w:r><w:t>Entirely new paragraph.</w:t></w:r>
196
196
  </w:ins>
197
197
  </w:p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dimcode-darwin-x64",
3
- "version": "0.1.4-beta.1",
3
+ "version": "0.1.6-beta.0",
4
4
  "description": "dimcode binary for macOS x64 (Intel)",
5
5
  "os": [
6
6
  "darwin"