diff --git a/CHANGELOG.md b/CHANGELOG.md index c65af41..27c1f2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Seer Change Log -## [1.15beta] - 2023-xx-xx +## [1.15] - 2023-03-04 * Revamp Debug dialog. Move debug modes into "tabs". * Add "help" icon to each debug mode in Debug dialog. * Add 'pre' and 'post' gdb commands that can be executed diff --git a/README.md b/README.md index a4a4bbc..49e288d 100644 --- a/README.md +++ b/README.md @@ -194,8 +194,11 @@ methods for debugging a program. So Seer natually does too. % seergdb --connect myprog # Debug myprog by connecting to the currently started gdbserver process. % seergdb --core myprog # Debug a corefile for myprog. - % seergdb # Bring up a dialog box to set the program and debug method. - % seergdb myprog arg1 arg2 # Bring up a dialog box to set the debug method. + % seergdb --project myproject.seer # Load a debug session from a project file. + # Define and save a project in the Debug dialog. + + % seergdb # Bring up a Debug dialog to set the program and debug method. + % seergdb myprog arg1 arg2 # Bring up a Debug dialog to set the debug method. % seergdb --config # Bring up Seer config dialog. # Save settings with 'Settings->Save Configuration'. diff --git a/debian/changelog b/debian/changelog index e6c8c1b..642dd5b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -seergdb (1.15beta) UNRELEASED; urgency=medium +seergdb (1.15) UNRELEASED; urgency=medium * Updated release. - -- Ernie Pasveer Mon, 02 Jan 2023 22:18:38 +0200 + -- Ernie Pasveer Sat, 04 Mar 2023 22:18:38 +0200 diff --git a/images/opendialog.png b/images/opendialog.png index 29489b4..033131a 100644 Binary files a/images/opendialog.png and b/images/opendialog.png differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7a99d77..5535194 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1.0) -project(seergdb VERSION 1.15.0 LANGUAGES CXX) +project(seergdb VERSION 1.15 LANGUAGES CXX) set(PROJECT_NAME seergdb) diff --git a/src/SeerUtl.cpp b/src/SeerUtl.cpp index f4a7726..eb0177d 100644 --- a/src/SeerUtl.cpp +++ b/src/SeerUtl.cpp @@ -8,7 +8,7 @@ // Increment this with every release on GitHub. // See scripts/change_versionnumber // -#define SEER_VERSION "1.15beta" +#define SEER_VERSION "1.15" namespace Seer {