Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/reference/changelog-r2025.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Webots R2025b
- Enhancements
- Added implementations of `wbu_system_tmpdir` and `wbu_system_webots_instance_path` to the MATLAB API ([#6756](https://github.com/cyberbotics/webots/pull/6756)).
- Added missing import libraries on Windows ([#6753](https://github.com/cyberbotics/webots/pull/6753)).
- Added some missing function definitions to the existing Windows libraries ([#6753](https://github.com/cyberbotics/webots/pull/6753)).
- Cleanup
Expand Down
2 changes: 2 additions & 0 deletions lib/controller/matlab/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,8 @@ wbu_motion_set_time.m
wbu_motion_stop.m
wbu_system_getenv.m
wbu_system_short_path.m
wbu_system_tmpdir.m
wbu_system_webots_instance_path.m
WB_STDOUT.m
WB_STDERR.m
WB_CHANNEL_BROADCAST.m
Expand Down
2 changes: 2 additions & 0 deletions src/controller/matlab/mgenerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,8 @@ def main(args=None):
# utils/system.h
generator.gen(FUNC, "wbu_system_getenv(variable)")
generator.gen(FUNC, "wbu_system_short_path(path)")
generator.gen(FUNC, "wbu_system_tmpdir()")
generator.gen(FUNC, "wbu_system_webots_instance_path(refresh)")

# constants
generator.gen_const("WB_STDOUT", "1")
Expand Down
4 changes: 0 additions & 4 deletions tests/sources/test_matlab_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,6 @@ def setUp(self):

'wb_device_get_type', # Deprecated since 8.0.0
'wb_node_get_name', # C API Only

# Not Yet Implemented
'wbu_system_tmpdir',
'wbu_system_webots_instance_path',
]
self.functions = []

Expand Down