Skip to content

Commit

Permalink
reelase v2.1.0 preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolcl committed Jun 10, 2023
1 parent c5f7b72 commit bd77141
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.9)
project( multiplatform_sonivoxeas
VERSION 2.0.1
VERSION 2.1.0
DESCRIPTION "Multiplatform Sonivox EAS for Qt" )

set(CMAKE_INCLUDE_CURRENT_DIR ON)
Expand Down
17 changes: 7 additions & 10 deletions cmdlnsynth/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,26 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <csignal>
#include <QDebug>
#include <QCoreApplication>
#include <QCommandLineParser>
#include <QScopedPointer>
#include <QCoreApplication>
#include <QDebug>
#include <QFileInfo>
#include <QScopedPointer>
#include <csignal>
#include <cstdio>

#include <eas_reverb.h>
#include "synthcontroller.h"
#include "programsettings.h"

#if QT_VERSION >= QT_VERSION_CHECK(5,15,0)
#define endl Qt::endl
#endif

QScopedPointer<SynthController> synth;

void signalHandler(int sig)
{
if (sig == SIGINT)
qDebug() << "SIGINT received. Exiting" << endl;
qDebug() << "SIGINT received. Exiting";
else if (sig == SIGTERM)
qDebug() << "SIGTERM received. Exiting" << endl;
qDebug() << "SIGTERM received. Exiting";
synth->stop();
qApp->quit();
}
Expand Down
1 change: 1 addition & 0 deletions guisynth/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ MainWindow::MainWindow(QWidget *parent) :
m_songFile = QString();
updateState(EmptyState);
initialize();
adjustSize();
}

MainWindow::~MainWindow()
Expand Down
Binary file modified screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bd77141

Please sign in to comment.