Release version 1.15.

This commit is contained in:
Ernie Pasveer
2023-03-04 10:12:06 -06:00
parent 1379735e71
commit 3fbae54ecb
6 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -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
+5 -2
View File
@@ -194,8 +194,11 @@ methods for debugging a program. So Seer natually does too.
% seergdb --connect <host:port> myprog # Debug myprog by connecting to the currently started gdbserver process.
% seergdb --core <corefile> 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'.
+2 -2
View File
@@ -1,6 +1,6 @@
seergdb (1.15beta) UNRELEASED; urgency=medium
seergdb (1.15) UNRELEASED; urgency=medium
* Updated release.
-- Ernie Pasveer <epasveer@att.net> Mon, 02 Jan 2023 22:18:38 +0200
-- Ernie Pasveer <epasveer@att.net> Sat, 04 Mar 2023 22:18:38 +0200
Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 86 KiB

+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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 {