Browse Source

Bump version

Signed-off-by: falkTX <falktx@falktx.com>
tags/v0.9.2^0
falkTX 2 years ago
parent
commit
2187c061bf
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
5 changed files with 6 additions and 6 deletions
  1. +2
    -2
      c++/xycontroller/xycontroller.cpp
  2. +1
    -1
      src/catarina.py
  3. +1
    -1
      src/catia.py
  4. +1
    -1
      src/claudia.py
  5. +1
    -1
      src/shared.py

+ 2
- 2
c++/xycontroller/xycontroller.cpp View File

@@ -21,7 +21,7 @@
# define nullptr (0) # define nullptr (0)
#endif #endif


#define VERSION "0.8.1"
#define VERSION "0.9.2"


#include "../jack_utils.hpp" #include "../jack_utils.hpp"
#include "../midi_queue.hpp" #include "../midi_queue.hpp"
@@ -685,7 +685,7 @@ protected slots:
QMessageBox::about(this, tr("About XY Controller"), tr("<h3>XY Controller</h3>" QMessageBox::about(this, tr("About XY Controller"), tr("<h3>XY Controller</h3>"
"<br>Version %1" "<br>Version %1"
"<br>XY Controller is a simple XY widget that sends and receives data from Jack MIDI.<br>" "<br>XY Controller is a simple XY widget that sends and receives data from Jack MIDI.<br>"
"<br>Copyright (C) 2012-2013 falkTX").arg(VERSION));
"<br>Copyright (C) 2012-2022 falkTX").arg(VERSION));
} }


void slot_updateScreen() void slot_updateScreen()


+ 1
- 1
src/catarina.py View File

@@ -1260,7 +1260,7 @@ class CatarinaMainW(AbstractCanvasJackClass):
QMessageBox.about(self, self.tr("About Catarina"), self.tr("<h3>Catarina</h3>" QMessageBox.about(self, self.tr("About Catarina"), self.tr("<h3>Catarina</h3>"
"<br>Version %s" "<br>Version %s"
"<br>Catarina is a testing ground for the 'PatchCanvas' module.<br>" "<br>Catarina is a testing ground for the 'PatchCanvas' module.<br>"
"<br>Copyright (C) 2010-2018 falkTX") % VERSION)
"<br>Copyright (C) 2010-2022 falkTX") % VERSION)


def saveSettings(self): def saveSettings(self):
settings = QSettings() settings = QSettings()


+ 1
- 1
src/catia.py View File

@@ -1318,7 +1318,7 @@ class CatiaMainW(AbstractCanvasJackClass):
QMessageBox.about(self, self.tr("About Catia"), self.tr("<h3>Catia</h3>" QMessageBox.about(self, self.tr("About Catia"), self.tr("<h3>Catia</h3>"
"<br>Version %s" "<br>Version %s"
"<br>Catia is a nice JACK Patchbay with A2J Bridge integration.<br>" "<br>Catia is a nice JACK Patchbay with A2J Bridge integration.<br>"
"<br>Copyright (C) 2010-2018 falkTX" % VERSION))
"<br>Copyright (C) 2010-2022 falkTX" % VERSION))


def saveSettings(self): def saveSettings(self):
settings = QSettings() settings = QSettings()


+ 1
- 1
src/claudia.py View File

@@ -2656,7 +2656,7 @@ class ClaudiaMainW(AbstractCanvasJackClass):
QMessageBox.about(self, self.tr("About Claudia"), self.tr("<h3>Claudia</h3>" QMessageBox.about(self, self.tr("About Claudia"), self.tr("<h3>Claudia</h3>"
"<br>Version %s" "<br>Version %s"
"<br>Claudia is a Graphical User Interface to LADISH.<br>" "<br>Claudia is a Graphical User Interface to LADISH.<br>"
"<br>Copyright (C) 2010-2018 falkTX" % VERSION))
"<br>Copyright (C) 2010-2022 falkTX" % VERSION))


def saveSettings(self): def saveSettings(self):
settings = QSettings() settings = QSettings()


+ 1
- 1
src/shared.py View File

@@ -85,7 +85,7 @@ sys.excepthook = sys_excepthook
# ------------------------------------------------------------------------------------------------------------ # ------------------------------------------------------------------------------------------------------------
# Set Version # Set Version


VERSION = "0.9.0"
VERSION = "0.9.2"


# ------------------------------------------------------------------------------------------------------------ # ------------------------------------------------------------------------------------------------------------
# Set Debug mode # Set Debug mode


Loading…
Cancel
Save