| @@ -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.9 | |||||
| VERSION := 2.5.10 | |||||
| -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-2024 Filipe Coelho <falktx@falktx.com> | |||||
| # Copyright (C) 2011-2025 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 | ||||
| @@ -76,7 +76,7 @@ if WINDOWS: | |||||
| # ------------------------------------------------------------------------------------------------------------ | # ------------------------------------------------------------------------------------------------------------ | ||||
| # Set Version | # Set Version | ||||
| VERSION = "2.5.9" | |||||
| VERSION = "2.5.10" | |||||
| # ------------------------------------------------------------------------------------------------------------ | # ------------------------------------------------------------------------------------------------------------ | ||||
| # Set TMP | # Set TMP | ||||
| @@ -2,7 +2,7 @@ | |||||
| # -*- coding: utf-8 -*- | # -*- coding: utf-8 -*- | ||||
| # Carla widgets code | # Carla widgets code | ||||
| # Copyright (C) 2011-2024 Filipe Coelho <falktx@falktx.com> | |||||
| # Copyright (C) 2011-2025 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 | ||||
| @@ -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-2024 falkTX<br>" | |||||
| "<br>Copyright (C) 2011-2025 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-2024 Filipe Coelho <falktx@falktx.com> | |||||
| * Copyright (C) 2011-2025 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 | ||||
| @@ -27,8 +27,8 @@ | |||||
| #endif | #endif | ||||
| /* Set Version */ | /* Set Version */ | ||||
| #define CARLA_VERSION_HEX 0x020509 | |||||
| #define CARLA_VERSION_STRING "2.5.9" | |||||
| #define CARLA_VERSION_HEX 0x02050a | |||||
| #define CARLA_VERSION_STRING "2.5.10" | |||||
| #define CARLA_VERSION_STRMIN "2.5" | #define CARLA_VERSION_STRMIN "2.5" | ||||
| /* Check OS */ | /* Check OS */ | ||||