Skip to content

Commit 94397d5

Browse files
Update .repos and documentation links
Signed-off-by: Juan López Fernández <juanlopez@eprosima.com>
1 parent 3e05767 commit 94397d5

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: v1.1.0
1010
fastdds:
1111
type: git
1212
url: https://github.com/eProsima/Fast-DDS.git
13-
version: bugfix/complex-dynamic-types
13+
version: v2.11.0
1414
dev-utils:
1515
type: git
1616
url: https://github.com/eProsima/dev-utils.git
17-
version: main
17+
version: v0.4.0
1818
ddspipe:
1919
type: git
2020
url: https://github.com/eProsima/DDS-Pipe.git
21-
version: main
21+
version: v0.2.0
2222
ddsrecordreplay:
2323
type: git
2424
url: https://github.com/eProsima/DDS-Record-Replay.git
25-
version: main
25+
version: v0.2.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.2.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.2.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
@@ -243,7 +243,7 @@ Colcon installation (recommended)
243243
244244
mkdir -p ~/DDS-Record-Replay/src
245245
cd ~/DDS-Record-Replay
246-
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/main/ddsrecordreplay.repos
246+
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/v0.2.0/ddsrecordreplay.repos
247247
vcs import src < ddsrecordreplay.repos
248248
249249
.. note::
@@ -287,7 +287,7 @@ Local installation
287287
mkdir -p ~/DDS-Record-Replay/src
288288
mkdir -p ~/DDS-Record-Replay/build
289289
cd ~/DDS-Record-Replay
290-
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/main/ddsrecordreplay.repos
290+
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/v0.2.0/ddsrecordreplay.repos
291291
vcs import src < ddsrecordreplay.repos
292292
293293
#. 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
@@ -259,7 +259,7 @@ Colcon installation (recommended)
259259
mkdir <path\to\user\workspace>\DDS-Record-Replay
260260
cd <path\to\user\workspace>\DDS-Record-Replay
261261
mkdir src
262-
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/main/ddsrecordreplay.repos ddsrecordreplay.repos
262+
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/v0.2.0/ddsrecordreplay.repos ddsrecordreplay.repos
263263
vcs import src < ddsrecordreplay.repos
264264
265265
.. note::
@@ -305,7 +305,7 @@ Local installation
305305
mkdir <path\to\user\workspace>\DDS-Record-Replay\src
306306
mkdir <path\to\user\workspace>\DDS-Record-Replay\build
307307
cd <path\to\user\workspace>\DDS-Record-Replay
308-
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/main/ddsrecordreplay.repos ddsrecordreplay.repos
308+
wget https://raw.githubusercontent.com/eProsima/DDS-Record-Replay/v0.2.0/ddsrecordreplay.repos ddsrecordreplay.repos
309309
vcs import src ddsrecordreplay.repos
310310
311311
#. 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.2.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.2.0/resources/dds/TypeLookupService/types/hello_world/HelloWorld.idl>`_
7272

7373
.. literalinclude:: ../../../resources/dds/TypeLookupService/types/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.2.0/resources/dds/TypeLookupService/types/complete/Complete.idl>`_
7676

7777
.. literalinclude:: ../../../resources/dds/TypeLookupService/types/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.2.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.2.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)