From f6491b22858d5875a55fef9ef3f3e8af503d3f3b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 7 Sep 2016 13:47:42 +0300 Subject: [PATCH] Add links to PlatformIO Plus --- README.rst | 18 ++++++++++-------- docs/_static/extra.css | 10 ++++++++++ docs/_templates/footer.html | 2 +- docs/index.rst | 14 ++++++++++---- .../unit-testing.rst} | 0 platformio/__init__.py | 2 +- 6 files changed, 32 insertions(+), 14 deletions(-) rename docs/{unit_testing.rst => plus/unit-testing.rst} (100%) diff --git a/README.rst b/README.rst index b0d469df..346a1b4b 100644 --- a/README.rst +++ b/README.rst @@ -25,25 +25,26 @@ PlatformIO :alt: Donate for PlatformIO.Org :target: http://platformio.org/donate - -`Home `_ | -`IDE `_ | +**Quick Links:** `Home Page `_ | +`PlatformIO Plus `_ | +`PlatformIO IDE `_ | `Project Examples `_ | `Docs `_ | -`Twitter `_ | +`Donate `_ | +`Contact Us `_ + +**Social:** `Twitter `_ | `Facebook `_ | `Hackaday `_ | `Bintray `_ | `Community `_ | -`Donate `_ | -`Contact Us `_ .. image:: https://raw.githubusercontent.com/platformio/platformio/develop/docs/_static/platformio-logo.png :target: http://platformio.org `PlatformIO `_ is an open source ecosystem for IoT development. Cross-platform build system and library manager. Continuous and -IDE integration. Arduino and MBED compatible. Ready for Cloud compiling. +IDE integration. Arduino, ESP8266 and ARM mbed compatible * **PlatformIO IDE** - The next-generation integrated development environment for IoT. C/C++ Intelligent Code Completion and Smart Code Linter for the super-fast coding. @@ -68,9 +69,10 @@ TI MSP430 & Tiva, Teensy, Arduino, mbed, libOpenCM3, etc.* .. image:: https://raw.githubusercontent.com/platformio/platformio/develop/docs/_static/platformio-demo-wiring.gif :target: http://platformio.org +* `PlatformIO Plus and professional solutions `_ * `PlatformIO IDE `_ * `Get Started `_ -* `Web 2.0 Library Search `_ +* `Library Search and Registry `_ * `Development Platforms `_ * `Frameworks `_ * `Embedded Boards Explorer `_ diff --git a/docs/_static/extra.css b/docs/_static/extra.css index 6c61b363..a422d397 100644 --- a/docs/_static/extra.css +++ b/docs/_static/extra.css @@ -292,6 +292,16 @@ nav { } } +.navbar-inverse .navbar-nav > li.nav-pioplus > a, +.navbar-inverse .navbar-nav > li.nav-pioplus > a:visited +{ + color: #ff6600; +} + +.navbar-inverse .navbar-nav > li.nav-pioplus > a:hover { + color: #ff9900; +} + .top-banner { display: block; padding: 10px 20px; diff --git a/docs/_templates/footer.html b/docs/_templates/footer.html index 6c39a60e..6ac869f3 100644 --- a/docs/_templates/footer.html +++ b/docs/_templates/footer.html @@ -27,7 +27,7 @@ diff --git a/docs/index.rst b/docs/index.rst index abea5247..9116b5c5 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -13,7 +13,7 @@ PlatformIO is an open source ecosystem for IoT development ========================================================== **Cross-platform build system and library manager. Continuous and IDE -integration. Arduino and MBED compatible. Ready for Cloud compiling.** +integration. Arduino, ESP8266 and ARM mbed compatible.** * **PlatformIO IDE** - The next-generation integrated development environment for IoT. C/C++ Intelligent Code Completion and Smart Code Linter for the super-fast coding. @@ -35,9 +35,10 @@ integration. Arduino and MBED compatible. Ready for Cloud compiling.** Silicon Labs EFM32, ST STM32, TI MSP430 & Tiva, Teensy, Arduino, mbed, libOpenCM3, etc.* -* `Website `_ +* `Home Page `_ +* `PlatformIO Plus and professional solutions `_ * :ref:`ide_atom` -* `Web 2.0 Library Search `_ | +* `Library Search and Registry `_ | `Embedded Boards Explorer `_ * `Project Examples `_ * `Source Code `_ | @@ -111,7 +112,12 @@ Contents platforms/embedded_boards frameworks/index platforms/custom_platform_and_board - unit_testing + +.. toctree:: + :caption: PlatformIO Plus + :maxdepth: 3 + + plus/unit-testing .. toctree:: :caption: Library Manager diff --git a/docs/unit_testing.rst b/docs/plus/unit-testing.rst similarity index 100% rename from docs/unit_testing.rst rename to docs/plus/unit-testing.rst diff --git a/platformio/__init__.py b/platformio/__init__.py index c435e6d2..834b821e 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -21,7 +21,7 @@ __title__ = "platformio" __description__ = ("An open source ecosystem for IoT development. " "Cross-platform build system and library manager. " "Continuous and IDE integration. " - "Arduino and MBED compatible. Ready for Cloud compiling.") + "Arduino, ESP8266 and ARM mbed compatible") __url__ = "http://platformio.org" __author__ = "Ivan Kravets"