From 079b11348feecee9ced2294d551ebd5feaf9de53 Mon Sep 17 00:00:00 2001 From: Ernie Pasveer Date: Mon, 14 Feb 2022 21:03:38 -0600 Subject: [PATCH] Update version number in prep of the next release. --- README.md | 2 ++ src/SeerUtl.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 47a1962..2d9485b 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ The main view for Seer looks like: "Add variable to Memory Visualizer". * A breakpoint/printpoint can be created by RMB on a specific line. * Can execute to a specific line by RMB on a specific line. + * Tabs in this view can be detached by double-clicking a tab. * Breakpoints, Watchpoints, Catchpoints, Printpoints, manual gdb commands, and logs. * The area below the Code Manager. @@ -70,6 +71,7 @@ The main view for Seer looks like: that printpoint. See gdb's 'dprintf' call. * GDB output. A log of any output from the gdb program itself. * Seer output. A log of any output from the Seer program itself. As diagnostics. + * Tabs in this view can be detached by double-clicking a tab. * Stack frame information. * Stack frame list. A frame can be double clicked to change the scope (the current function). diff --git a/src/SeerUtl.cpp b/src/SeerUtl.cpp index 43a4993..07987a2 100644 --- a/src/SeerUtl.cpp +++ b/src/SeerUtl.cpp @@ -6,7 +6,7 @@ namespace Seer { QString version () { // Increment this with every release on GitHub. - return "1.0.8"; + return "1.0.9"; } QString filterEscapes (const QString& str) {