Create skeleton of the IV streamer app
1 unresolved thread
1 unresolved thread
Closes #871
Merge request reports
Activity
changed milestone to %9 Provide Interface View Streaming interface
- src/applications/ivstreaming/main.cpp 0 → 100644
29 ive::initIVEditor(); 30 31 QApplication a(argc, argv); 32 a.setOrganizationName(SC_ORGANISATION); 33 a.setOrganizationDomain(SC_ORGANISATION_DOMAIN); 34 a.setApplicationVersion(spaceCreatorVersion); 35 a.setApplicationName(QObject::tr("IV Streaming")); 36 37 shared::CommandLineParser cmdParser; 38 cmdParser.handlePositional(shared::CommandLineParser::Positional::StartRemoteControl); 39 cmdParser.process(a.arguments()); 40 41 const QString portString = cmdParser.value(shared::CommandLineParser::Positional::StartRemoteControl); 42 quint16 port = portString.toUShort(); 43 if (port <= 1000) { 44 port = 34633; added 1 commit
- 04db71a7 - Notify the user about the default port number
By Guenter Schwann on 2023-02-16T09:55:35
added 4 commits
-
04db71a7...442dc205 - 2 commits from branch
master
- 32e9a793 - Create skeleton of the IV streamer app
- 726628e9 - Notify the user about the default port number
By Kasper Fisker on 2023-02-16T10:23:15
-
04db71a7...442dc205 - 2 commits from branch
enabled an automatic merge when the pipeline for 726628e9 succeeds
By Kasper Fisker on 2023-02-16T10:23:20
Please register or sign in to reply