Skip to content
This repository was archived by the owner on Nov 12, 2019. It is now read-only.

Commit 6807ca3

Browse files
committed
Add documentation
1 parent a37fca2 commit 6807ca3

File tree

3 files changed

+49
-10
lines changed

3 files changed

+49
-10
lines changed

CONTRIBUTING.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Contributing
2+
3+
To contribute do the following:
4+
1. Check existing open issues.
5+
2. If not found, file an issue with any relevant information (versions, steps to reproduce, stacktrace, screenshots, etc).
6+
3. Fork repository.
7+
4. Create a branch on your fork and add the issue # to he name. Like feature/issue-23 or bug/issue-65.
8+
5. Try to match the style code.
9+
6. Create a pull request to develop branch.
10+
11+
Feel free to send any question.

README.md

+37-9
Original file line numberDiff line numberDiff 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
22

3-
# Changelog
3+
The java-diff-utils library is for computing diffs, applying patches, generation side-by-side view in Java.
44

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.
66

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.
88

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
1039

1140
- 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'
1241
- 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/)
1847
- fix imbrication tag bug in lineDiff (when inline is on a multi-line chunk)
1948
- Adds tha ability to skip data
2049

21-
## 1.5.0
50+
### 1.5.0
2251

2352
- make Equalizer configurable. ([pull #1](https://github.com/eller86/java-diff-utils/pull/1))
2453

25-
## 1.4.1
54+
### 1.4.1
2655

2756
- bugfix: parse method should be public
2857

29-
## 1.4.0
58+
### 1.4.0
3059

3160
- switch from JDK5 to JDK7
3261
- add Guava to dependency
3362
- let user uses other string to represent line which does not exist
3463
- implement event based parser like SAX (in difflib.event package)
35-

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'java'
22
apply plugin: 'maven'
33

44
group = 'com.github.java-diff-utils'
5-
version = '2.1.0-SNAPSHOT'
5+
version = '2.1.1-SNAPSHOT'
66

77
description = """java-diff-utils"""
88

0 commit comments

Comments
 (0)