Skip to content

Commit e2e52f3

Browse files
authored
Merge branch 'master' into sync-released-62f04c7db
2 parents 62f04c7 + c2ea36b commit e2e52f3

2,356 files changed

Lines changed: 6011 additions & 6886 deletions

File tree

Some content is hidden

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

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ contact_links:
66
- name: GitHub Discussions
77
url: https://github.com/cyberbotics/webots/discussions/new
88
about: Ask a question or request a new feature in Webots
9-
- name: StackOverflow
10-
url: https://stackoverflow.com/questions/tagged/webots
9+
- name: Robotics StackExchange
10+
url: https://robotics.stackexchange.com
1111
about: Ask technical questions (be sure to use the 'webots' tag).
1212
- name: Discord Server
1313
url: https://discordapp.com/invite/nTWbN9m

.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-r2024.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.

.github/workflows/test_suite_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
path: artifact
178178
- name: Get branch name
179179
id: branch-name
180-
uses: tj-actions/branch-names@v5.1
180+
uses: tj-actions/branch-names@v7.0.7
181181
- name: Extract Webots and Cache
182182
run: |
183183
tar xjf artifact/webots-*-x86-64*.tar.bz2 -C artifact

.github/workflows/test_suite_linux_develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
path: artifact
171171
- name: Get branch name
172172
id: branch-name
173-
uses: tj-actions/branch-names@v5.1
173+
uses: tj-actions/branch-names@v7.0.7
174174
- name: Extract Webots and Cache
175175
run: |
176176
tar xjf artifact/webots-*-x86-64*.tar.bz2 -C artifact

.github/workflows/test_suite_mac.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
- name: Install Webots Compilation Dependencies
4444
run: |
4545
# swig wget and cmake are already installed
46+
pip install setuptools
4647
npm install -g appdmg
4748
- name: Set Commit SHA in Version
4849
if: ${{ github.event_name == 'schedule' }}

.github/workflows/test_suite_mac_develop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
- name: Install Webots Compilation Dependencies
4040
run: |
4141
# swig wget and cmake are already installed
42+
pip install setuptools
4243
npm install -g appdmg
4344
- name: Set Commit SHA in Version
4445
if: ${{ github.event_name == 'schedule' }}

Contents/Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<key>CFBundleExecutable</key>
3636
<string>webots</string>
3737
<key>CFBundleGetInfoString</key>
38-
<string>Webots R2023b, Copyright 1998-2023 Cyberbotics Ltd.</string>
38+
<string>Webots R2024a, Copyright 1998-2024 Cyberbotics Ltd.</string>
3939
<key>CFBundleIconFile</key>
4040
<string>webots_icon</string>
4141
<key>CFBundleIdentifier</key>
@@ -47,11 +47,11 @@
4747
<key>CFBundlePackageType</key>
4848
<string>APPL</string>
4949
<key>CFBundleShortVersionString</key>
50-
<string>R2023b</string>
50+
<string>R2024a</string>
5151
<key>CFBundleSignature</key>
5252
<string>wbt </string>
5353
<key>CFBundleVersion</key>
54-
<string>R2023b</string>
54+
<string>R2024a</string>
5555
<key>LSMinimumSystemVersion</key>
5656
<string>10.14</string>
5757
<key>CSResourcesFileMapped</key>

docs/css/webots-doc.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ body {
601601
.ui-icon {
602602
display: inline-block;
603603
background-repeat: no-repeat;
604-
background-image: url('https://cyberbotics.com/wwi/{{ webots.version.major }}/images/icons.svg');
604+
background-image: url('https://cyberbotics.com/wwi/R2024a/images/icons.svg');
605605
background-color: transparent;
606606
border: none;
607607
width: 34px;

docs/discord/update.py

Lines changed: 0 additions & 210 deletions
This file was deleted.
16.8 KB
Loading

0 commit comments

Comments
 (0)