FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for javascript - JanX2/google-diff-match-patch-git-svn · GitHub
JanX2
/
google-diff-match-patch-git-svn
Public
Notifications
You must be signed in to change notification settings
Fork
39
Star
58
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Commits
Breadcrumbs
History for
google-diff-match-patch-git-svn
javascript
on
master
User selector
Datepicker
Commit history
Commits on Nov 20, 2012
Update Dart port to latest Dart language verison (again).
Show description for d80c37e
neil.fraser
committed
d80c37e
View commit details
Copy full SHA for d80c37e
View code at this point
Browse repository at this point
Commits on Jan 11, 2012
Removing long/shorttext scoping or dereferencing in all languages.
Show description for 73acfe2
neil.fraser
committed
73acfe2
View commit details
Copy full SHA for 73acfe2
View code at this point
Browse repository at this point
Commits on Jan 6, 2012
Adding complete Dart port of Diff Match Patch.
Show description for 70a083a
neil.fraser
committed
70a083a
View commit details
Copy full SHA for 70a083a
View code at this point
Browse repository at this point
Commits on Dec 22, 2011
Code cleanup:
Show description for c1a2e78
neil.fraser
committed
c1a2e78
View commit details
Copy full SHA for c1a2e78
View code at this point
Browse repository at this point
Commits on Nov 18, 2011
Improve diff sliding algorithm to encourage lining up and the end of sentences.
Show description for a5bc389
neil.fraser
committed
a5bc389
View commit details
Copy full SHA for a5bc389
View code at this point
Browse repository at this point
Commits on Nov 10, 2011
Removing dead code and other cleanup. Issue 58.
Show description for 9ba0ba6
neil.fraser
committed
9ba0ba6
View commit details
Copy full SHA for 9ba0ba6
View code at this point
Browse repository at this point
Commits on Nov 9, 2011
Add new heuristic to diff_cleanupSemantic (issue 57).
Show description for a459871
neil.fraser
committed
a459871
View commit details
Copy full SHA for a459871
View code at this point
Browse repository at this point
Commits on Oct 13, 2011
Fix BF01 vs FB01 typo in all unit tests except C#.
Show description for c1956c5
neil.fraser
committed
c1956c5
View commit details
Copy full SHA for c1956c5
View code at this point
Browse repository at this point
Commits on Oct 11, 2011
Fixing bug in C# that for some locals would confuse ligatures with their component letters. Issue 54. Added unit tests for this change in all languages.
Show description for 233703a
neil.fraser
committed
233703a
View commit details
Copy full SHA for 233703a
View code at this point
Browse repository at this point
Commits on Aug 3, 2011
Moving 'patch_obj' out of the global namespace. JavaScript only. Now 'diff_match_patch.patch_obj'.
Show description for dcd6361
neil.fraser
committed
dcd6361
View commit details
Copy full SHA for dcd6361
View code at this point
Browse repository at this point
Commits on Jul 25, 2011
Adding new language version for Python 3.
Show description for bc43b4c
neil.fraser
committed
bc43b4c
View commit details
Copy full SHA for bc43b4c
View code at this point
Browse repository at this point
Commits on Jul 16, 2011
Enable use of DMP in non-browser environments, such as node.js.
Show description for 8b42dba
neil.fraser
committed
8b42dba
View commit details
Copy full SHA for 8b42dba
View code at this point
Browse repository at this point
Commits on Jun 3, 2011
The overlap detection was finding 1 character matches in 5k insertions/deletions.
Show description for 665101d
neil.fraser
committed
665101d
View commit details
Copy full SHA for 665101d
View code at this point
Browse repository at this point
Commits on Jan 22, 2011
Fix bug caused by linemode speedup and recursive diff interacting badly, resulting in out of bounds error. Issue 39.
Show description for 2ec95c0
neil.fraser
committed
2ec95c0
View commit details
Copy full SHA for 2ec95c0
View code at this point
Browse repository at this point
Commits on Jan 19, 2011
Fixing overlap bug in cleanupSemantic for C++ and Java. Adding speed test to C++.
Show description for ed4e8f1
neil.fraser
committed
ed4e8f1
View commit details
Copy full SHA for ed4e8f1
View code at this point
Browse repository at this point
Commits on Jan 18, 2011
Lint fixes to JavaScript.
Show description for ad858fa
neil.fraser
committed
ad858fa
View commit details
Copy full SHA for ad858fa
View code at this point
Browse repository at this point
Commits on Jan 13, 2011
Change v1/v2 from sparse hashes to fixed-sized arrays.
Show description for 8072cb9
neil.fraser
committed
8072cb9
View commit details
Copy full SHA for 8072cb9
View code at this point
Browse repository at this point
Commits on Dec 31, 2010
Switch off the lossy halfMatch shortcut for diffs without a time limit.
Show description for 550f20b
neil.fraser
committed
550f20b
View commit details
Copy full SHA for 550f20b
View code at this point
Browse repository at this point
Commits on Dec 16, 2010
Change to recursive diff algorithm. 3x speedup.
Show description for ec7f486
neil.fraser
committed
ec7f486
View commit details
Copy full SHA for ec7f486
View code at this point
Browse repository at this point
Commits on Nov 30, 2010
Reduce memory footprint and increase diff speed by 5% to 40%.
Show description for 911056b
neil.fraser
committed
911056b
View commit details
Copy full SHA for 911056b
View code at this point
Browse repository at this point
Commits on Nov 22, 2010
Modify semantic cleanup to compute magnitude of surrounding change on the basis of Levenstein's formula.
Show description for e9ad628
neil.fraser
committed
e9ad628
View commit details
Copy full SHA for e9ad628
View code at this point
Browse repository at this point
Commits on Nov 19, 2010
Adjusting variable types to better match their requirements.
Show description for 83ee6af
neil.fraser
committed
83ee6af
View commit details
Copy full SHA for 83ee6af
View code at this point
Browse repository at this point
Commits on Nov 18, 2010
Redesign the timeout mechanism so that it takes roughly the specified period of time (plus about 10% for cleanup) before returning. Previously it would routinely use 200% of the allocated time and…
Show description for 3d92191
neil.fraser
committed
3d92191
View commit details
Copy full SHA for 3d92191
View code at this point
Browse repository at this point
Fix all warnings and type errors in JavaScript when compiled using Google's Closure compiler.
Show description for e4e4fe4
neil.fraser
committed
e4e4fe4
View commit details
Copy full SHA for e4e4fe4
View code at this point
Browse repository at this point
Commits on Nov 9, 2010
Removing linked lists from C#, caching regexes in JavaScript and removing over two year old hack for Opera.
Show description for a38d4c4
neil.fraser
committed
a38d4c4
View commit details
Copy full SHA for a38d4c4
View code at this point
Browse repository at this point
Commits on Nov 5, 2010
Improve efficency in diff_cleanupMerge.
Show description for 400da45
neil.fraser
committed
400da45
View commit details
Copy full SHA for 400da45
View code at this point
Browse repository at this point
Commits on Oct 29, 2010
Fix compile error in C++ unit tests.
Show description for 01ec1b9
neil.fraser
committed
01ec1b9
View commit details
Copy full SHA for 01ec1b9
View code at this point
Browse repository at this point
Commits on Oct 28, 2010
Fix empty patch bug in Lua. Small speed improvement in overlap detection in all languages.
Show description for e517527
neil.fraser
committed
e517527
View commit details
Copy full SHA for e517527
View code at this point
Browse repository at this point
Commits on Oct 27, 2010
Adding overlap detection and elimination to semantic cleanup.
Show description for 3b9db45
neil.fraser
committed
3b9db45
View commit details
Copy full SHA for 3b9db45
View code at this point
Browse repository at this point
Commits on Aug 26, 2010
Optimizing for performance. 3x speedup for Python, 3x speedup for Java, 2x speedup for Chrome (no change for Firefox).
Show description for d606a7a
neil.fraser
committed
d606a7a
View commit details
Copy full SHA for d606a7a
View code at this point
Browse repository at this point
Commits on Jun 21, 2010
Add consistent handling of null inputs. Also some minor cleanup.
Show description for d82f115
neil.fraser
committed
d82f115
View commit details
Copy full SHA for d82f115
View code at this point
Browse repository at this point
Commits on Dec 30, 2009
Enable a couple of "can't happen" assertions in JavaScript and Lua.
Show description for a94292e
neil.fraser
committed
a94292e
View commit details
Copy full SHA for a94292e
View code at this point
Browse repository at this point
Commits on Dec 25, 2009
Adding Lua port of DMP.
Show description for c2b2f22
neil.fraser
committed
c2b2f22
View commit details
Copy full SHA for c2b2f22
View code at this point
Browse repository at this point
Commits on Oct 12, 2009
Split JavaScript tests into separate file so it may be called by JSUnit.
Show description for ba3c541
neil.fraser
committed
ba3c541
View commit details
Copy full SHA for ba3c541
View code at this point
Browse repository at this point
Commits on Oct 7, 2009
Switch from Packer to Google's own JSCompiler (15% smaller output). Also move Java files onto package path.
Show description for 18c2a53
neil.fraser
committed
18c2a53
View commit details
Copy full SHA for 18c2a53
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL