From 70493a7721cac6e48a722b51e30338215fecf647 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 12 Sep 2014 19:17:31 +0300 Subject: [PATCH] Update PlatformIO Website URLs --- README.rst | 5 +++-- platformio/__init__.py | 5 ++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index c89e7c89..d32732d0 100644 --- a/README.rst +++ b/README.rst @@ -17,8 +17,8 @@ PlatformIO :target: https://pypi.python.org/pypi/platformio/ :alt: License -`Documentation `_ / -`PDF `_ | +`Website `_ | +`Documentation `_ | `Project Examples `_ | `Bugs/Questions `_ | `Blog `_ | @@ -26,6 +26,7 @@ PlatformIO **PlatformIO** is a cross-platform code builder and library manager. +* `Website + Libraries Search `_ * `Quickstart `_ * `Installation `_ * `Project Configuration File `_ diff --git a/platformio/__init__.py b/platformio/__init__.py index 3765e754..67cd843e 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,12 +1,12 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (0, 7, "0.dev") +VERSION = (0, 7, "0-dev") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" __description__ = ("A cross-platform code builder and library manager") -__url__ = "https://github.com/ivankravets/platformio" +__url__ = "http://platformio.ikravets.com" __author__ = "Ivan Kravets" __email__ = "me@ikravets.com" @@ -14,6 +14,5 @@ __email__ = "me@ikravets.com" __license__ = "MIT License" __copyright__ = "Copyright (C) 2014 Ivan Kravets" -# __apiurl__ = "http://127.0.0.1:8080" __apiurl__ = "http://api.platformio.ikravets.com" __pkgmanifesturl__ = "http://dl.platformio.ikravets.com/packages/manifest.json"