forked from platformio/platformio-core
Merge branch 'hotfix/v0.3.1'
This commit is contained in:
@ -1,8 +1,14 @@
|
|||||||
Release History
|
Release History
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
0.3.1 (2014-06-21)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* Fixed auto-installer for Windows OS (bug with %PATH% customisations)
|
||||||
|
|
||||||
|
|
||||||
0.3.0 (2014-06-21)
|
0.3.0 (2014-06-21)
|
||||||
---------
|
------------------
|
||||||
|
|
||||||
* Allowed to pass multiple "SomePlatform" to install/uninstall commands
|
* Allowed to pass multiple "SomePlatform" to install/uninstall commands
|
||||||
* Added "IDE Integration" section to README with Eclipse project examples
|
* Added "IDE Integration" section to README with Eclipse project examples
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
||||||
# See LICENSE for details.
|
# See LICENSE for details.
|
||||||
|
|
||||||
VERSION = (0, 3, 0)
|
VERSION = (0, 3, 1)
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@ -35,7 +35,7 @@ class PlatformioCLI(MultiCommand):
|
|||||||
|
|
||||||
|
|
||||||
@command(cls=PlatformioCLI)
|
@command(cls=PlatformioCLI)
|
||||||
@version_option(__version__, "platformio")
|
@version_option(__version__, prog_name="platformio")
|
||||||
def cli():
|
def cli():
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -25,6 +25,8 @@ def fix_winpython_pathenv():
|
|||||||
# took these lines from the native "win_add2path.py"
|
# took these lines from the native "win_add2path.py"
|
||||||
pythonpath = os.path.dirname(CURINTERPRETER_PATH)
|
pythonpath = os.path.dirname(CURINTERPRETER_PATH)
|
||||||
scripts = os.path.join(pythonpath, "Scripts")
|
scripts = os.path.join(pythonpath, "Scripts")
|
||||||
|
if not os.path.isdir(scripts):
|
||||||
|
os.makedirs(scripts)
|
||||||
|
|
||||||
with winreg.CreateKey(winreg.HKEY_CURRENT_USER, u"Environment") as key:
|
with winreg.CreateKey(winreg.HKEY_CURRENT_USER, u"Environment") as key:
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user