@@ -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,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 | ||||
@@ -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: | ||||
@@ -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 */ | ||||