Skip to content

Commit f0c3449

Browse files
committed
Polish and bump up to version 1.0!
1 parent e261263 commit f0c3449

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

gns3server/modules/qemu/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,8 @@ def qemu_list(self, request):
629629
if "PROGRAMFILES" in os.environ and os.path.exists(os.environ["PROGRAMFILES"]):
630630
paths.append(os.path.join(os.environ["PROGRAMFILES"], "qemu"))
631631
elif sys.platform.startswith("darwin"):
632-
paths.append(os.path.join(os.getcwd(), "../Resources/Qemu/bin/"))
632+
# add a specific location on Mac OS X regardless of what's in $PATH
633+
paths.append("/usr/local/bin")
633634
for path in paths:
634635
try:
635636
for f in os.listdir(path):

gns3server/templates/upload.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@
1313
</form>
1414
{%if items%}
1515
<h3>Files on {{host}}</h3>
16-
<ol>
1716
{%for item in items%}
18-
<li>{{path}}/{{item}}</a></li>
17+
<p>{{path}}/{{item}}</a></p>
1918
{%end%}
2019
{%end%}
21-
</ol>
2220
</body>

gns3server/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
# or negative for a release candidate or beta (after the base version
2424
# number has been incremented)
2525

26-
__version__ = "1.0.dev1"
27-
__version_info__ = (1, 0, 0, -99)
26+
__version__ = "1.0"
27+
__version_info__ = (1, 0, 0, 0)

0 commit comments

Comments
 (0)