diff --git a/LICENSE.txt b/LICENSE.txt
index f1ad83d..101c796 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
diff --git a/README.md b/README.md
index 02136cf..97ef71b 100644
--- a/README.md
+++ b/README.md
@@ -4,14 +4,14 @@
BakeMaster is an add-on specified for baking various texture maps
and created for Blender - an open-source 3D Computer graphics software.
Along with its intuitive and convenient workflow baking process becomes a pleasure.
Created from scratch for users who can't stand wasting time,
and yearn for most functionality and cutting-edge features.
-
+
diff --git a/__init__.py b/__init__.py
index 984ce96..e526044 100644
--- a/__init__.py
+++ b/__init__.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
@@ -31,7 +31,7 @@
"name" : "BakeMaster",
"description" : "Bake various PBR, Masks, and Cycles maps with ease and comfort.",
"author" : "kemplerart",
- "version" : (2, 5, 0),
+ "version" : (2, 5, 1),
"blender" : (2, 83, 0),
"location" : "View3D > Sidebar > BakeMaster",
"warning" : "",
diff --git a/docs/conf.py b/docs/conf.py
index d171bc0..1bd1c6e 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -16,7 +16,7 @@
# -- Local Varibles ----------------------------------------------------------
-bakemaster_version = '2.0.2'
+bakemaster_version = '2.5.1'
# -- Project information -----------------------------------------------------
@@ -24,7 +24,7 @@
copyright = ': 2023, Kiril Strezikozin'
author = 'kemplerart'
version = bakemaster_version
-branch = "release-2.0.2"
+branch = "release-2.5.1"
# The full version, including alpha/beta/rc tags
release = bakemaster_version
@@ -216,7 +216,7 @@
# every page bottom, using the given strftime() format.
# The empty string is equivalent to '%b %d, %Y'
# (or a locale-dependent equivalent).
-html_last_updated_fmt = '4/28/2023'
+html_last_updated_fmt = '8/17/2023'
# If true, the reST sources are included in the HTML build as _sources/name.
html_copy_source = True
diff --git a/docs/index.rst b/docs/index.rst
index 6fc08f6..7d3ecbd 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -6,9 +6,9 @@
.. |teaser| image:: ./_static/images/pages/about/teaser_1920x1080.png
:alt: Teaser
-============================
-BakeMaster 2.0 Documentation
-============================
+==============================
+BakeMaster 2.5.1 Documentation
+==============================
|teaser|
diff --git a/docs/pages/more/releases.rst b/docs/pages/more/releases.rst
index 94f39c9..edf8f3d 100644
--- a/docs/pages/more/releases.rst
+++ b/docs/pages/more/releases.rst
@@ -4,6 +4,20 @@ Releases
All BakeMaster Releases and Changelogs are listed on this page. Each new release comes with new features, improvements, or fixes. For clarity, each section has a ``tag`` to identify the changes.
+2.5.1 Release
+=============
+
+.. admonition:: Tag
+ :class: important
+
+ `2.5.1 - August 17th, 2023 `__
+
+**Fixes:**
+
+#. Separate decals setting had no effect and decals were always baked onto separate images (`issue-39 `__).
+
+`Features `__.
+
2.5.0 Release
=============
diff --git a/docs/pages/setup/compatibility.rst b/docs/pages/setup/compatibility.rst
index c064a5a..dc7b19d 100644
--- a/docs/pages/setup/compatibility.rst
+++ b/docs/pages/setup/compatibility.rst
@@ -19,5 +19,7 @@ BakeMaster is compatible with the following Blender versions:
* ``Blender 3.2``
* ``Blender 3.3``
* ``Blender 3.4``
+* ``Blender 3.5``
+* ``Blender 3.6``
Using the addon on versions higher than specified may cause errors. If you face any compatibility errors, please `inform <../more/connect.html>`__.
diff --git a/install/bakemaster_blender_addon_v2_5_0_demo.zip b/install/bakemaster_blender_addon_v2_5_0_demo.zip
deleted file mode 100644
index 5a30fcf..0000000
Binary files a/install/bakemaster_blender_addon_v2_5_0_demo.zip and /dev/null differ
diff --git a/install/bakemaster_blender_addon_v2_5_1_demo.zip b/install/bakemaster_blender_addon_v2_5_1_demo.zip
new file mode 100644
index 0000000..5f69d80
Binary files /dev/null and b/install/bakemaster_blender_addon_v2_5_1_demo.zip differ
diff --git a/labels.py b/labels.py
index d14fd22..b8893d0 100644
--- a/labels.py
+++ b/labels.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
@@ -66,7 +66,7 @@ class BM_Labels:
# URLs
# different documentation versions may have different pages setup
- __addon_version__ = "2.5.0"
+ __addon_version__ = "2.5.1"
URL_HELP_MAIN = "https://bakemaster-blender-addon.readthedocs.io/en/%s/" % __addon_version__
URL_HELP_OBJS = "https://bakemaster-blender-addon.readthedocs.io/en/%s/pages/start/objects.html" % __addon_version__
URL_HELP_MAPS = "https://bakemaster-blender-addon.readthedocs.io/en/%s/pages/start/maps.html" % __addon_version__
diff --git a/operator_bake.py b/operator_bake.py
index cd6b751..5ca40fb 100644
--- a/operator_bake.py
+++ b/operator_bake.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
diff --git a/operators.py b/operators.py
index d77adfc..b01552e 100644
--- a/operators.py
+++ b/operators.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
diff --git a/presets.py b/presets.py
index 60cf14b..e6ba6c1 100644
--- a/presets.py
+++ b/presets.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
diff --git a/properties.py b/properties.py
index 4ee4be0..f5d5e05 100644
--- a/properties.py
+++ b/properties.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
diff --git a/ui_panel.py b/ui_panel.py
index 1dbfc5e..aec7d65 100644
--- a/ui_panel.py
+++ b/ui_panel.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
diff --git a/ui_panel_base.py b/ui_panel_base.py
index 8a665ed..1ee5cd7 100644
--- a/ui_panel_base.py
+++ b/ui_panel_base.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including
diff --git a/utils.py b/utils.py
index af288e6..cb30c7e 100644
--- a/utils.py
+++ b/utils.py
@@ -1,6 +1,6 @@
# ##### BEGIN LICENSE BLOCK #####
#
-# "BakeMaster" Blender Add-on (version 2.5.0)
+# "BakeMaster" Blender Add-on (version 2.5.1)
# Copyright (C) 2023 Kiril Strezikozin aka kemplerart
#
# This License permits you to use this software for any purpose including