Skip to content

Commit

Permalink
Merge pull request #1027 from splewis/development
Browse files Browse the repository at this point in the history
0.14.7
  • Loading branch information
nickdnk authored May 6, 2023
2 parents 7064df1 + d45e457 commit d68f940
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto_formatter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: '3.10'
- run: python ./misc/format.py

- uses: EndBug/[email protected].1
- uses: EndBug/[email protected].2
with:
committer_name: GitHub Actions
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ Whenever you update your Get5 plugin, remember to **always** update the `transla
Please see the [installation instructions](https://splewis.github.io/get5/latest/installation/#installation) for
details.

# 0.14.7

#### 2023-05-06

Bugfix.

1. Fix missing loading of `cvars` if also using `veto_mode` with a KeyValues match configuration.

# 0.14.6

#### 2023-04-29
Expand Down
1 change: 1 addition & 0 deletions scripting/get5/matchconfig.sp
Original file line number Diff line number Diff line change
Expand Up @@ -964,6 +964,7 @@ static bool LoadMatchFromKeyValue(KeyValues kv, char[] error) {
if (!LoadVetoDataKeyValues(kv, error)) {
return false;
}
kv.GoBack();
} else {
GenerateDefaultVetoSetup(g_MapPoolList, g_MapBanOrder, g_NumberOfMapsInSeries, g_LastVetoTeam);
}
Expand Down
2 changes: 1 addition & 1 deletion scripting/get5/version.sp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define PLUGIN_VERSION "0.14.6-dev"
#define PLUGIN_VERSION "0.14.7-dev"
// This MUST be the latest version in x.y.z semver format followed by -dev.
// If this is not consistently applied, the update-checker might malfunction.
// In official releases, the CI flow will remove the -dev suffix when compiling the plugin.
Expand Down

0 comments on commit d68f940

Please sign in to comment.