Skip to content

Commit

Permalink
new demo version 0.8.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
rlguy committed May 20, 2024
1 parent a45cde8 commit 29fd16c
Show file tree
Hide file tree
Showing 45 changed files with 2,723 additions and 2,459 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"description": "The file you have installed is not an addon. Enable for more info.",
"author" : "The FLIP Fluids Development Team",
"version" : (0, 0, 0),
"blender" : (2, 81, 0),
"blender" : (3, 1, 0),
"location" : "",
"warning" : "",
"wiki_url" : "https://github.com/rlguy/Blender-FLIP-Fluids",
Expand Down
6 changes: 3 additions & 3 deletions cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ set(CMAKE_BUILD_TYPE Release)

set(FLUIDENGINE_VERSION_TYPE_IS_STABLE_BUILD TRUE)
set(FLUIDENGINE_VERSION_MAJOR 0)
set(FLUIDENGINE_VERSION_MINOR 7)
set(FLUIDENGINE_VERSION_REVISION 5)
set(FLUIDENGINE_VERSION_DATE "12-MAR-2024")
set(FLUIDENGINE_VERSION_MINOR 8)
set(FLUIDENGINE_VERSION_REVISION 0)
set(FLUIDENGINE_VERSION_DATE "21-MAY-2024")

if(FLUIDENGINE_VERSION_TYPE_IS_STABLE_BUILD)
set(FLUIDENGINE_VERSION_TYPE_LABEL "Demo")
Expand Down
2 changes: 1 addition & 1 deletion src/addon/__init__.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bl_info = {
"description": "A FLIP Fluid Simulation Tool for Blender (v@FLUIDENGINE_VERSION_LABEL@)",
"author" : "Ryan Guy & Dennis Fassbaender <support[at]flipfluids.com>",
"version" : (@FLUIDENGINE_VERSION_MAJOR@, @FLUIDENGINE_VERSION_MINOR@, @FLUIDENGINE_VERSION_REVISION@),
"blender" : (2, 81, 0),
"blender" : (3, 1, 0),
"location" : "Properties > Physics > FLIP Fluid",
"warning" : "",
"wiki_url" : "https://github.com/rlguy/Blender-FLIP-Fluids/wiki",
Expand Down
382 changes: 111 additions & 271 deletions src/addon/objects/flip_fluid_cache.py

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/addon/operators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
'draw_particles_operators',
'draw_force_field_operators',
'helper_operators',
'command_line_operators',
'support_operators'

]
for module_name in reloadable_modules:
if module_name in locals():
Expand All @@ -56,7 +58,9 @@
draw_particles_operators,
draw_force_field_operators,
helper_operators,
command_line_operators,
support_operators

)


Expand All @@ -76,6 +80,7 @@ def register():
draw_particles_operators.register()
draw_force_field_operators.register()
helper_operators.register()
command_line_operators.register()
support_operators.register()


Expand All @@ -95,4 +100,5 @@ def unregister():
draw_particles_operators.unregister()
draw_force_field_operators.unregister()
helper_operators.unregister()
command_line_operators.unregister()
support_operators.unregister()
Loading

0 comments on commit 29fd16c

Please sign in to comment.