diff --git a/docs/plus/pio-remote.rst b/docs/plus/pio-remote.rst index 336edb8a..e30c5742 100644 --- a/docs/plus/pio-remote.rst +++ b/docs/plus/pio-remote.rst @@ -40,6 +40,7 @@ Features * :ref:`ide_cloud` * :ref:`OTA Device Manager ` +* :ref:`OTA Serial Port Monitor ` * :ref:`OTA Firmware Updates ` * Continuous Deployment * Continuous Delivery diff --git a/docs/userguide/account/cmd_info.rst b/docs/userguide/account/cmd_info.rst new file mode 100644 index 00000000..cf898136 --- /dev/null +++ b/docs/userguide/account/cmd_info.rst @@ -0,0 +1,33 @@ +.. Copyright 2014-present PlatformIO + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +.. _cmd_account_info: + +platformio account info +======================= + +.. contents:: + +Usage +----- + +.. code-block:: bash + + platformio account info + + +Description +----------- + +Show detailed information about :ref:`cmd_account`: + +* Active groups and expiration +* Group permissions \ No newline at end of file diff --git a/docs/userguide/account/index.rst b/docs/userguide/account/index.rst index 819cbb07..e98803ec 100644 --- a/docs/userguide/account/index.rst +++ b/docs/userguide/account/index.rst @@ -34,6 +34,7 @@ To print all available commands and options use: :maxdepth: 2 cmd_forgot + cmd_info cmd_login cmd_logout cmd_password diff --git a/docs/userguide/remote/cmd_agent.rst b/docs/userguide/remote/cmd_agent.rst index 33e350f1..d3dc26a7 100644 --- a/docs/userguide/remote/cmd_agent.rst +++ b/docs/userguide/remote/cmd_agent.rst @@ -51,7 +51,7 @@ Example > platformio remote agent list - PlatformIO Plus (https://pioplus.com) v0.3.1 + PlatformIO Plus (https://pioplus.com) innomac.local ------------- diff --git a/docs/userguide/remote/cmd_device.rst b/docs/userguide/remote/cmd_device.rst index cbfe1877..3a0b0bef 100644 --- a/docs/userguide/remote/cmd_device.rst +++ b/docs/userguide/remote/cmd_device.rst @@ -71,7 +71,7 @@ Example > platformio remote device list - PlatformIO Plus (https://pioplus.com) v0.3.1 + PlatformIO Plus (https://pioplus.com) Agent innomac.local =================== @@ -106,6 +106,8 @@ Example platformio remote device monitor -------------------------------- +**Over-The-Air (OTA) Serial Port Monitor** + Usage ~~~~~ @@ -121,8 +123,8 @@ Usage Description ~~~~~~~~~~~ -Connect to remote device Over-The-Air (OTA) and receive or send data in -real time. :ref:`pio_remote_agent` should be started before. +Connect to Serial Port of remote device Over-The-Air (OTA) and receive or +send data in real time. :ref:`pio_remote_agent` should be started before. To control *monitor* please use these "hot keys": diff --git a/docs/userguide/remote/cmd_run.rst b/docs/userguide/remote/cmd_run.rst index df4f0250..986291ba 100644 --- a/docs/userguide/remote/cmd_run.rst +++ b/docs/userguide/remote/cmd_run.rst @@ -118,7 +118,7 @@ Example > platformio remote run --environment uno --target upload - PlatformIO Plus (https://pioplus.com) v0.3.1 + PlatformIO Plus (https://pioplus.com) Building project locally [Wed Oct 26 16:35:09 2016] Processing uno (platform: atmelavr, board: uno, framework: arduino) -------------------------------------------------------------------------------- diff --git a/platformio/__init__.py b/platformio/__init__.py index cfa4b4f8..642be4dc 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 2, "0a10") +VERSION = (3, 2, "0a11") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/commands/account.py b/platformio/commands/account.py index b45b7839..0afe4c9a 100644 --- a/platformio/commands/account.py +++ b/platformio/commands/account.py @@ -59,3 +59,8 @@ def account_token(**kwargs): @click.option("-u", "--username") def account_forgot(**kwargs): pioplus_call(sys.argv[1:]) + + +@cli.command("info", short_help="PIO Account information: groups, permissions") +def account_info(): + pioplus_call(sys.argv[1:]) diff --git a/platformio/pioplus.py b/platformio/pioplus.py index 2dbdf9c4..411360e9 100644 --- a/platformio/pioplus.py +++ b/platformio/pioplus.py @@ -27,7 +27,7 @@ PACKAGE_DEPS = { }, "tool": { "name": "tool-pioplus", - "requirements": ">=0.3.0" + "requirements": ">=0.4.0" } }