Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

# Labels as per:
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
MAINTAINER Max Planck Institute for Security and Privacy

Check warning on line 18 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push-image

The MAINTAINER instruction is deprecated, use a label instead to define an image author

MaintainerDeprecated: Maintainer instruction is deprecated in favor of using label More info: https://docs.docker.com/go/dockerfile/rule/maintainer-deprecated/
LABEL org.opencontainers.image.authors="Max Planck Institute for Security and Privacy"
# NOTE Also change the version in config.py
LABEL org.opencontainers.image.version="2.1.1"
LABEL org.opencontainers.image.version="2.1.2"
LABEL org.opencontainers.image.licenses="AGPL-3.0-only"
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."
LABEL org.opencontainers.image.source="https://github.com/emsec/ReverSim"
Expand Down
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# CONFIG Current Log File Version.
# NOTE Also change this in the Dockerfile
LOGFILE_VERSION = "2.1.1" # Major.Milestone.Subversion
LOGFILE_VERSION = "2.1.2" # Major.Milestone.Subversion

PSEUDONYM_LENGTH = 32
LEVEL_ENCODING = 'UTF-8' # was Windows-1252
Expand Down
2 changes: 1 addition & 1 deletion static/src/levelCreation/Level.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Level
{
const result = this.circuit.calculateAllSolutions(true, this.initialSwitchStates);

console.log('min hd: ' + result.minHD.toString())
//console.log('min hd: ' + result.minHD.toString())
return result.minHD;
}

Expand Down