Skip to content

Commit

Permalink
Merge pull request #44 from NinjaPewPew/develop
Browse files Browse the repository at this point in the history
Release v1.1.1
  • Loading branch information
FaithfulDev authored Oct 21, 2019
2 parents 128d40a + c8ec1c7 commit fa686ba
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CVS History Viewer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.2.0")]
[assembly: AssemblyFileVersion("1.0.2.0")]
[assembly: AssemblyVersion("1.1.1.0")]
[assembly: AssemblyFileVersion("1.1.1.0")]
2 changes: 1 addition & 1 deletion CVS History Viewer/Resources/Classes/CVSCalls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ private static Revision GetDiffPrevious(Revision oRevision, int iWhitespace)
{
if (bMergeRequired)
{
for(int j = oRevision.cDiffBlocks.Count - 1; j >= 0; j--)
for(int j = oRevision.cDiffBlocks[i].cLines.Count - 1; j >= 0; j--)
{
oMergeInto.cLines.Insert(0, oRevision.cDiffBlocks[i].cLines[j]);
}
Expand Down
14 changes: 9 additions & 5 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
# CVS History Viewer Changelog

## v1.1.0 (Unreleased)
# v1.1.1 (Released 2019/10/21)
### Bugfix
* (#43) Fixed a crash that would appear when the app tries to merge 2 or more diff blocks.

## v1.1.0 (Released 2019/10/20)
### New Features
* (#30) Quick Diff View now got syntax highlighting!
### Improvements
* (#27) Tabs are now converted to spaces (default 4). This can be modifed via setting file.
* (#27) Tabs are now converted to spaces (default 4). This can be modified via setting file.
* (#31) UI will now restore the previous selected revision when going back to a previous selected commit.
* (#35) If nothing was found using the search and the search term could be a commit hash without the "commit:" keyword, an automatic follow up search is triggered, treating the search term as a commit hash.
* (#37) Revision entries (bottom-left list) now show the file path in the tooltip.
* (#40) Big search performance improvements due to some database optimizations.
### Bugfix
* (#22) Whitespace setting is now read from settings file. At some point in time there will be a way to change it via the UI, but for now you have to change it in the settings file (see local appdata folder).
* (#23) Search limit is now always applied, not just in the inital load. This should improve search performance on general searches (e.g. no or very few filter) **drastically**!
* (#23) Search limit is now always applied, not just in the initial load. This should improve search performance on general searches (e.g. no or very few filter) **drastically**!
* (#28) Commit time is now converted to local time. Before it was shown in UTC, the way CVS logs it.
* (#29) Fixed a bug that would reverse diff lines whenever 2 blocks are merged.
* (#38) Double-click in the revison list will now only respond if a revision was targeted. Before it would use whatever revision was previously selected.
* (#39) Fixed a crash that would happend, whenever trying to refresh from a folder that was deleted.
* (#38) Double-click in the revision list will now only respond if a revision was targeted. Before it would use whatever revision was previously selected.
* (#39) Fixed a crash that would happened, whenever trying to refresh from a folder that was deleted.

## v1.0.2 (Released 2019/05/21)
### Improvements
Expand Down

0 comments on commit fa686ba

Please sign in to comment.