Browse Source

Bump version to 2.5.8

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.8
falkTX 8 months ago
parent
commit
1da9a598c0
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

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

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

-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-2023 Filipe Coelho <falktx@falktx.com>
# Copyright (C) 2011-2024 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
@@ -76,7 +76,7 @@ if WINDOWS:
# ------------------------------------------------------------------------------------------------------------
# Set Version

VERSION = "2.5.7"
VERSION = "2.5.8"

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


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

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

# Carla widgets code
# Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
# Copyright (C) 2011-2024 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-2023 falkTX<br>"
"<br>Copyright (C) 2011-2024 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-2023 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2011-2024 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
@@ -27,8 +27,8 @@
#endif

/* Set Version */
#define CARLA_VERSION_HEX 0x020507
#define CARLA_VERSION_STRING "2.5.7"
#define CARLA_VERSION_HEX 0x020508
#define CARLA_VERSION_STRING "2.5.8"
#define CARLA_VERSION_STRMIN "2.5"

/* Check OS */


Loading…
Cancel
Save