From 89fa765a11ca4a5034a1b259f328658f94b5447b Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Wed, 9 Dec 2020 10:28:45 +0100 Subject: Fix compilation with Qt5.15+ Origin: Debian Bug: https://github.com/buzzinglight/IanniX/pull/52 Last-Update: 2020-12-09 fixed missing include of "QPainterPath" Last-Update: 2020-12-09 Gbp-Pq: Name qpainterpath_fix.patch --- objects/nxcurve.h | 1 + 1 file changed, 1 insertion(+) diff --git a/objects/nxcurve.h b/objects/nxcurve.h index a4b493e..0a1623f 100644 --- a/objects/nxcurve.h +++ b/objects/nxcurve.h @@ -28,6 +28,7 @@ #include #include #include +#include #include "geometry/qmuparser/muParser.h" #include "nxobject.h" #include "qmath.h" -- cgit v1.2.3 From 17ed16f59284a6a910a081de58e9243a58f8fd0f Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Wed, 9 Dec 2020 10:28:45 +0100 Subject: fixed description and binary in .desktop file Bug: https://github.com/buzzinglight/IanniX/pull/52 Last-Update: 2020-12-09 the binary is called "iannix", not "IanniX" (on case-sensitive filesystems). the description should lack the .desktop extension Last-Update: 2020-12-09 Gbp-Pq: Name desktop.patch --- iannix.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iannix.desktop b/iannix.desktop index ede9498..cb1bca3 100644 --- a/iannix.desktop +++ b/iannix.desktop @@ -1,10 +1,10 @@ [Desktop Entry] Name=IanniX Comment=Graphical sequencer for digital art -Exec=IanniX +Exec=/usr/bin/iannix Icon=/usr/share/pixmaps/IanniX.png Terminal=false Type=Application X-MultipleArgs=false Categories=Audio;AudioVideoEditing;AudioVideo;Video;Qt; -Name[en_US]=IanniX.desktop +Name[en_US]=IanniX -- cgit v1.2.3 From bf2051250a534f5898c80cc301d3d173bc9fde47 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Wed, 9 Dec 2020 10:28:45 +0100 Subject: fix spelling errors Bug: https://github.com/buzzinglight/IanniX/pull/25 Last-Update: 2017-05-19 Last-Update: 2017-05-19 Gbp-Pq: Name fix_spelling_errors.patch --- gui/uiview.ui | 2 +- objects/nxcursor.cpp | 2 +- transport/transport.ui | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/uiview.ui b/gui/uiview.ui index 22826dd..028e238 100644 --- a/gui/uiview.ui +++ b/gui/uiview.ui @@ -1367,7 +1367,7 @@ QDialogButtonBox QPushButton { Imports SVG file to score - SVG files|IanniX can import SVG files (open vectorial format). Be aware that IanniX tries to make the best it can to import data from SVG, but some of SVG features are not compatible with IanniX philosophy.\nFinaly, SVG is based on print or display units whereas IanniX is based on seconds; you may need to rescale the imported data. + SVG files|IanniX can import SVG files (open vectorial format). Be aware that IanniX tries to make the best it can to import data from SVG, but some of SVG features are not compatible with IanniX philosophy.\nFinally, SVG is based on print or display units whereas IanniX is based on seconds; you may need to rescale the imported data. Qt::ApplicationShortcut diff --git a/objects/nxcursor.cpp b/objects/nxcursor.cpp index a3733cc..7228e14 100644 --- a/objects/nxcursor.cpp +++ b/objects/nxcursor.cpp @@ -163,7 +163,7 @@ void NxCursor::setTime(qreal delta) { time = time / curve->getPathLength() * fakeCurveLength + timeStartOffsetReal / curve->getPathLength(); } - //Finaly + //Finally nbLoopOld = nbLoop; calculate(); diff --git a/transport/transport.ui b/transport/transport.ui index cf431a7..a216ed9 100644 --- a/transport/transport.ui +++ b/transport/transport.ui @@ -777,7 +777,7 @@ QPushButton:disabled { Rendering frame rate - Rendering frame rate|IannIX refreshes your score at the displayed frame rate.\n You can also force IanniX to a specific framerate by typing a value in this field. 50fps is fluid but it can also be CPU intensive so feel free to decrease this value if needed.\n Finaly, be aware that graphical frame rate doesn't affect messages accuracy or sample rate. + Rendering frame rate|IannIX refreshes your score at the displayed frame rate.\n You can also force IanniX to a specific framerate by typing a value in this field. 50fps is fluid but it can also be CPU intensive so feel free to decrease this value if needed.\n Finally, be aware that graphical frame rate doesn't affect messages accuracy or sample rate. 009 fps -- cgit v1.2.3 From e80e6fd730beba0179fa72a1d5ad66ed61b5aacc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Wed, 9 Dec 2020 10:28:45 +0100 Subject: use FSH path for application resources Last-Update: 2017-05-19 rather than looking for the file in /usr/bin/Tools, they should be searched for in /usr/lib/iannix/Tools Last-Update: 2017-05-19 Gbp-Pq: Name debian_resources_path.patch --- iannixapp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iannixapp.cpp b/iannixapp.cpp index 6aa351b..9e80f79 100644 --- a/iannixapp.cpp +++ b/iannixapp.cpp @@ -83,7 +83,8 @@ void IanniXApp::launch(int &argc, char **argv) { //Start setHelp(); - QDir pathApplicationDir = QDir(QCoreApplication::applicationDirPath()).absolutePath(); + QDir pathApplicationDir = QDir(QCoreApplication::applicationDirPath() + +"/../lib/iannix/").absolutePath(); #ifdef Q_OS_MAC pathApplicationDir.cdUp(); pathApplicationDir.cdUp(); -- cgit v1.2.3 From c914bad2109faa05868fe84e93a8bf917e5c38f0 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Wed, 9 Dec 2020 10:28:45 +0100 Subject: prevent checking upstream website for updates Last-Update: 2017-06-06 Last-Update: 2017-06-06 Gbp-Pq: Name debian_privacy.patch --- iannix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/iannix.cpp b/iannix.cpp index 5f7b50e..fa3ef39 100644 --- a/iannix.cpp +++ b/iannix.cpp @@ -51,6 +51,7 @@ IanniX::IanniX(const QString &_projectToLoad, QObject *parent) : //Updates forceUpdate = false; forbidUpdate = !projectToLoad.isEmpty(); + forbidUpdate = true; //Default values setCurrentDocument(0); -- cgit v1.2.3 From 6144bffb3fa205fc57bf23c11898c00d92f9f234 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Tue, 2 Feb 2021 22:10:31 +0100 Subject: Fix compilation with Qt5.15+ Origin: Debian Bug: https://github.com/buzzinglight/IanniX/pull/52 Last-Update: 2020-12-09 fixed missing include of "QPainterPath" Last-Update: 2020-12-09 Gbp-Pq: Name qpainterpath_fix.patch --- objects/nxcurve.h | 1 + 1 file changed, 1 insertion(+) diff --git a/objects/nxcurve.h b/objects/nxcurve.h index a4b493e..0a1623f 100644 --- a/objects/nxcurve.h +++ b/objects/nxcurve.h @@ -28,6 +28,7 @@ #include #include #include +#include #include "geometry/qmuparser/muParser.h" #include "nxobject.h" #include "qmath.h" -- cgit v1.2.3 From a6936470fa0b34e18b93c234b2f7d1b136ce31f6 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Tue, 2 Feb 2021 22:10:31 +0100 Subject: fixed description and binary in .desktop file Bug: https://github.com/buzzinglight/IanniX/pull/52 Last-Update: 2020-12-09 the binary is called "iannix", not "IanniX" (on case-sensitive filesystems). the description should lack the .desktop extension Last-Update: 2020-12-09 Gbp-Pq: Name desktop.patch --- iannix.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iannix.desktop b/iannix.desktop index ede9498..cb1bca3 100644 --- a/iannix.desktop +++ b/iannix.desktop @@ -1,10 +1,10 @@ [Desktop Entry] Name=IanniX Comment=Graphical sequencer for digital art -Exec=IanniX +Exec=/usr/bin/iannix Icon=/usr/share/pixmaps/IanniX.png Terminal=false Type=Application X-MultipleArgs=false Categories=Audio;AudioVideoEditing;AudioVideo;Video;Qt; -Name[en_US]=IanniX.desktop +Name[en_US]=IanniX -- cgit v1.2.3 From 926bf2fb030628d4187cfa7e6da92c522dc391a3 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Tue, 2 Feb 2021 22:10:31 +0100 Subject: fix spelling errors Bug: https://github.com/buzzinglight/IanniX/pull/25 Last-Update: 2017-05-19 Last-Update: 2017-05-19 Gbp-Pq: Name fix_spelling_errors.patch --- gui/uiview.ui | 2 +- objects/nxcursor.cpp | 2 +- transport/transport.ui | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/uiview.ui b/gui/uiview.ui index 22826dd..028e238 100644 --- a/gui/uiview.ui +++ b/gui/uiview.ui @@ -1367,7 +1367,7 @@ QDialogButtonBox QPushButton { Imports SVG file to score - SVG files|IanniX can import SVG files (open vectorial format). Be aware that IanniX tries to make the best it can to import data from SVG, but some of SVG features are not compatible with IanniX philosophy.\nFinaly, SVG is based on print or display units whereas IanniX is based on seconds; you may need to rescale the imported data. + SVG files|IanniX can import SVG files (open vectorial format). Be aware that IanniX tries to make the best it can to import data from SVG, but some of SVG features are not compatible with IanniX philosophy.\nFinally, SVG is based on print or display units whereas IanniX is based on seconds; you may need to rescale the imported data. Qt::ApplicationShortcut diff --git a/objects/nxcursor.cpp b/objects/nxcursor.cpp index a3733cc..7228e14 100644 --- a/objects/nxcursor.cpp +++ b/objects/nxcursor.cpp @@ -163,7 +163,7 @@ void NxCursor::setTime(qreal delta) { time = time / curve->getPathLength() * fakeCurveLength + timeStartOffsetReal / curve->getPathLength(); } - //Finaly + //Finally nbLoopOld = nbLoop; calculate(); diff --git a/transport/transport.ui b/transport/transport.ui index cf431a7..a216ed9 100644 --- a/transport/transport.ui +++ b/transport/transport.ui @@ -777,7 +777,7 @@ QPushButton:disabled { Rendering frame rate - Rendering frame rate|IannIX refreshes your score at the displayed frame rate.\n You can also force IanniX to a specific framerate by typing a value in this field. 50fps is fluid but it can also be CPU intensive so feel free to decrease this value if needed.\n Finaly, be aware that graphical frame rate doesn't affect messages accuracy or sample rate. + Rendering frame rate|IannIX refreshes your score at the displayed frame rate.\n You can also force IanniX to a specific framerate by typing a value in this field. 50fps is fluid but it can also be CPU intensive so feel free to decrease this value if needed.\n Finally, be aware that graphical frame rate doesn't affect messages accuracy or sample rate. 009 fps -- cgit v1.2.3 From d12dc2ff08530416e8d7aca5b733938b5871cdcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 2 Feb 2021 22:10:31 +0100 Subject: use FSH path for application resources Last-Update: 2017-05-19 rather than looking for the file in /usr/bin/Tools, they should be searched for in /usr/lib/iannix/Tools Last-Update: 2017-05-19 Gbp-Pq: Name debian_resources_path.patch --- iannixapp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iannixapp.cpp b/iannixapp.cpp index 6aa351b..9e80f79 100644 --- a/iannixapp.cpp +++ b/iannixapp.cpp @@ -83,7 +83,8 @@ void IanniXApp::launch(int &argc, char **argv) { //Start setHelp(); - QDir pathApplicationDir = QDir(QCoreApplication::applicationDirPath()).absolutePath(); + QDir pathApplicationDir = QDir(QCoreApplication::applicationDirPath() + +"/../lib/iannix/").absolutePath(); #ifdef Q_OS_MAC pathApplicationDir.cdUp(); pathApplicationDir.cdUp(); -- cgit v1.2.3 From 66f5340c43a503669f5fd35536d801f61e997dc4 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Tue, 2 Feb 2021 22:10:31 +0100 Subject: prevent checking upstream website for updates Last-Update: 2017-06-06 Last-Update: 2017-06-06 Gbp-Pq: Name debian_privacy.patch --- iannix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/iannix.cpp b/iannix.cpp index 5f7b50e..fa3ef39 100644 --- a/iannix.cpp +++ b/iannix.cpp @@ -51,6 +51,7 @@ IanniX::IanniX(const QString &_projectToLoad, QObject *parent) : //Updates forceUpdate = false; forbidUpdate = !projectToLoad.isEmpty(); + forbidUpdate = true; //Default values setCurrentDocument(0); -- cgit v1.2.3 From 74d21796cfd07801f86bb93acfcad545024464e6 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Thu, 9 Dec 2021 11:11:18 +0100 Subject: Fix compilation with Qt5.15+ Origin: Debian Bug: https://github.com/buzzinglight/IanniX/pull/52 Last-Update: 2020-12-09 fixed missing include of "QPainterPath" Last-Update: 2020-12-09 Gbp-Pq: Name qpainterpath_fix.patch --- objects/nxcurve.h | 1 + 1 file changed, 1 insertion(+) diff --git a/objects/nxcurve.h b/objects/nxcurve.h index a4b493e..0a1623f 100644 --- a/objects/nxcurve.h +++ b/objects/nxcurve.h @@ -28,6 +28,7 @@ #include #include #include +#include #include "geometry/qmuparser/muParser.h" #include "nxobject.h" #include "qmath.h" -- cgit v1.2.3 From 74ff02119948909b327250108ab943f1b892cb28 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Thu, 9 Dec 2021 11:11:18 +0100 Subject: fixed description and binary in .desktop file Bug: https://github.com/buzzinglight/IanniX/pull/52 Last-Update: 2020-12-09 the binary is called "iannix", not "IanniX" (on case-sensitive filesystems). the description should lack the .desktop extension Last-Update: 2020-12-09 Gbp-Pq: Name desktop.patch --- iannix.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iannix.desktop b/iannix.desktop index ede9498..cb1bca3 100644 --- a/iannix.desktop +++ b/iannix.desktop @@ -1,10 +1,10 @@ [Desktop Entry] Name=IanniX Comment=Graphical sequencer for digital art -Exec=IanniX +Exec=/usr/bin/iannix Icon=/usr/share/pixmaps/IanniX.png Terminal=false Type=Application X-MultipleArgs=false Categories=Audio;AudioVideoEditing;AudioVideo;Video;Qt; -Name[en_US]=IanniX.desktop +Name[en_US]=IanniX -- cgit v1.2.3 From 931142e472b29b3849048ac6fa2bdd3da0ff506d Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Thu, 9 Dec 2021 11:11:18 +0100 Subject: fix spelling errors Bug: https://github.com/buzzinglight/IanniX/pull/25 Last-Update: 2017-05-19 Last-Update: 2017-05-19 Gbp-Pq: Name fix_spelling_errors.patch --- gui/uiview.ui | 2 +- objects/nxcursor.cpp | 2 +- transport/transport.ui | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/uiview.ui b/gui/uiview.ui index 22826dd..028e238 100644 --- a/gui/uiview.ui +++ b/gui/uiview.ui @@ -1367,7 +1367,7 @@ QDialogButtonBox QPushButton { Imports SVG file to score - SVG files|IanniX can import SVG files (open vectorial format). Be aware that IanniX tries to make the best it can to import data from SVG, but some of SVG features are not compatible with IanniX philosophy.\nFinaly, SVG is based on print or display units whereas IanniX is based on seconds; you may need to rescale the imported data. + SVG files|IanniX can import SVG files (open vectorial format). Be aware that IanniX tries to make the best it can to import data from SVG, but some of SVG features are not compatible with IanniX philosophy.\nFinally, SVG is based on print or display units whereas IanniX is based on seconds; you may need to rescale the imported data. Qt::ApplicationShortcut diff --git a/objects/nxcursor.cpp b/objects/nxcursor.cpp index a3733cc..7228e14 100644 --- a/objects/nxcursor.cpp +++ b/objects/nxcursor.cpp @@ -163,7 +163,7 @@ void NxCursor::setTime(qreal delta) { time = time / curve->getPathLength() * fakeCurveLength + timeStartOffsetReal / curve->getPathLength(); } - //Finaly + //Finally nbLoopOld = nbLoop; calculate(); diff --git a/transport/transport.ui b/transport/transport.ui index cf431a7..a216ed9 100644 --- a/transport/transport.ui +++ b/transport/transport.ui @@ -777,7 +777,7 @@ QPushButton:disabled { Rendering frame rate - Rendering frame rate|IannIX refreshes your score at the displayed frame rate.\n You can also force IanniX to a specific framerate by typing a value in this field. 50fps is fluid but it can also be CPU intensive so feel free to decrease this value if needed.\n Finaly, be aware that graphical frame rate doesn't affect messages accuracy or sample rate. + Rendering frame rate|IannIX refreshes your score at the displayed frame rate.\n You can also force IanniX to a specific framerate by typing a value in this field. 50fps is fluid but it can also be CPU intensive so feel free to decrease this value if needed.\n Finally, be aware that graphical frame rate doesn't affect messages accuracy or sample rate. 009 fps -- cgit v1.2.3 From df8c76a3e3a7c38ebc308ce8a3bcc21626e670eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 9 Dec 2021 11:11:18 +0100 Subject: use FSH path for application resources Last-Update: 2017-05-19 rather than looking for the file in /usr/bin/Tools, they should be searched for in /usr/lib/iannix/Tools Last-Update: 2017-05-19 Gbp-Pq: Name debian_resources_path.patch --- iannixapp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iannixapp.cpp b/iannixapp.cpp index 6aa351b..9e80f79 100644 --- a/iannixapp.cpp +++ b/iannixapp.cpp @@ -83,7 +83,8 @@ void IanniXApp::launch(int &argc, char **argv) { //Start setHelp(); - QDir pathApplicationDir = QDir(QCoreApplication::applicationDirPath()).absolutePath(); + QDir pathApplicationDir = QDir(QCoreApplication::applicationDirPath() + +"/../lib/iannix/").absolutePath(); #ifdef Q_OS_MAC pathApplicationDir.cdUp(); pathApplicationDir.cdUp(); -- cgit v1.2.3 From ce965adf1e2aa8a235735ef58daa8a8b6c3a298e Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Thu, 9 Dec 2021 11:11:18 +0100 Subject: prevent checking upstream website for updates Last-Update: 2017-06-06 Last-Update: 2017-06-06 Gbp-Pq: Name debian_privacy.patch --- iannix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/iannix.cpp b/iannix.cpp index 5f7b50e..fa3ef39 100644 --- a/iannix.cpp +++ b/iannix.cpp @@ -51,6 +51,7 @@ IanniX::IanniX(const QString &_projectToLoad, QObject *parent) : //Updates forceUpdate = false; forbidUpdate = !projectToLoad.isEmpty(); + forbidUpdate = true; //Default values setCurrentDocument(0); -- cgit v1.2.3 From d465501a5218677d9538679a3c959d4447080768 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Mon, 5 Dec 2022 14:27:27 +0100 Subject: Fix compilation with Qt5.15+ Origin: Debian Bug: https://github.com/buzzinglight/IanniX/pull/52 Last-Update: 2020-12-09 fixed missing include of "QPainterPath" Last-Update: 2020-12-09 Gbp-Pq: Name qpainterpath_fix.patch --- objects/nxcurve.h | 1 + 1 file changed, 1 insertion(+) diff --git a/objects/nxcurve.h b/objects/nxcurve.h index a4b493e..0a1623f 100644 --- a/objects/nxcurve.h +++ b/objects/nxcurve.h @@ -28,6 +28,7 @@ #include #include #include +#include #include "geometry/qmuparser/muParser.h" #include "nxobject.h" #include "qmath.h" -- cgit v1.2.3 From c7b98ff34056c0a6ba09eb411a7d30127a6c4d92 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Mon, 5 Dec 2022 14:27:27 +0100 Subject: fixed description and binary in .desktop file Bug: https://github.com/buzzinglight/IanniX/pull/52 Last-Update: 2020-12-09 the binary is called "iannix", not "IanniX" (on case-sensitive filesystems). the description should lack the .desktop extension Last-Update: 2020-12-09 Gbp-Pq: Name desktop.patch --- iannix.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iannix.desktop b/iannix.desktop index ede9498..cb1bca3 100644 --- a/iannix.desktop +++ b/iannix.desktop @@ -1,10 +1,10 @@ [Desktop Entry] Name=IanniX Comment=Graphical sequencer for digital art -Exec=IanniX +Exec=/usr/bin/iannix Icon=/usr/share/pixmaps/IanniX.png Terminal=false Type=Application X-MultipleArgs=false Categories=Audio;AudioVideoEditing;AudioVideo;Video;Qt; -Name[en_US]=IanniX.desktop +Name[en_US]=IanniX -- cgit v1.2.3 From f8eb34a288661bc61534cfbbf6effdbdd5165c30 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Mon, 5 Dec 2022 14:27:27 +0100 Subject: fix spelling errors Bug: https://github.com/buzzinglight/IanniX/pull/25 Last-Update: 2017-05-19 Last-Update: 2017-05-19 Gbp-Pq: Name fix_spelling_errors.patch --- gui/uiview.ui | 2 +- objects/nxcursor.cpp | 2 +- transport/transport.ui | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/uiview.ui b/gui/uiview.ui index 22826dd..028e238 100644 --- a/gui/uiview.ui +++ b/gui/uiview.ui @@ -1367,7 +1367,7 @@ QDialogButtonBox QPushButton { Imports SVG file to score - SVG files|IanniX can import SVG files (open vectorial format). Be aware that IanniX tries to make the best it can to import data from SVG, but some of SVG features are not compatible with IanniX philosophy.\nFinaly, SVG is based on print or display units whereas IanniX is based on seconds; you may need to rescale the imported data. + SVG files|IanniX can import SVG files (open vectorial format). Be aware that IanniX tries to make the best it can to import data from SVG, but some of SVG features are not compatible with IanniX philosophy.\nFinally, SVG is based on print or display units whereas IanniX is based on seconds; you may need to rescale the imported data. Qt::ApplicationShortcut diff --git a/objects/nxcursor.cpp b/objects/nxcursor.cpp index a3733cc..7228e14 100644 --- a/objects/nxcursor.cpp +++ b/objects/nxcursor.cpp @@ -163,7 +163,7 @@ void NxCursor::setTime(qreal delta) { time = time / curve->getPathLength() * fakeCurveLength + timeStartOffsetReal / curve->getPathLength(); } - //Finaly + //Finally nbLoopOld = nbLoop; calculate(); diff --git a/transport/transport.ui b/transport/transport.ui index cf431a7..a216ed9 100644 --- a/transport/transport.ui +++ b/transport/transport.ui @@ -777,7 +777,7 @@ QPushButton:disabled { Rendering frame rate - Rendering frame rate|IannIX refreshes your score at the displayed frame rate.\n You can also force IanniX to a specific framerate by typing a value in this field. 50fps is fluid but it can also be CPU intensive so feel free to decrease this value if needed.\n Finaly, be aware that graphical frame rate doesn't affect messages accuracy or sample rate. + Rendering frame rate|IannIX refreshes your score at the displayed frame rate.\n You can also force IanniX to a specific framerate by typing a value in this field. 50fps is fluid but it can also be CPU intensive so feel free to decrease this value if needed.\n Finally, be aware that graphical frame rate doesn't affect messages accuracy or sample rate. 009 fps -- cgit v1.2.3 From 7b178368237b05b265dd39f3bb556f4428391748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Mon, 5 Dec 2022 14:27:27 +0100 Subject: use FSH path for application resources Last-Update: 2017-05-19 rather than looking for the file in /usr/bin/Tools, they should be searched for in /usr/lib/iannix/Tools Last-Update: 2017-05-19 Gbp-Pq: Name debian_resources_path.patch --- iannixapp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iannixapp.cpp b/iannixapp.cpp index 6aa351b..9e80f79 100644 --- a/iannixapp.cpp +++ b/iannixapp.cpp @@ -83,7 +83,8 @@ void IanniXApp::launch(int &argc, char **argv) { //Start setHelp(); - QDir pathApplicationDir = QDir(QCoreApplication::applicationDirPath()).absolutePath(); + QDir pathApplicationDir = QDir(QCoreApplication::applicationDirPath() + +"/../lib/iannix/").absolutePath(); #ifdef Q_OS_MAC pathApplicationDir.cdUp(); pathApplicationDir.cdUp(); -- cgit v1.2.3 From 992866e8504db70e32ddd56db7207b8e28be1c09 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Mon, 5 Dec 2022 14:27:27 +0100 Subject: prevent checking upstream website for updates Last-Update: 2017-06-06 Last-Update: 2017-06-06 Gbp-Pq: Name debian_privacy.patch --- iannix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/iannix.cpp b/iannix.cpp index 5f7b50e..fa3ef39 100644 --- a/iannix.cpp +++ b/iannix.cpp @@ -51,6 +51,7 @@ IanniX::IanniX(const QString &_projectToLoad, QObject *parent) : //Updates forceUpdate = false; forbidUpdate = !projectToLoad.isEmpty(); + forbidUpdate = true; //Default values setCurrentDocument(0); -- cgit v1.2.3