Skip to content

Commit a811190

Browse files
authored
Merge pull request cyberbotics#6484 from cyberbotics/sync-master-3c3f84995
Merge master into develop
2 parents cde3545 + 6a74b93 commit a811190

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/pull_request_template.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
**Description**
2-
Describe the bug you are fixing, the new feature your are introducing or the enhancement you are proposing.
2+
Describe the bug fix, enhancement or new feature your are proposing.
33

44
**Related Issues**
55
This pull-request fixes issue #
66

77
**Tasks**
88
Add the list of tasks of this PR.
9+
- [ ] Update the [changelog](https://github.com/cyberbotics/webots/blob/master/docs/reference/changelog-r2023.md)
10+
- [ ] Update the documentation (if needed)
911
- [ ] Task 1
1012
- [ ] Task 2
13+
- [ ] ...
1114

1215
**Documentation**
1316
If this pull-request changes the doc, add the link to the related page, including the `?version=BRANCH_NAME`, such as:
14-
https://cyberbotics.com/doc/guide/getting-started-with-webots?version=develop
17+
https://cyberbotics.com/doc/guide/getting-started-with-webots?version=my_repo:my_branch
18+
or
19+
https://cyberbotics.com/doc/guide/getting-started-with-webots?version=my_branch (if the branch is on this repository)
1520

1621
**Screenshots**
17-
If this pull-request includes any new robots/simulations/etc. add one or more screenshots of the result.
22+
If this pull-request includes any interesting visible result, add one or more screenshots.
1823

1924
**Additional context**
2025
Add any other context about the pull-request here.

docs/reference/changelog-r2023.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Released on XXX XXth, 2023.
88
- Enabled the launching of MATLAB desktop from the extern launcher ([#6366](https://github.com/cyberbotics/webots/pull/6366)).
99
- Improved overlays visible in Overlays menu by adding all the robots in the menu list ([#6297](https://github.com/cyberbotics/webots/pull/6297)).
1010
- Bug fixes
11+
- Fixed Python path for `libcar.dylib` and `libdriver.dylib` on macOS ([#6482](https://github.com/cyberbotics/webots/pull/6482)).
1112
- Avoided crash and provided better warnings when attempting to access PROTO nodes in a wrong way from the supervisor API ([#6473](https://github.com/cyberbotics/webots/pull/6473)).
1213
- Fixed errors loading template PROTO if the system user name, the project path, or the temporary directory path contains the `\` character ([#6288](https://github.com/cyberbotics/webots/pull/6288)).
1314
- Fixed Webots and libController version comparison not to take revisions into account ([#6315](https://github.com/cyberbotics/webots/pull/6315)).

lib/controller/python/vehicle/car.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self):
4141
elif sys.platform == 'win32':
4242
path = os.path.join('lib', 'controller', 'car.dll')
4343
elif sys.platform == 'darwin':
44-
path = os.path.join('Contents', 'MacOS', 'lib', 'controller', 'libcar.dylib')
44+
path = os.path.join('Contents', 'lib', 'controller', 'libcar.dylib')
4545
self.api = ctypes.cdll.LoadLibrary(os.path.join(os.environ['WEBOTS_HOME'], path))
4646
self.api.wbu_car_get_front_wheel_radius.restype = ctypes.c_double
4747
self.api.wbu_car_get_indicator_period.restype = ctypes.c_double

lib/controller/python/vehicle/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def loadApi() -> ctypes.cdll:
4343
car = 'car.dll'
4444
driver = 'driver.dll'
4545
elif sys.platform == 'darwin':
46-
path = os.path.join('Contents', 'MacOS', 'lib', 'controller')
46+
path = os.path.join('Contents', 'lib', 'controller')
4747
car = 'libcar.dylib'
4848
driver = 'libdriver.dylib'
4949
ctypes.cdll.LoadLibrary(os.path.join(os.environ['WEBOTS_HOME'], path, car))

0 commit comments

Comments
 (0)