Skip to content

Commit

Permalink
Release Seer 2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
epasveer committed Sep 8, 2023
1 parent 437e951 commit d608e0d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 17 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@

# Seer Change Log

## [2.2beta] - 2023-XX-XX
## [2.2] - 2023-09-07
* Fixed infinite loop when starting with RR mode.
* Reworked RR mode to directly run 'rr replay'.
No need to start a 'rr server' and connect to it.
https://github.com/epasveer/seer/wiki/RR-and-Seer
* Fixed Source handling in source browser. Qt5 mode was broken.
Qt6 works. Directory paths need a tailing "/*"

Expand Down
11 changes: 8 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
seergdb (2.2beta) UNRELEASED; urgency=medium
seergdb (2.2) UNRELEASED; urgency=medium

* Seer is Qt6 based. Still can compile with Qt5.
* Fixed infinite loop when starting with RR mode.
* Reworked RR mode to directly run 'rr replay'.
No need to start a 'rr server' and connect to it.
https://github.com/epasveer/seer/wiki/RR-and-Seer
* Fixed Source handling in source browser. Qt5 mode was broken.
Qt6 works. Directory paths need a tailing "/*"

-- Ernie Pasveer <epasveer@att.net> Sun, 12 Aug 2023 22:18:38 +0200
-- Ernie Pasveer <epasveer@att.net> Thu, 7 Sep 2023 22:18:38 +0200

2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1.0)

project(seergdb VERSION 2.2.0 LANGUAGES CXX)
project(seergdb VERSION 2.2 LANGUAGES CXX)

set(PROJECT_NAME seergdb)

Expand Down
2 changes: 1 addition & 1 deletion src/SeerUtl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// Increment this with every release on GitHub.
// See scripts/change_versionnumber
//
#define SEER_VERSION "2.2beta"
#define SEER_VERSION "2.2"

namespace Seer {

Expand Down
14 changes: 3 additions & 11 deletions tests/helloworld/Makefile
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
# This is the default target, which will be built when
# you invoke make
# This is the default target, which will be built when you invoke make
.PHONY: all
all: helloworld

# This rule tells make how to build helloworld from helloworld.cpp
# This rule tells make how to build the test program
helloworld: helloworld.cpp
g++ -g -o helloworld helloworld.cpp function1.cpp

# This rule tells make to copy helloworld to the binaries subdirectory,
# creating it if necessary
.PHONY: install
install:
mkdir -p binaries
cp -p helloworld binaries

# This rule tells make to delete helloworld and helloworld.o
# This rule tells make to clean things
.PHONY: clean
clean:
rm -f helloworld helloworld.o function1.o
Expand Down

0 comments on commit d608e0d

Please sign in to comment.