Skip to content

Commit

Permalink
Tag 0.7.0
Browse files Browse the repository at this point in the history
Fix settings.comp_executable check
Update CHANGELOG
  • Loading branch information
tobami committed Jan 20, 2011
1 parent 8da73d2 commit b820f59
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
== Change Log ==

=== Version 0.7.0, Jan 20, 2011 ===

Major features:
* New home page with result Reports: show summary of latest benchmark runs
* RSS feed showing Reports
* Support for Netbooks, tablets, and smartphones screen sizes through the use of media query
* Big performance improvements in the Changes and Timeline views
* Added settings for change and trend thresholds and default comparison executables


=== Version 0.6.2, Jul 25, 2010 ===

Bug Fix release
Expand Down
7 changes: 4 additions & 3 deletions speedcenter/codespeed/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ def comparison(request):
checkedenviros = []
if 'env' in data:
for i in data['env'].split(","):
if not i: continue
if not i:
continue
try:
checkedenviros.append(Environment.objects.get(id=int(i)))
except Environment.DoesNotExist:
Expand All @@ -193,8 +194,8 @@ def comparison(request):
continue
if i in exekeys:
checkedexecutables.append(i)
elif hasattr(settings, 'com_executables') and\
settings.comp_executables != None:
elif hasattr(settings, 'comp_executables') and\
settings.comp_executables:
for exe, rev in settings.comp_executables:
try:
exe = Executable.objects.get(name=exe)
Expand Down

0 comments on commit b820f59

Please sign in to comment.