Bump version number

This commit is contained in:
Pieter Vander Vennet 2021-03-31 11:39:56 +02:00
commit a875e2f767
35 changed files with 361 additions and 178 deletions

View file

@ -2,7 +2,7 @@ import { Utils } from "../Utils";
export default class Constants {
public static vNumber = "0.6.3b";
public static vNumber = "0.6.4";
// The user journey states thresholds when a new feature gets unlocked
public static userJourney = {
@ -32,4 +32,4 @@ export default class Constants {
return ((window.matchMedia && (window.matchMedia('only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-resolution: 75.6dpcm)').matches || window.matchMedia('only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2)').matches)) || (window.devicePixelRatio && window.devicePixelRatio >= 2));
}
}
}