Browse Source

Bump version to 2.4.2

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.4.2
falkTX 2 years ago
parent
commit
3bc96e352c
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
4 changed files with 8 additions and 8 deletions
  1. +1
    -1
      Makefile
  2. +2
    -2
      source/frontend/carla_shared.py
  3. +2
    -2
      source/frontend/carla_widgets.py
  4. +3
    -3
      source/includes/CarlaDefines.h

+ 1
- 1
Makefile View File

@@ -22,7 +22,7 @@ else
MODULEDIR := $(CURDIR)/build/modules/Release
endif

VERSION := 2.4.1
VERSION := 2.4.2

-include Makefile.user.mk



+ 2
- 2
source/frontend/carla_shared.py View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

# Common Carla code
# Copyright (C) 2011-2021 Filipe Coelho <falktx@falktx.com>
# Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
@@ -71,7 +71,7 @@ if WINDOWS:
# ------------------------------------------------------------------------------------------------------------
# Set Version

VERSION = "2.4.1"
VERSION = "2.4.2"

# ------------------------------------------------------------------------------------------------------------
# Set TMP


+ 2
- 2
source/frontend/carla_widgets.py View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

# Carla widgets code
# Copyright (C) 2011-2021 Filipe Coelho <falktx@falktx.com>
# Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
@@ -122,7 +122,7 @@ class CarlaAboutW(QDialog):
self.ui.l_about.setText(self.tr(""
"<br>Version %s"
"<br>Carla is a fully-featured audio plugin host%s.<br>"
"<br>Copyright (C) 2011-2021 falkTX<br>"
"<br>Copyright (C) 2011-2022 falkTX<br>"
"" % (VERSION, extraInfo)))

if self.ui.about.palette().color(QPalette.Background).blackF() < 0.5:


+ 3
- 3
source/includes/CarlaDefines.h View File

@@ -1,6 +1,6 @@
/*
* Carla common defines
* Copyright (C) 2011-2021 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -32,8 +32,8 @@
#endif

/* Set Version */
#define CARLA_VERSION_HEX 0x020401
#define CARLA_VERSION_STRING "2.4.1"
#define CARLA_VERSION_HEX 0x020402
#define CARLA_VERSION_STRING "2.4.2"
#define CARLA_VERSION_STRMIN "2.4"

/* Check OS */


Loading…
Cancel
Save