Skip to content

Commit 29fd16c

Browse files
committed
new demo version 0.8.0!
1 parent a45cde8 commit 29fd16c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2723
-2459
lines changed

__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"description": "The file you have installed is not an addon. Enable for more info.",
2626
"author" : "The FLIP Fluids Development Team",
2727
"version" : (0, 0, 0),
28-
"blender" : (2, 81, 0),
28+
"blender" : (3, 1, 0),
2929
"location" : "",
3030
"warning" : "",
3131
"wiki_url" : "https://github.com/rlguy/Blender-FLIP-Fluids",

cmake/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ set(CMAKE_BUILD_TYPE Release)
5252

5353
set(FLUIDENGINE_VERSION_TYPE_IS_STABLE_BUILD TRUE)
5454
set(FLUIDENGINE_VERSION_MAJOR 0)
55-
set(FLUIDENGINE_VERSION_MINOR 7)
56-
set(FLUIDENGINE_VERSION_REVISION 5)
57-
set(FLUIDENGINE_VERSION_DATE "12-MAR-2024")
55+
set(FLUIDENGINE_VERSION_MINOR 8)
56+
set(FLUIDENGINE_VERSION_REVISION 0)
57+
set(FLUIDENGINE_VERSION_DATE "21-MAY-2024")
5858

5959
if(FLUIDENGINE_VERSION_TYPE_IS_STABLE_BUILD)
6060
set(FLUIDENGINE_VERSION_TYPE_LABEL "Demo")

src/addon/__init__.py.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bl_info = {
1919
"description": "A FLIP Fluid Simulation Tool for Blender (v@FLUIDENGINE_VERSION_LABEL@)",
2020
"author" : "Ryan Guy & Dennis Fassbaender <support[at]flipfluids.com>",
2121
"version" : (@FLUIDENGINE_VERSION_MAJOR@, @FLUIDENGINE_VERSION_MINOR@, @FLUIDENGINE_VERSION_REVISION@),
22-
"blender" : (2, 81, 0),
22+
"blender" : (3, 1, 0),
2323
"location" : "Properties > Physics > FLIP Fluid",
2424
"warning" : "",
2525
"wiki_url" : "https://github.com/rlguy/Blender-FLIP-Fluids/wiki",

src/addon/objects/flip_fluid_cache.py

+111-271
Large diffs are not rendered by default.

src/addon/operators/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
'draw_particles_operators',
3333
'draw_force_field_operators',
3434
'helper_operators',
35+
'command_line_operators',
3536
'support_operators'
37+
3638
]
3739
for module_name in reloadable_modules:
3840
if module_name in locals():
@@ -56,7 +58,9 @@
5658
draw_particles_operators,
5759
draw_force_field_operators,
5860
helper_operators,
61+
command_line_operators,
5962
support_operators
63+
6064
)
6165

6266

@@ -76,6 +80,7 @@ def register():
7680
draw_particles_operators.register()
7781
draw_force_field_operators.register()
7882
helper_operators.register()
83+
command_line_operators.register()
7984
support_operators.register()
8085

8186

@@ -95,4 +100,5 @@ def unregister():
95100
draw_particles_operators.unregister()
96101
draw_force_field_operators.unregister()
97102
helper_operators.unregister()
103+
command_line_operators.unregister()
98104
support_operators.unregister()

0 commit comments

Comments
 (0)