log src/org/tmatesoft/hg/repo/HgWorkingCopyStatusCollector.java @ 694:7efabe0cddcf

age author description
Mon, 05 Aug 2013 17:42:10 +0200 Artem Tikhomirov Speed up (a) file rename history to minimize file reads; (b) file.isCopy(int) to read metadata for few revisions at once (use pattern assumes earlier revisions are likely to be queried, too); (c) HgIgnore.isIgnored by caching matched initial fragments (to substitute more expensive Matcher.matches with cheaper HashMap.contains)
Thu, 01 Aug 2013 21:45:47 +0200 Artem Tikhomirov Fix file.isCopy() use for status and cat commands
Sat, 27 Jul 2013 22:06:14 +0200 Artem Tikhomirov Issue 44: Renames/copies other than for the very first revision of a file are not recognized
Wed, 03 Jul 2013 15:11:40 +0200 Artem Tikhomirov 1) Console push tool. 2) Pass class to blame into FileUtils
Wed, 22 May 2013 15:52:31 +0200 Artem Tikhomirov Explicit HgRuntimeException to facilitate easy switch from runtime to checked exceptions
Fri, 10 May 2013 17:31:27 +0200 Artem Tikhomirov Remove few Experimental annotations as the API they've marked graduates v1.1m4
Tue, 07 May 2013 21:27:51 +0200 Artem Tikhomirov Clean, organize and resolve some TODOs and FIXMEs: minor refactorings and comments
Tue, 05 Feb 2013 20:06:22 +0100 Artem Tikhomirov Update javadoc for HgManifest.Inspector and fix erroneous internal API
Fri, 30 Nov 2012 22:52:39 +0100 Artem Tikhomirov Experiment to add a facility to check working files for actual changes
Mon, 22 Oct 2012 20:33:20 +0200 Artem Tikhomirov Recognize 'merged from parent' metastate in dirstate
Thu, 18 Oct 2012 18:36:13 +0200 Artem Tikhomirov Refactor to keep knowledge about repository control files and their location in respect to .hg/ in a single place (facilitate future adoption of shared repositories)
Thu, 16 Aug 2012 17:08:34 +0200 Artem Tikhomirov Refactoring: move HgRepository's implementation aspects to Internals (which is now its imlementation counterpart and primary repository class to be used by other parts of the library)
Wed, 11 Jul 2012 22:45:29 +0200 Artem Tikhomirov Issue 34: incorrect status for a file copy in wc against base rev
Wed, 11 Jul 2012 20:40:47 +0200 Artem Tikhomirov Merge changes from smartgit3 branch into 1.1 stream
Mon, 18 Jun 2012 16:54:00 +0200 Artem Tikhomirov Refactor LogFacility and SessionContext, better API for both
Thu, 29 Mar 2012 20:54:04 +0200 Artem Tikhomirov FIXMEs: awkward API refactored, what need to be internal got hidden; public aspects got captured in slim interfaces
Thu, 29 Mar 2012 18:29:03 +0200 Artem Tikhomirov FIXMEs: javadoc, proper use of constants
Wed, 28 Mar 2012 18:39:29 +0200 Artem Tikhomirov FIXMEs: exceptions, javadoc
Fri, 23 Mar 2012 22:51:18 +0100 Artem Tikhomirov Major refactoring of exception handling. Low-level API uses RuntimeExceptions, while checked are left for higher level
Thu, 22 Mar 2012 18:54:11 +0100 Artem Tikhomirov Explicit constant for regular file flags, access to flags for a given file revision
Wed, 21 Mar 2012 20:40:28 +0100 Artem Tikhomirov Support and respect for symbolic links and executable flag, with /bin/ls backed implementation to discover these
Wed, 14 Mar 2012 22:49:32 +0100 Artem Tikhomirov Add an explicit constant instead of -1 to indicate 'no revision' case
Thu, 23 Feb 2012 15:31:57 +0100 Artem Tikhomirov Issue 24: IAE, Underflow in FilterDataAccess. Issue 26:UnsupportedOperationException when patching empty base revision. Tests smartgit3
Fri, 16 Dec 2011 15:37:27 +0100 Artem Tikhomirov Use 'revision index' instead of the vague 'local revision number' concept in the API
Fri, 16 Dec 2011 04:43:18 +0100 Artem Tikhomirov Use exceptions to expose errors reading mercurial data
Fri, 09 Dec 2011 01:14:41 +0100 Artem Tikhomirov Report dirstate access error with Exception
Thu, 08 Dec 2011 22:19:27 +0100 Artem Tikhomirov Report non-critical errors during status operation to handler/inspector
Tue, 06 Dec 2011 14:25:52 +0100 Artem Tikhomirov Consistent approach to deal with adaptable objects. Give adaptable precedence over instanceof to allow conditional response when classes do implement desired interface
Tue, 06 Dec 2011 12:57:21 +0100 Artem Tikhomirov Newline filter shall respect whole stream when deciding whether to process line terminators, hence added stream preview functionality
Thu, 01 Dec 2011 05:21:40 +0100 Artem Tikhomirov Propagate errors with exceptions up to a end client