mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
Polish and bump up to version 1.0!
This commit is contained in:
parent
e261263aab
commit
f0c344939b
@ -629,7 +629,8 @@ class Qemu(IModule):
|
|||||||
if "PROGRAMFILES" in os.environ and os.path.exists(os.environ["PROGRAMFILES"]):
|
if "PROGRAMFILES" in os.environ and os.path.exists(os.environ["PROGRAMFILES"]):
|
||||||
paths.append(os.path.join(os.environ["PROGRAMFILES"], "qemu"))
|
paths.append(os.path.join(os.environ["PROGRAMFILES"], "qemu"))
|
||||||
elif sys.platform.startswith("darwin"):
|
elif sys.platform.startswith("darwin"):
|
||||||
paths.append(os.path.join(os.getcwd(), "../Resources/Qemu/bin/"))
|
# add a specific location on Mac OS X regardless of what's in $PATH
|
||||||
|
paths.append("/usr/local/bin")
|
||||||
for path in paths:
|
for path in paths:
|
||||||
try:
|
try:
|
||||||
for f in os.listdir(path):
|
for f in os.listdir(path):
|
||||||
|
@ -13,10 +13,8 @@ File: <input type="file" name="file" />
|
|||||||
</form>
|
</form>
|
||||||
{%if items%}
|
{%if items%}
|
||||||
<h3>Files on {{host}}</h3>
|
<h3>Files on {{host}}</h3>
|
||||||
<ol>
|
|
||||||
{%for item in items%}
|
{%for item in items%}
|
||||||
<li>{{path}}/{{item}}</a></li>
|
<p>{{path}}/{{item}}</a></p>
|
||||||
{%end%}
|
{%end%}
|
||||||
{%end%}
|
{%end%}
|
||||||
</ol>
|
|
||||||
</body>
|
</body>
|
@ -23,5 +23,5 @@
|
|||||||
# or negative for a release candidate or beta (after the base version
|
# or negative for a release candidate or beta (after the base version
|
||||||
# number has been incremented)
|
# number has been incremented)
|
||||||
|
|
||||||
__version__ = "1.0.dev1"
|
__version__ = "1.0"
|
||||||
__version_info__ = (1, 0, 0, -99)
|
__version_info__ = (1, 0, 0, 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user