From 0242daa70731cd3127c71b3d73e2302d61fa32a3 Mon Sep 17 00:00:00 2001 From: Ekyu Kondo Date: Wed, 17 Aug 2022 08:14:22 +0900 Subject: [PATCH 1/2] fix(plotter): not to set gnuplot font --- src/gnuplot/plotter/IPlotter.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gnuplot/plotter/IPlotter.cpp b/src/gnuplot/plotter/IPlotter.cpp index 20dbb14a..4c163389 100644 --- a/src/gnuplot/plotter/IPlotter.cpp +++ b/src/gnuplot/plotter/IPlotter.cpp @@ -62,9 +62,6 @@ void IPlotter::initializePlot() const { m_gnuplot.send("set xlabel \"Distance[m](+: East, -: West)\""); m_gnuplot.send("set ylabel \"Distance[m](+: North, -: South)\""); m_gnuplot.send("set zlabel \"Height[m]\""); - - // Font - m_gnuplot.send("set terminal " GNUPLOT_TERMINAL " font \"Arial,9\""); } void IPlotter::saveLaunchPoint() const { From e12d86a567891b13d78d362a425bd5a4a84afb4b Mon Sep 17 00:00:00 2001 From: Ekyu Kondo Date: Wed, 17 Aug 2022 08:15:23 +0900 Subject: [PATCH 2/2] release: bump version to 1.9.6 --- README.md | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f57255c0..ac06de49 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Latest Update: 2022/08/17 -Version: 1.9.5 +Version: 1.9.6 [**Download**](https://github.com/FROM-THE-EARTH/Prologue/releases/latest) diff --git a/src/main.cpp b/src/main.cpp index 7768fcb9..2a18f5ae 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,7 +13,7 @@ #include "misc/Platform.hpp" #include "simulator/SimulatorFactory.hpp" -const auto VERSION = "1.9.5"; +const auto VERSION = "1.9.6"; void ShowSettingInfo();