src/gui/vsUrlHandler.cpp
src/gui/vsWebSocket.cpp
src/gui/qjacktrip.qrc
+ # Need to include this for AUTOMOC to do its thing
+ src/JTApplication.h
)
else ()
set (qjacktrip_SRC ${qjacktrip_SRC} src/gui/qjacktrip_novs.qrc)
+- Version: "1.6.3"
+ Date: 2022-08-23
+ Description:
+ - (fixed) Segfault when creating a hub server via cmd line
+ - (fixed) Linux desktop file is no longer invalid
+ - (fixed) Command line arguments no longer print to console
- Version: "1.6.2"
Date: 2022-08-05
Description:
Name=JackTrip@name_suffix@
Comment=Network Music Performance over the Internet
Comment[fr]=Performance de musique en réseau sur internet
-Exec=/bin/bash -c 'if [ -z "$1" ]; then jacktrip; else jacktrip --gui --deeplink $1; fi' /bin/bash %u
+Exec=/bin/bash -c "if [ -z ""\$"1" ]; then jacktrip; else jacktrip --gui --deeplink ""\$"1"; fi" /bin/bash %u
Icon=@icon@
Terminal=false
StartupWMClass=@wmclass@
{
"app_name": "JackTrip",
"releases": [
+ {
+ "version": "1.6.2",
+ "changelog": "Ability to open app via URL schemes, displaying latency stats, and Virtual Studio device support. Learn more here: https://github.com/jacktrip/jacktrip/releases/tag/v1.6.2",
+ "download": {
+ "date": "2022-08-17T00:00:00Z",
+ "url": "https://github.com/jacktrip/jacktrip/releases/download/v1.6.2/JackTrip-v1.6.2-macOS-x64-installer.pkg",
+ "downloadSize": 11536442,
+ "sha256": "450222f4db1922275e07286d0be6ea2df2873a8a39c3b23096bcfbce342b7b3c"
+ }
+ },
{
"version": "1.6.2-rc.3",
"changelog": "Ability to open app via URL schemes, displaying latency stats, and Virtual Studio device support. Learn more here: https://github.com/jacktrip/jacktrip/releases/tag/v1.6.2-rc3",
{
"app_name": "JackTrip",
"releases": [
+ {
+ "version": "1.6.2",
+ "changelog": "Ability to open app via URL schemes, displaying latency stats, and Virtual Studio device support. Learn more here: https://github.com/jacktrip/jacktrip/releases/tag/v1.6.2",
+ "download": {
+ "date": "2022-08-17T00:00:00Z",
+ "url": "https://github.com/jacktrip/jacktrip/releases/download/v1.6.2/JackTrip-v1.6.2-Windows-x64-installer.msi",
+ "downloadSize": 43606016,
+ "sha256": "2bb06fe3624df447d56da0d72fef1f4328346fd92c6dffccf66ba37253ec5e62"
+ }
+ },
{
"version": "1.6.2-rc.3",
"changelog": "Ability to open app via URL schemes, displaying latency stats, and Virtual Studio device support. Learn more here: https://github.com/jacktrip/jacktrip/releases/tag/v1.6.2-rc3",
{
"app_name": "JackTrip",
"releases": [
+ {
+ "version": "1.6.2",
+ "changelog": "Ability to open app via URL schemes, displaying latency stats, and Virtual Studio device support. Learn more here: https://github.com/jacktrip/jacktrip/releases/tag/v1.6.2",
+ "download": {
+ "date": "2022-08-17T00:00:00Z",
+ "url": "https://github.com/jacktrip/jacktrip/releases/download/v1.6.2/JackTrip-v1.6.2-macOS-x64-installer.pkg",
+ "downloadSize": 11536442,
+ "sha256": "450222f4db1922275e07286d0be6ea2df2873a8a39c3b23096bcfbce342b7b3c"
+ }
+ },
{
"version": "1.6.1",
"changelog": "Bugfixes around UDP timeout and 'Logging In' screen navigation. Learn more here: https://github.com/jacktrip/jacktrip/releases/tag/v1.6.1",
{
"app_name": "JackTrip",
"releases": [
+ {
+ "version": "1.6.2",
+ "changelog": "Ability to open app via URL schemes, displaying latency stats, and Virtual Studio device support. Learn more here: https://github.com/jacktrip/jacktrip/releases/tag/v1.6.2",
+ "download": {
+ "date": "2022-08-17T00:00:00Z",
+ "url": "https://github.com/jacktrip/jacktrip/releases/download/v1.6.2/JackTrip-v1.6.2-Windows-x64-installer.msi",
+ "downloadSize": 43606016,
+ "sha256": "2bb06fe3624df447d56da0d72fef1f4328346fd92c6dffccf66ba37253ec5e62"
+ }
+ },
{
"version": "1.6.1",
"changelog": "Bugfixes around UDP timeout and 'Logging In' screen navigation. Learn more here: https://github.com/jacktrip/jacktrip/releases/tag/v1.6.1",
#include "AudioInterface.h"
-constexpr const char* const gVersion = "1.6.2"; ///< JackTrip version
+constexpr const char* const gVersion = "1.6.3"; ///< JackTrip version
//*******************************************************************************
/// \name Default Values
// Check for some specific, GUI related command line options.
bool forceGui = false;
for (int i = 1; i < argc; i++) {
- std::cout << argv[i] << std::endl;
if (strcmp(argv[i], "--gui") == 0) {
forceGui = true;
} else if (strcmp(argv[i], "--test-gui") == 0) {
#endif // NO_GUI
// Otherwise use the non-GUI version, and parse our command line.
QLoggingCategory::setFilterRules(QStringLiteral("*.debug=true"));
- qInstallMessageHandler(qtMessageHandler);
try {
Settings settings;
settings.parseInput(argc, argv);