Skip to content

Commit

Permalink
doc: add caveat about deployer renaming
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Soetens <[email protected]>
  • Loading branch information
Peter Soetens committed Dec 16, 2012
1 parent c512431 commit ad9e066
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions doc/xml/orocos-rtt-changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@
and plugin loaders may get confused if older versions are found.</emphasis>
</para></note>
</listitem>
<listitem>
<para>
The rttlua DeploymentComponent's name has been changed from "deployer" to "Deployer" in
order to be compatible with the existing deployer application. This change only influences
Lua users and requires each occurence of getPeer("deployer") to be changed by getPeer("Deployer").
</para>
<para>
You can do the renaming in your existing source trees with this Shell command:
<command> find . ! -path "*.git*" -name "*.lua" -print0 | xargs -0 sed -i "s/\"deployer\"/\"Deployer\"/g;s/\'deployer\'/\'Deployer\'/g"
</command>
</para>
</listitem>
<listitem>
<para>
There was an API change in the (RTT internal) <classname>RTT::types::TypeInfo</classname>
Expand Down

0 comments on commit ad9e066

Please sign in to comment.