From 97cf1651f98cb6bd6bc04627832c8093b61c296d Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 20 Oct 2019 18:59:26 -0400 Subject: [PATCH] [+] Add MIN_SUPPORTED_VERSION --- src/constants.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index 8d5cddf..19d0a10 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -3,12 +3,14 @@ */ 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 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';