You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 12, 2019. It is now read-only.
Copy file name to clipboardexpand all lines: README.md
+37-9
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,41 @@
1
-
A fork of [java-diff-utils](https://code.google.com/p/java-diff-utils/)
1
+
# java-diff-utils
2
2
3
-
# Changelog
3
+
The java-diff-utils library is for computing diffs, applying patches, generation side-by-side view in Java.
4
4
5
-
## 2.1.0
5
+
It is an OpenSource library for performing the comparison operations between texts: computing diffs, applying patches, generating unified diffs or parsing them, generating diff output for easy future displaying (like side-by-side view) and so on.
6
6
7
-
- Removes the dependency on Guava
7
+
Main reason to build this library was the lack of easy-to-use libraries with all the usual stuff you need while working with diff files. Originally it was inspired by JRCS library and it's nice design of diff module.
8
8
9
-
## 2.0.0
9
+
**Original code and docs were forked from:**[java-diff-utils](https://code.google.com/p/java-diff-utils/)
10
+
11
+
## Main Features
12
+
13
+
* computing the difference between two texts.
14
+
* capable to hand more than plain ascci. Arrays or List of any type that implements hashCode() and equals() correctly can be subject to differencing using this library
15
+
* patch and unpatch the text with the given patch
16
+
* parsing the unified diff format
17
+
* producing human-readable differences
18
+
19
+
## Algorithms
20
+
21
+
This library implements Myer's diff algorithm. But it can easily replaced by any other which is better for handing your texts.
22
+
23
+
# Tutorial
24
+
25
+
* In Spanish: [Comparar Ficheros java-diff-utils](https://www.adictosaltrabajo.com/tutoriales/comparar-ficheros-java-diff-utils/)
26
+
27
+
## Changelog
28
+
29
+
### 2.1.1
30
+
31
+
- Bugfix: Fix issue showing inline diffs.
32
+
- Added some unit tests.
33
+
34
+
### 2.1.0
35
+
36
+
- Removes the dependency on Guavatime
37
+
38
+
### 2.0.0
10
39
11
40
- Change groupId and artifactId to prevent conflict with origin library: now 'com.github.java-diff-utils:java-diff-utils' instead of 'jp.skypencil.java-diff-utils:diffutils'
12
41
- Adds the ability to differentiate the inserted and deleted tags and class-names in inline-diff
@@ -18,18 +47,17 @@ A fork of [java-diff-utils](https://code.google.com/p/java-diff-utils/)
18
47
- fix imbrication tag bug in lineDiff (when inline is on a multi-line chunk)
19
48
- Adds tha ability to skip data
20
49
21
-
## 1.5.0
50
+
###1.5.0
22
51
23
52
- make Equalizer configurable. ([pull #1](https://github.com/eller86/java-diff-utils/pull/1))
24
53
25
-
## 1.4.1
54
+
###1.4.1
26
55
27
56
- bugfix: parse method should be public
28
57
29
-
## 1.4.0
58
+
###1.4.0
30
59
31
60
- switch from JDK5 to JDK7
32
61
- add Guava to dependency
33
62
- let user uses other string to represent line which does not exist
34
63
- implement event based parser like SAX (in difflib.event package)
0 commit comments