Skip to content

Commit 5bc6a73

Browse files
authored
Fix reference s in the URL sample (cyberbotics#6764)
* Fix reference s in the URL sample * revert * fix * date
1 parent f1fcde4 commit 5bc6a73

4 files changed

Lines changed: 26 additions & 26 deletions

File tree

docs/blog/Webots-2025-a-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version R2025a Released
22

3-
<p id="publish-data">By Milos Nikolic - 30th January 2025</p>
3+
<p id="publish-data">By Milos Nikolic - 31st January 2025</p>
44
<!-- -->
55
---
66

docs/reference/changelog-r2025.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Webots R2025 Change Log
22

33
## Webots R2025a
4-
Released on January 30th, 2025.
4+
Released on January 31st, 2025.
55
- New Features
66
- **Change the name of the web scene format from `X3D` to `W3D` ([#6280](https://github.com/cyberbotics/webots/pull/6280)).**
77
- Removed support for Ubuntu 20.04 "Focal Fossa" and added support for Ubuntu 24.04 "Noble Numbat" ([#6704](https://github.com/cyberbotics/webots/pull/6704)).

projects/samples/howto/url/controllers/url/url.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ int main() {
5353
printf("The texture URL of the robot body was changed from the supervisor to a non-existing file.\n");
5454
} else if (counter == 160) {
5555
wb_supervisor_field_set_mf_string(url, 0,
56-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/appearances/"
56+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/appearances/"
5757
"protos/textures/brushed_steel/brushed_steel_base_color.jpg");
5858
printf("The texture URL of the robot body was changed from the supervisor to an existing URL.\n");
5959
}

projects/samples/howto/url/worlds/url.wbt

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ WorldInfo {
1111
title "Assets Download"
1212
contactProperties [
1313
ContactProperties {
14-
bumpSound "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/sounds/bump.wav"
15-
rollSound "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/sounds/roll.wav"
16-
slideSound "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/sounds/slide.wav"
14+
bumpSound "https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/sounds/bump.wav"
15+
rollSound "https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/sounds/roll.wav"
16+
slideSound "https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/sounds/slide.wav"
1717
}
1818
]
1919
}
@@ -23,40 +23,40 @@ Viewpoint {
2323
}
2424
Background {
2525
backUrl [
26-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_back.jpg"
26+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_back.jpg"
2727
]
2828
bottomUrl [
29-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_bottom.jpg"
29+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_bottom.jpg"
3030
]
3131
frontUrl [
32-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_front.jpg"
32+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_front.jpg"
3333
]
3434
leftUrl [
35-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_left.jpg"
35+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_left.jpg"
3636
]
3737
rightUrl [
38-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_right.jpg"
38+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_right.jpg"
3939
]
4040
topUrl [
41-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_top.jpg"
41+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_top.jpg"
4242
]
4343
backIrradianceUrl [
44-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_back.hdr"
44+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_back.hdr"
4545
]
4646
bottomIrradianceUrl [
47-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_bottom.hdr"
47+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_bottom.hdr"
4848
]
4949
frontIrradianceUrl [
50-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_front.hdr"
50+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_front.hdr"
5151
]
5252
leftIrradianceUrl [
53-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_left.hdr"
53+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_left.hdr"
5454
]
5555
rightIrradianceUrl [
56-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_right.hdr"
56+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_right.hdr"
5757
]
5858
topIrradianceUrl [
59-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/textures/cubic/mountains_top.hdr"
59+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/textures/cubic/mountains_top.hdr"
6060
]
6161
}
6262
TexturedBackgroundLight {
@@ -172,7 +172,7 @@ DEF MESH Transform {
172172
}
173173
geometry Mesh {
174174
url [
175-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/meshes/suzanne.obj"
175+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/meshes/suzanne.obj"
176176
]
177177
}
178178
}
@@ -190,27 +190,27 @@ Robot {
190190
baseColor 0.8039 0.6745 0.5764
191191
baseColorMap DEF IMAGE_TEXTURE ImageTexture {
192192
url [
193-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/appearances/protos/textures/varnished_pine/varnished_pine_base_color.jpg"
193+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/appearances/protos/textures/varnished_pine/varnished_pine_base_color.jpg"
194194
]
195195
filtering 5
196196
}
197197
roughnessMap ImageTexture {
198198
url [
199-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/appearances/protos/textures/varnished_pine/varnished_pine_roughness.jpg"
199+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/appearances/protos/textures/varnished_pine/varnished_pine_roughness.jpg"
200200
]
201201
filtering 5
202202
}
203203
metalness 0
204204
normalMap ImageTexture {
205205
url [
206-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/appearances/protos/textures/varnished_pine/varnished_pine_normal.jpg"
206+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/appearances/protos/textures/varnished_pine/varnished_pine_normal.jpg"
207207
]
208208
filtering 5
209209
}
210210
normalMapFactor 0.5
211211
occlusionMap ImageTexture {
212212
url [
213-
"https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/appearances/protos/textures/varnished_pine/varnished_pine_occlusion.jpg"
213+
"https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/appearances/protos/textures/varnished_pine/varnished_pine_occlusion.jpg"
214214
]
215215
filtering 5
216216
}
@@ -231,7 +231,7 @@ Robot {
231231
RotationalMotor {
232232
name "left wheel motor"
233233
consumptionFactor 70
234-
sound "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/sounds/rotational_motor.wav"
234+
sound "https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/sounds/rotational_motor.wav"
235235
}
236236
PositionSensor {
237237
name "left wheel sensor"
@@ -275,7 +275,7 @@ Robot {
275275
RotationalMotor {
276276
name "right wheel motor"
277277
consumptionFactor 70
278-
sound "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/default/worlds/sounds/rotational_motor.wav"
278+
sound "https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/default/worlds/sounds/rotational_motor.wav"
279279
}
280280
PositionSensor {
281281
name "right wheel sensor"
@@ -380,7 +380,7 @@ Robot {
380380
width 400
381381
height 300
382382
antiAliasing TRUE
383-
noiseMaskUrl "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/samples/devices/worlds/textures/noise_mask.png"
383+
noiseMaskUrl "https://raw.githubusercontent.com/cyberbotics/webots/R2023b/projects/samples/devices/worlds/textures/noise_mask.png"
384384
}
385385
]
386386
name "MyBot"

0 commit comments

Comments
 (0)