Skip to content

Commit

Permalink
Merge pull request #65 from circleguard/development
Browse files Browse the repository at this point in the history
v1.3.1 hotfix (-l -m error)
  • Loading branch information
tybug authored Mar 7, 2019
2 parents 9d5fd19 + cabba64 commit 18e3ad3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ The GUI often lags behind CLI implementations - a feature recently added to the

#### Examples

The gui looks slightly different on every operating system. Here's how it should look on mac:
The gui looks slightly different on every operating system. Here's how it should look on windows:

<img src="https://i.imgur.com/5MQ9aP1.png">
<img src="https://i.imgur.com/OJ4J9Wk.png">

When you click 'run' in the gui, keep an eye on the command line you started the gui from, because that acts as both stdout and stdin of the program (meaning it will display results there, instead of the gui).

Expand Down
2 changes: 1 addition & 1 deletion circleguard/circleguard.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def _run_local(self):
return
if(args.map_id):
# compare every local replay with every leaderboard entry (multiple times for different mod sets)
for user_info in self.users_info:
for user_info in self.user_infos:
replays2 = self.loader.replay_from_user_info(self.cacher, user_info)
comparer = Comparer(threshold, args.silent, replays1, replays2=replays2, stddevs=stddevs)
comparer.compare(mode="double")
Expand Down
2 changes: 1 addition & 1 deletion circleguard/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

PATH_DB = PATH_ROOT / "db" / "cache.db" # /absolute/path/db/cache.db

VERSION = "1.3"
VERSION = "1.3.1"
Binary file removed showcase/gui1.png
Binary file not shown.

0 comments on commit 18e3ad3

Please sign in to comment.