Skip to content

Commit c8c4940

Browse files
committed
Bump version to 2.1.4
1 parent 9e34862 commit c8c4940

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG PROMETHEUS_MULTIPROC_DIR="/tmp/prometheus_multiproc"
1818
MAINTAINER Max Planck Institute for Security and Privacy
1919
LABEL org.opencontainers.image.authors="Max Planck Institute for Security and Privacy"
2020
# NOTE Also change the version in config.py
21-
LABEL org.opencontainers.image.version="2.1.3"
21+
LABEL org.opencontainers.image.version="2.1.4"
2222
LABEL org.opencontainers.image.licenses="AGPL-3.0-only"
2323
LABEL org.opencontainers.image.description="Ready to deploy Docker container to use ReverSim for research. ReverSim is an open-source environment for the browser, originally developed at the Max Planck Institute for Security and Privacy (MPI-SP) to study human aspects in hardware reverse engineering."
2424
LABEL org.opencontainers.image.source="https://github.com/emsec/ReverSim"

app/gameConfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# CONFIG Current Log File Version.
1818
# NOTE Also change this in the Dockerfile
19-
LOGFILE_VERSION = "2.1.3" # Major.Milestone.Subversion
19+
LOGFILE_VERSION = "2.1.4" # Major.Milestone.Subversion
2020

2121
PSEUDONYM_LENGTH = 32
2222
LEVEL_ENCODING = 'UTF-8' # was Windows-1252

app/statistics3/LogEventValidator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def click_continue(self,
432432
assert event.object == ClickableObjects.CONTINUE
433433

434434
if statsParticipant.activePhase.phaseType == PhaseType.AltTask:
435-
logging.info('End of Phase AltTask')
435+
logging.debug('End of Phase AltTask') # TODO
436436
return
437437

438438
# If it is a level continue
@@ -447,7 +447,7 @@ def click_continue(self,
447447

448448
# Else this must be the end of a Phase
449449
else:
450-
logging.info(f'End of Phase {statsParticipant.activePhase.phaseType}')
450+
logging.debug(f'End of Phase {statsParticipant.activePhase.phaseType}') # TODO
451451

452452

453453
def click_skip(self,

0 commit comments

Comments
 (0)