mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
print version for every standalone grabber and hyperiond
Former-commit-id: 736894a87ba3d056a8e4f1def236ae4670f16407
This commit is contained in:
parent
49e867f5fc
commit
153d1f0999
@ -10,6 +10,9 @@
|
|||||||
#include <protoserver/ProtoConnectionWrapper.h>
|
#include <protoserver/ProtoConnectionWrapper.h>
|
||||||
#include "AmlogicWrapper.h"
|
#include "AmlogicWrapper.h"
|
||||||
|
|
||||||
|
#include "HyperionConfig.h"
|
||||||
|
|
||||||
|
|
||||||
using namespace vlofgren;
|
using namespace vlofgren;
|
||||||
|
|
||||||
// save the image as screenshot
|
// save the image as screenshot
|
||||||
@ -22,6 +25,11 @@ void saveScreenshot(const char * filename, const Image<ColorRgb> & image)
|
|||||||
|
|
||||||
int main(int argc, char ** argv)
|
int main(int argc, char ** argv)
|
||||||
{
|
{
|
||||||
|
std::cout
|
||||||
|
<< "hyperion-aml:" << std::endl
|
||||||
|
<< "\tversion : " << HYPERION_VERSION_ID << std::endl
|
||||||
|
<< "\tbuild time: " << __DATE__ << " " << __TIME__ << std::endl;
|
||||||
|
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
|
|
||||||
try
|
try
|
||||||
|
@ -9,6 +9,8 @@
|
|||||||
#include <protoserver/ProtoConnectionWrapper.h>
|
#include <protoserver/ProtoConnectionWrapper.h>
|
||||||
#include "DispmanxWrapper.h"
|
#include "DispmanxWrapper.h"
|
||||||
|
|
||||||
|
#include "HyperionConfig.h"
|
||||||
|
|
||||||
using namespace vlofgren;
|
using namespace vlofgren;
|
||||||
|
|
||||||
// save the image as screenshot
|
// save the image as screenshot
|
||||||
@ -21,6 +23,11 @@ void saveScreenshot(const char * filename, const Image<ColorRgb> & image)
|
|||||||
|
|
||||||
int main(int argc, char ** argv)
|
int main(int argc, char ** argv)
|
||||||
{
|
{
|
||||||
|
std::cout
|
||||||
|
<< "hyperion-dispmanx:" << std::endl
|
||||||
|
<< "\tversion : " << HYPERION_VERSION_ID << std::endl
|
||||||
|
<< "\tbuild time: " << __DATE__ << " " << __TIME__ << std::endl;
|
||||||
|
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
|
|
||||||
try
|
try
|
||||||
|
@ -13,6 +13,9 @@
|
|||||||
#include "CustomParameter.h"
|
#include "CustomParameter.h"
|
||||||
#include "JsonConnection.h"
|
#include "JsonConnection.h"
|
||||||
|
|
||||||
|
#include "HyperionConfig.h"
|
||||||
|
|
||||||
|
|
||||||
using namespace vlofgren;
|
using namespace vlofgren;
|
||||||
|
|
||||||
/// Count the number of true values in a list of booleans
|
/// Count the number of true values in a list of booleans
|
||||||
@ -28,6 +31,11 @@ int count(std::initializer_list<bool> values)
|
|||||||
|
|
||||||
int main(int argc, char * argv[])
|
int main(int argc, char * argv[])
|
||||||
{
|
{
|
||||||
|
std::cout
|
||||||
|
<< "hyperion-remote:" << std::endl
|
||||||
|
<< "\tversion : " << HYPERION_VERSION_ID << std::endl
|
||||||
|
<< "\tbuild time: " << __DATE__ << " " << __TIME__ << std::endl;
|
||||||
|
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
|
|
||||||
// force the locale
|
// force the locale
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
#include "PixelFormatParameter.h"
|
#include "PixelFormatParameter.h"
|
||||||
#include "ScreenshotHandler.h"
|
#include "ScreenshotHandler.h"
|
||||||
|
|
||||||
|
#include "HyperionConfig.h"
|
||||||
|
|
||||||
using namespace vlofgren;
|
using namespace vlofgren;
|
||||||
|
|
||||||
// save the image as screenshot
|
// save the image as screenshot
|
||||||
@ -36,6 +38,11 @@ void saveScreenshot(void *, const Image<ColorRgb> & image)
|
|||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
|
std::cout
|
||||||
|
<< "hyperion-v4l2:" << std::endl
|
||||||
|
<< "\tversion : " << HYPERION_VERSION_ID << std::endl
|
||||||
|
<< "\tbuild time: " << __DATE__ << " " << __TIME__ << std::endl;
|
||||||
|
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
|
|
||||||
// force the locale
|
// force the locale
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#include "protoserver/ProtoConnectionWrapper.h"
|
#include "protoserver/ProtoConnectionWrapper.h"
|
||||||
#include "X11Wrapper.h"
|
#include "X11Wrapper.h"
|
||||||
|
#include "HyperionConfig.h"
|
||||||
|
|
||||||
using namespace vlofgren;
|
using namespace vlofgren;
|
||||||
|
|
||||||
@ -21,6 +22,11 @@ void saveScreenshot(const char * filename, const Image<ColorRgb> & image)
|
|||||||
|
|
||||||
int main(int argc, char ** argv)
|
int main(int argc, char ** argv)
|
||||||
{
|
{
|
||||||
|
std::cout
|
||||||
|
<< "hyperion-x11:" << std::endl
|
||||||
|
<< "\tversion : " << HYPERION_VERSION_ID << std::endl
|
||||||
|
<< "\tbuild time: " << __DATE__ << " " << __TIME__ << std::endl;
|
||||||
|
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
|
|
||||||
try
|
try
|
||||||
|
@ -92,11 +92,13 @@ Json::Value loadConfig(const std::string & configFile)
|
|||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
std::cout << "Application build time: " << __DATE__ << " " << __TIME__ << std::endl;
|
std::cout
|
||||||
|
<< "Hyperiond:" << std::endl
|
||||||
|
<< "\tversion : " << HYPERION_VERSION_ID << std::endl
|
||||||
|
<< "\tbuild time: " << __DATE__ << " " << __TIME__ << std::endl;
|
||||||
|
|
||||||
// Initialising QCoreApplication
|
// Initialising QCoreApplication
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
std::cout << "Hyperion initialised, Version: " << HYPERION_VERSION_ID << std::endl;
|
|
||||||
|
|
||||||
signal(SIGINT, signal_handler);
|
signal(SIGINT, signal_handler);
|
||||||
signal(SIGTERM, signal_handler);
|
signal(SIGTERM, signal_handler);
|
||||||
|
Loading…
Reference in New Issue
Block a user