Browse Source

Bump version to 2.5.3

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

+ 1
- 1
Makefile View File

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


# see also source/frontend/carla_shared.py and source/includes/CarlaDefines.h # see also source/frontend/carla_shared.py and source/includes/CarlaDefines.h
VERSION := 2.5.2
VERSION := 2.5.3


-include Makefile.user.mk -include Makefile.user.mk




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

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


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


VERSION = "2.5.2"
VERSION = "2.5.3"


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


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

@@ -122,7 +122,7 @@ class CarlaAboutW(QDialog):
self.ui.l_about.setText(self.tr("" self.ui.l_about.setText(self.tr(""
"<br>Version %s" "<br>Version %s"
"<br>Carla is a fully-featured audio plugin host%s.<br>" "<br>Carla is a fully-featured audio plugin host%s.<br>"
"<br>Copyright (C) 2011-2022 falkTX<br>"
"<br>Copyright (C) 2011-2023 falkTX<br>"
"" % (VERSION, extraInfo))) "" % (VERSION, extraInfo)))


if self.ui.about.palette().color(QPalette.Background).blackF() < 0.5: 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 * Carla common defines
* Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2011-2023 Filipe Coelho <falktx@falktx.com>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as * modify it under the terms of the GNU General Public License as
@@ -32,8 +32,8 @@
#endif #endif


/* Set Version */ /* Set Version */
#define CARLA_VERSION_HEX 0x020502
#define CARLA_VERSION_STRING "2.5.2"
#define CARLA_VERSION_HEX 0x020503
#define CARLA_VERSION_STRING "2.5.3"
#define CARLA_VERSION_STRMIN "2.5" #define CARLA_VERSION_STRMIN "2.5"


/* Check OS */ /* Check OS */


Loading…
Cancel
Save