From fb18f5d0c0a3b3deb6c0cee30d674d7491e1ee4a Mon Sep 17 00:00:00 2001 From: Johannes7k75 <57235955+Johannes7k75@users.noreply.github.com> Date: Sat, 18 Jun 2022 11:07:17 +0200 Subject: [PATCH] Add 2022.4.19 version (#17) --- .github/workflows/build.yml | 3 ++- source/utils/mod_info.cpp | 1 + source/utils/mod_info.hpp | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 398d1c2..b3aed21 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,7 @@ name: Build On Push -on: +on: + workflow_dispatch: push: branches: - '*' diff --git a/source/utils/mod_info.cpp b/source/utils/mod_info.cpp index ac56680..92e0724 100644 --- a/source/utils/mod_info.cpp +++ b/source/utils/mod_info.cpp @@ -21,6 +21,7 @@ game_version get_game_version() { { "2021.3.5", game_version::v2021_3_5s }, { "2021.4.12", game_version::v2021_4_12s }, { "2022.3.29", game_version::v2022_3_29s }, + { "2022.4.19", game_version::v2022_4_19s }, }; static const std::map deprecated_versions { diff --git a/source/utils/mod_info.hpp b/source/utils/mod_info.hpp index 78fba03..7519d50 100644 --- a/source/utils/mod_info.hpp +++ b/source/utils/mod_info.hpp @@ -12,7 +12,8 @@ enum class game_version { v2020_12_9s, v2021_3_5s, v2021_4_12s, - v2022_3_29s + v2022_3_29s, + v2022_4_19s, }; namespace mod_info {