Skip to content

Commit

Permalink
ready for 1.3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunbaratu committed Jan 17, 2021
1 parent af93a75 commit cc874ae
Show file tree
Hide file tree
Showing 224 changed files with 12,954 additions and 2,824 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: a32214cdcde582cddbc4ee00bb327f35
config: 20b27e83e414bd9965a7f0f5b081c881
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file added _images/bootVAB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions _sources/addons/KAC.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ You can find out if Kerbal Alarm Clock addon is available in the
current game installation by usng the boolean expression
``addons:available("KAC")``.

Note that due to changes in Kerbal Alarm Clock, kOS can no longer support
versions of KAC that are older than 3.0.0.2. The API that Kerbal
Alarm Clock publishes for other mods to use changed such that
kOS can ether support newer Kerbal Alarm Clock, or older Kerbal Alarm
Clock, but not both.

The Kerbal Alarm Clock is a plugin that allows you to create reminder alarms at future periods to help you manage your flights and not warp past important times.

.. figure:: http://triggerau.github.io/KerbalAlarmClock/images/KACForumPic.png
Expand Down
111 changes: 0 additions & 111 deletions _sources/addons/Principia.txt

This file was deleted.

32 changes: 30 additions & 2 deletions _sources/addons/RemoteTech.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,33 @@ RemoteTech is a modification for Squad's "Kerbal Space Program" (KSP) which over
- Documentation: http://remotetechnologiesgroup.github.io/RemoteTech/

You can find out if the RemoteTech addon is available in the
current game installation by usng the boolean expression
``addons:available("RT")``.
current game installation by usng the boolean expression::

addons:available("RT")

Then you can access the Remote Tech addon with::

set myRemoteTech to addons:RT.

Quick example
-------------

A quick example of usage::

if addons:available("RT") {
local myRT is addons:RT.
print "The delay from KSC to Myself is:".
print myRT:KSCDELAY(ship) + " seconds.".
}

Connectivity Manager
--------------------

Note, that some of the methods in here can be handled more generically
regardless of whether RT is installed or not, by using the methods
:ref:`in the Connectivity Manager <connectivityManagers>`. The
ConnectivityManager can abstract away the differences between
communication mods.

Interaction with kOS
--------------------
Expand Down Expand Up @@ -75,6 +100,9 @@ of some of its suffixes.
RTAddon
~~~~~~~

This is obtained with ``Addons:RT``.


.. structure:: RTAddon

===================================== ===================================== =============
Expand Down
Loading

0 comments on commit cc874ae

Please sign in to comment.