[+] Add MIN_SUPPORTED_VERSION

This commit is contained in:
Hykilpikonna
2019-10-20 18:59:26 -04:00
parent 97bfe69986
commit 97cf1651f9
+6 -4
View File
@@ -3,12 +3,14 @@
*/ */
export default class Constants export default class Constants
{ {
/** /** Base url for api access */
* Base url for api access
*/
public static API_URL: string = 'https://va.hydev.org/api'; public static API_URL: string = 'https://va.hydev.org/api';
public static VERSION: string = '0.3.4.561'; /** Current version */
public static VERSION: string = '0.3.5.679';
/** Minimum version that still supports the same cookies */
public static MIN_SUPPORTED_VERSION: string = '0.3.4.561';
public static GITHUB: string = 'https://github.com/HyDevelop/VeracrossAnalyzer.Client'; public static GITHUB: string = 'https://github.com/HyDevelop/VeracrossAnalyzer.Client';