Skip to content

Commit

Permalink
Updated NEWS, README and version number (without dev)
Browse files Browse the repository at this point in the history
  • Loading branch information
buddhi1980 committed Apr 3, 2023
1 parent eb6632e commit 50ace10
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 17 deletions.
30 changes: 29 additions & 1 deletion mandelbulber2/deploy/NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Version history
v2.29 (??? 2023)

v2.29 (April 2023)

- Added new fractal formulas
mandelbarV2
mandelbulbPow2V1
Expand Down Expand Up @@ -33,6 +35,32 @@ v2.29 (??? 2023)
transfMengerFoldV2, update
transfRotateAboutVec3, optimise and add mode2

- Fractals: Added maxiter control for each formula in boolean mode
- Fractals: Added smooth DE combine
- Performance: optimized performance of anti-aliasing and MC effects (masking of pixel within tiles, improved pixel sequence)
- Shaders: added soft shadows mode for sub surface scattering in MC mode
- Shaders: Added parameter to control amount of emitted light by luminosity effect
- Shaders: Fixed bug in ambient occlusion effect and iteration fog
- Shaders: Fixed problem with global positioning of primitives and textures
- Primitives: Modified UI for managing primitive objects (to be like for light sources)
- Primitives: Added button for duplicating of primitives
- Primitives: Added wire-frame previews for primitives
- Primitives: Added possibility to drag primitives using mouse pointer
- Primitives: Added buttons: Enable all, Disable all, Only selected in the primitive manager
- Primitives: Added option to rename primitives (context menu on tab)
- Primitives: Added primitive prism
- Primitives: Added bounding boxes for individual primitives
- Primitives: Reworked icons for primitives
- UI: Added warning message when attempt to stop render when rendering took already 10 minutes
- UI: fixed bug in calculation of clipping plane for wire-frame objects
- UI: Added switch to change precision of pop-up sliders
- UI: Added option to rename light sources (context menu on tab)
- UI: Improved visibility of the cross-hair
- Files: corrected savig of multichannel EXR images
- Compilation: msvc updated to version 2019 and Qt 5.15
- Compilation: code updated for Qt6 compatibility


v2.28 (July 2022)

- Added new fractal formulas
Expand Down
12 changes: 5 additions & 7 deletions mandelbulber2/deploy/README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

MANDELBULBER 2.28
MANDELBULBER 2.29

1. What is Mandelbulber
-----------------------
Expand Down Expand Up @@ -151,13 +151,11 @@ make install
------------

- Debian Bookworm x64
- Ubuntu 20.10

- gcc 11.2
- clang 13.0.1
- msvc17

- Qt 5.15.2
- gcc 12.2
- clang 14.0.6
- msvc19
- Qt 5.15.8

7. USAGE
--------
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/deploy/README-osx.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

MANDELBULBER 2.28
MANDELBULBER 2.29

1. What is Mandelbulber
-----------------------
Expand Down
6 changes: 3 additions & 3 deletions mandelbulber2/msvc/mandelbulber2.rc
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ LANGUAGE LANG_ENGLISH,
"040904b0" BEGIN VALUE "CompanyName",
"Mandelbulber Team" VALUE "FileDescription",
"Mandelbulber generates three-dimensional fractals." VALUE "FileVersion",
"2.29-dev" VALUE "InternalName", "mandelbulber2.exe" VALUE "LegalCopyright",
"Copyright (C) 2022 Mandelbulber Team" VALUE "OriginalFilename",
"2.29" VALUE "InternalName", "mandelbulber2.exe" VALUE "LegalCopyright",
"Copyright (C) 2023 Mandelbulber Team" VALUE "OriginalFilename",
"mandelbulber2.exe" VALUE "ProductName", "Mandelbulber" VALUE "ProductVersion",
"2.29-dev" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END
"2.29" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END

#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/opencl/engines/fast_engine.cl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/

// defined to force recompilation of kernels on NVidia cards with new releases
#define MANDELBULBER_VERSION 2.29 - dev001
#define MANDELBULBER_VERSION 2.29

int GetInteger(int byte, __global char *array)
{
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/opencl/engines/full_engine.cl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/

// defined to force recompilation of kernels on NVidia cards with new releases
#define MANDELBULBER_VERSION 2.29 - dev002
#define MANDELBULBER_VERSION 2.29
int GetInteger(int byte, __global char *array)
{
__global int *intPointer = (__global int *)&array[byte];
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/opencl/engines/limited_engine.cl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/

// defined to force recompilation of kernels on NVidia cards with new releases
#define MANDELBULBER_VERSION 2.29 - dev001
#define MANDELBULBER_VERSION 2.29

int GetInteger(int byte, __global char *array)
{
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/src/render_window_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void RenderWindow::slotMenuAboutMandelbulber()
text += "version: <b>" + QString(MANDELBULBER_VERSION_STRING) + "</b>" + "<br>";
text += "<br>";
text += "Licence: GNU GPL version 3.0<br>";
text += "Copyright Ⓒ 2022<br>";
text += "Copyright Ⓒ 2023<br>";
text += "project leader: Krzysztof Marczak<br>";
text += "Project contributors:<br>";
text += "Sebastian Jennen, Graeme McLaren, Bernardo Martelli,<br>";
Expand Down
2 changes: 1 addition & 1 deletion mandelbulber2/src/system.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#define MANDELBULBER2_SRC_SYSTEM_HPP_

#define MANDELBULBER_VERSION 2.29
#define MANDELBULBER_VERSION_STRING "2.29-dev"
#define MANDELBULBER_VERSION_STRING "2.29"

#define DO_QUOTE(X) #X
#define QUOTE(X) DO_QUOTE(X)
Expand Down

0 comments on commit 50ace10

Please sign in to comment.