Skip to content

Commit a2e1f19

Browse files
committed
Update .repos and docs links
Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com>
1 parent ea973cb commit a2e1f19

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

ddsrecordreplay.repos

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ repositories:
22
foonathan_memory_vendor:
33
type: git
44
url: https://github.com/eProsima/foonathan_memory_vendor.git
5-
version: master
5+
version: v1.3.1
66
fastcdr:
77
type: git
88
url: https://github.com/eProsima/Fast-CDR.git
9-
version: master
9+
version: v2.1.3
1010
fastdds:
1111
type: git
1212
url: https://github.com/eProsima/Fast-DDS.git
13-
version: bugfix/complex-dynamic-types
13+
version: v2.13.1
1414
dev-utils:
1515
type: git
1616
url: https://github.com/eProsima/dev-utils.git
17-
version: main
17+
version: v0.5.0
1818
ddspipe:
1919
type: git
2020
url: https://github.com/eProsima/DDS-Pipe.git
21-
version: main
21+
version: v0.3.0
2222
ddsrecordreplay:
2323
type: git
2424
url: https://github.com/eProsima/DDS-Record-Replay.git
25-
version: main
25+
version: v0.3.0

ddsreplayer/test/blackbox/mcap/resources/helloworld_file_info.md

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

3-
## Run [publisher](https://github.com/eProsima/DDS-Record-Replay/tree/main/resources/dds/TypeLookupService)
3+
## Run [publisher](https://github.com/eProsima/DDS-Record-Replay/tree/v0.3.0/resources/dds/TypeLookupService)
44

55
* PUBLISHER_QOS_DEFAULT
66
* TOPIC_QOS_DEFAULT

ddsreplayer/test/blackbox/mcap/resources/helloworld_withtypes_file_info.md

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

3-
## Run [publisher](https://github.com/eProsima/DDS-Record-Replay/tree/main/resources/dds/TypeLookupService)
3+
## Run [publisher](https://github.com/eProsima/DDS-Record-Replay/tree/v0.3.0/resources/dds/TypeLookupService)
44

55
* PUBLISHER_QOS_DEFAULT
66
* TOPIC_QOS_DEFAULT

docs/rst/developer_manual/installation/sources/linux.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Colcon installation (recommended)
247247
248248
mkdir -p ~/DDS-Record-Replay/src
249249
cd ~/DDS-Record-Replay
250-
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/main/ddsrecordreplay.repos
250+
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/v0.3.0/ddsrecordreplay.repos
251251
vcs import src < ddsrecordreplay.repos
252252
253253
.. note::
@@ -291,7 +291,7 @@ Local installation
291291
mkdir -p ~/DDS-Record-Replay/src
292292
mkdir -p ~/DDS-Record-Replay/build
293293
cd ~/DDS-Record-Replay
294-
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/main/ddsrecordreplay.repos
294+
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/v0.3.0/ddsrecordreplay.repos
295295
vcs import src < ddsrecordreplay.repos
296296
297297
#. Compile all dependencies using CMake_.

docs/rst/developer_manual/installation/sources/windows.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Colcon installation (recommended)
263263
mkdir <path\to\user\workspace>\DDS-Record-Replay
264264
cd <path\to\user\workspace>\DDS-Record-Replay
265265
mkdir src
266-
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/main/ddsrecordreplay.repos ddsrecordreplay.repos
266+
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/v0.3.0/ddsrecordreplay.repos ddsrecordreplay.repos
267267
vcs import src < ddsrecordreplay.repos
268268
269269
.. note::
@@ -309,7 +309,7 @@ Local installation
309309
mkdir <path\to\user\workspace>\DDS-Record-Replay\src
310310
mkdir <path\to\user\workspace>\DDS-Record-Replay\build
311311
cd <path\to\user\workspace>\DDS-Record-Replay
312-
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/main/ddsrecordreplay.repos ddsrecordreplay.repos
312+
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/v0.3.0/ddsrecordreplay.repos ddsrecordreplay.repos
313313
vcs import src < ddsrecordreplay.repos
314314
315315
#. Compile all dependencies using CMake_.

docs/rst/tutorials/dynamic_types.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This tutorial focuses on how to send the data type information using Fast DDS Dy
2222
More specifically, this tutorial implements a DDS Publisher configured to send its data type, a DDS Subscriber that collects the data type and is able to read the incoming data, and a DDS Recorder is launched to save all the data published on the network.
2323
For more information about how to create the workspace with a basic DDS Publisher and a basic DDS Subscriber, please refer to `Writing a simple C++ publisher and subscriber application <https://fast-dds.docs.eprosima.com/en/latest/fastdds/getting_started/simple_app/simple_app.html>`_ .
2424

25-
The source code of this tutorial can be found in the public |eddsrecord| `GitHub repository <https://github.com/eProsima/DDS-Record-Replay/tree/main/resources/dds/TypeLookupService>`_ with an explanation of how to build and run it.
25+
The source code of this tutorial can be found in the public |eddsrecord| `GitHub repository <https://github.com/eProsima/DDS-Record-Replay/tree/v0.3.0/resources/dds/TypeLookupService>`_ with an explanation of how to build and run it.
2626

2727
.. warning::
2828

@@ -68,18 +68,18 @@ Data types
6868

6969
At the moment, there are two data types that can be used:
7070

71-
* `HelloWorld.idl <https://github.com/eProsima/DDS-Record-Replay/blob/main/resources/dds/TypeLookupService/types/hello_world/HelloWorld.idl>`_
71+
* `HelloWorld.idl <https://github.com/eProsima/DDS-Record-Replay/blob/v0.3.0/resources/dds/TypeLookupService/types/hello_world/HelloWorld.idl>`_
7272

7373
.. literalinclude:: ../../../resources/dds/TypeLookupService/types/v2/hello_world/HelloWorld.idl
7474

75-
* `Complete.idl <https://github.com/eProsima/DDS-Record-Replay/blob/main/resources/dds/TypeLookupService/types/complete/Complete.idl>`_
75+
* `Complete.idl <https://github.com/eProsima/DDS-Record-Replay/blob/v0.3.0/resources/dds/TypeLookupService/types/complete/Complete.idl>`_
7676

7777
.. literalinclude:: ../../../resources/dds/TypeLookupService/types/v2/complete/Complete.idl
7878

7979
Examining the code
8080
==================
8181

82-
This section explains the C++ source code of the DDS Publisher, which can also be found `here <https://github.com/eProsima/DDS-Record-Replay/blob/main/resources/dds/TypeLookupService>`_.
82+
This section explains the C++ source code of the DDS Publisher, which can also be found `here <https://github.com/eProsima/DDS-Record-Replay/blob/v0.3.0/resources/dds/TypeLookupService>`_.
8383

8484
The private data members of the class defines the DDS Topic, ``DataTypeKind``, DDS Topic type and DynamicType.
8585
The ``DataTypeKind`` defines the type to be used by the application (``HelloWorld`` or ``Complete``).
@@ -151,7 +151,7 @@ The DDS Subscriber is acting as a client of types, i.e. the subscriber will not
151151
Examining the code
152152
==================
153153

154-
This section explains the C++ source code of the DDS Subscriber, which can also be found `here <https://github.com/eProsima/DDS-Record-Replay/blob/main/resources/dds/TypeLookupService>`_.
154+
This section explains the C++ source code of the DDS Subscriber, which can also be found `here <https://github.com/eProsima/DDS-Record-Replay/blob/v0.3.0/resources/dds/TypeLookupService>`_.
155155

156156
The private data members of the class defines the DDS Topic, DDS Topic type and DynamicType.
157157

0 commit comments

Comments
 (0)