Skip to content

Commit

Permalink
Polish and bump up to version 1.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Oct 21, 2014
1 parent e261263 commit f0c3449
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 2 additions & 1 deletion gns3server/modules/qemu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,8 @@ def qemu_list(self, request):
if "PROGRAMFILES" in os.environ and os.path.exists(os.environ["PROGRAMFILES"]):
paths.append(os.path.join(os.environ["PROGRAMFILES"], "qemu"))
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:
try:
for f in os.listdir(path):
Expand Down
4 changes: 1 addition & 3 deletions gns3server/templates/upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@
</form>
{%if items%}
<h3>Files on {{host}}</h3>
<ol>
{%for item in items%}
<li>{{path}}/{{item}}</a></li>
<p>{{path}}/{{item}}</a></p>
{%end%}
{%end%}
</ol>
</body>
4 changes: 2 additions & 2 deletions gns3server/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)

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

0 comments on commit f0c3449

Please sign in to comment.