dialogos-project / dialogos

The DialogOS dialog system.
https://www.dialogos.app
GNU General Public License v3.0
20 stars 7 forks source link

Make ROS plugin unselected by default in the installer #181

Closed alexanderkoller closed 5 years ago

alexanderkoller commented 5 years ago

Currently the ROS plugin is selected by default in the installer. Let's make it unselected; only specific users will use it.

timobaumann commented 5 years ago

changing this

      <component name="Robot Operating System (ROS) plugin" id="1341" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">

to

      <component name="Robot Operating System (ROS) plugin" id="1341" customizedId="" displayDescription="false" hideHelpButton="false" selected="false" changeable="true" downloadable="false" hidden="false">

will probably do the trick (selected="true" to selected="false"). Should be line 321 or thereabouts of dialogos.install4j.

alexanderkoller commented 5 years ago

That fixed it, thanks.