From b63c949ec93eabe6f299e52624de4fca4fc3de0c Mon Sep 17 00:00:00 2001 From: Jan Wilmans Date: Mon, 27 Aug 2018 20:49:49 +0000 Subject: [PATCH 1/4] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c1fae2c9..ee44e7a6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,9 @@ Debugview++, currently at v1.8 [![Build status](https://ci.appveyor.com/api/projects/status/ho962elp8chrdga0/branch/master?svg=true)](https://ci.appveyor.com/project/janwilmans/debugview/branch/master) -[Download latest here](https://github.com/djeedjay/DebugViewPP/releases), I would really like to hear what you think! Leave any [**comments here**](https://github.com/djeedjay/DebugViewPP/issues/283) +[Download latest release](https://github.com/djeedjay/DebugViewPP/releases), I would really like to hear what you think! Leave any [**comments here**](https://github.com/djeedjay/DebugViewPP/issues/283) + +[Download head version ](https://ci.appveyor.com/project/janwilmans/debugview/build/artifacts) **experimental** Questions? Tweet me at [**@janwilmans**](https://twitter.com/janwilmans) or chat on skype at 'janwilmans'. There is also a [slack channel](https://cpplang.slack.com/messages/debugviewpp) From 05663c1640082db0f8dd68f0780c956f518a4abc Mon Sep 17 00:00:00 2001 From: Jan Wilmans Date: Mon, 27 Aug 2018 20:50:50 +0000 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ee44e7a6..0c7f0b84 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Debugview++, currently at v1.8 [Download latest release](https://github.com/djeedjay/DebugViewPP/releases), I would really like to hear what you think! Leave any [**comments here**](https://github.com/djeedjay/DebugViewPP/issues/283) -[Download head version ](https://ci.appveyor.com/project/janwilmans/debugview/build/artifacts) **experimental** +[Download head version ](https://ci.appveyor.com/project/janwilmans/debugview/build/artifacts) ** this is the 'soup' of the day version ** Questions? Tweet me at [**@janwilmans**](https://twitter.com/janwilmans) or chat on skype at 'janwilmans'. There is also a [slack channel](https://cpplang.slack.com/messages/debugviewpp) From da69acc170b333a2e96a665e2e0bf801de693b96 Mon Sep 17 00:00:00 2001 From: Jan Wilmans Date: Mon, 27 Aug 2018 20:51:45 +0000 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c7f0b84..04f83ac4 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Debugview++, currently at v1.8 [Download latest release](https://github.com/djeedjay/DebugViewPP/releases), I would really like to hear what you think! Leave any [**comments here**](https://github.com/djeedjay/DebugViewPP/issues/283) -[Download head version ](https://ci.appveyor.com/project/janwilmans/debugview/build/artifacts) ** this is the 'soup' of the day version ** +[Download head version ](https://ci.appveyor.com/project/janwilmans/debugview/build/artifacts) ** only pick this if your feeling lucky and want to try the latest commits ** Questions? Tweet me at [**@janwilmans**](https://twitter.com/janwilmans) or chat on skype at 'janwilmans'. There is also a [slack channel](https://cpplang.slack.com/messages/debugviewpp) From cc8999830a4db5642e2d3cd22edad445d371d11e Mon Sep 17 00:00:00 2001 From: vlovo Date: Tue, 28 Aug 2018 08:38:54 +0200 Subject: [PATCH 4/4] fix crash, when selcting previous bookmark on non existent bookmarks --- DebugView++/LogView.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DebugView++/LogView.cpp b/DebugView++/LogView.cpp index b37114c6..2c1b6376 100644 --- a/DebugView++/LogView.cpp +++ b/DebugView++/LogView.cpp @@ -1627,13 +1627,13 @@ int CLogView::FindLine(Predicate pred, int direction) const SetCursor(::LoadCursor(nullptr, IDC_ARROW)); Win32::ScopedCursor cursor(::LoadCursor(nullptr, IDC_WAIT)); - size_t begin = std::max(GetNextItem(-1, LVNI_FOCUSED), 0); - size_t line = begin; + int begin = std::max(GetNextItem(-1, LVNI_FOCUSED), 0); + int line = begin; if (m_logLines.empty()) return -1; - auto size = m_logLines.size(); + auto size = static_cast (m_logLines.size()); do { line += direction;