docrev 0.8.0 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -117,6 +117,14 @@ rev sync annotated.pdf # extract PDF comments
117
117
  rev pdf-comments annotated.pdf --append methods.md
118
118
  ```
119
119
 
120
+ Multiple reviewers sending back separate files? Merge them:
121
+
122
+ ```bash
123
+ rev merge reviewer_A.docx reviewer_B.docx # three-way merge
124
+ ```
125
+
126
+ The merge command uses the original document (auto-saved in `.rev/base.docx` on build) to detect what each reviewer changed, identifies conflicts when reviewers edit the same text differently, and lets you resolve them interactively.
127
+
120
128
  Your entire revision cycle stays in the terminal. `final_v3_REAL_final.docx` is over.
121
129
 
122
130
  ## Getting Started
@@ -271,6 +279,7 @@ Cross-references: `@fig:label`, `@tbl:label`, `@eq:label` → "Figure 1", "Table
271
279
  | Resolve comment | `rev resolve file.md -n 1` |
272
280
  | Show contributors | `rev contributors` |
273
281
  | Lookup ORCID | `rev orcid 0000-0002-1825-0097` |
282
+ | Merge reviewer feedback | `rev merge reviewer_A.docx reviewer_B.docx` |
274
283
  | Archive reviewer files | `rev archive` |
275
284
  | Check DOIs | `rev doi check references.bib` |
276
285
  | Find missing DOIs | `rev doi lookup references.bib` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docrev",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Academic paper revision workflow: Word ↔ Markdown round-trips, DOI validation, reviewer comments",
5
5
  "type": "module",
6
6
  "types": "types/index.d.ts",