Version 0.8.1 (StealConsole)

This commit is contained in:
2022-11-14 15:25:26 +01:00
parent 8b70d0e9b7
commit 20c3a525c8
5 changed files with 40 additions and 6 deletions

View File

@ -1,4 +1,5 @@
#pragma once
#include <renderd7/bmp.hpp>
#include <renderd7/renderd7.hpp>
#include <renderd7/renderd7.hpp>
#include <renderd7/StealConsole.hpp>

View File

@ -0,0 +1,16 @@
#pragma once
#include <string>
#include <sstream>
namespace RenderD7
{
class StealConsole
{
public:
StealConsole();
~StealConsole();
std::string GetStdout();
private:
std::stringstream stolen_stdout;
};
}

View File

@ -20,7 +20,6 @@
#include <unistd.h>
#include <vector>
#include <codecvt>
#include <renderd7/BitmapPrinter.hpp>
@ -43,14 +42,15 @@
#include <renderd7/stringtool.hpp>
#include <renderd7/thread.hpp>
extern "C" {
#include <renderd7/external/fs.h>
}
#define RENDERD7VSTRING "0.8.0"
#define RENDERD7VSTRING "0.8.1"
#define CHANGELOG \
"0.8.0: Implement BitmapPrinter\n0.7.3: Implement Over Render Overlay " \
"0.8.1: Add abillity to Get Stdout as string to render it to the " \
"screen.\n0.8.0: Implement BitmapPrinter\n0.7.3: Implement Over Render " \
"Overlay " \
"Framework\n0.7.2: Implement MT to csv file saving. Add RGB2HEX. \n0.7.1: " \
"Add the New Overlay Handler. Its Just in code and does nothing yet. " \
"\n0.7.0: Made Big Progress In the MT Ovl but it still crashes On a Scnd " \