Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# cURL
- name: Cache cURL
id: cache-curl
uses: actions/cache@v2.1.3
uses: actions/cache@v4
with:
path: "C:\\hostedtoolcache\\windows\\libcurl"
key: "ukcp-curl-build"
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Load Yarn Cache
uses: actions/cache@v1
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -83,7 +83,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Load Cached Node Modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -131,19 +131,19 @@ jobs:

# Upload artifacts
- name: Upload Core Binary As Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: UKControllerPluginCore.dll
path: ".\\build\\bin\\UKControllerPluginCore.dll"

- name: Upload Updater Binary As Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: UKControllerPluginUpdater.dll
path: ".\\build\\bin\\UKControllerPluginUpdater.dll"

- name: Upload Loader Binary As Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: UKControllerPlugin.dll
path: ".\\build\\bin\\UKControllerPlugin.dll"
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Load Yarn Cache
uses: actions/cache@v1
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -212,7 +212,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Load Cached Node Modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down
1 change: 1 addition & 0 deletions src/plugin/plugin/PluginInformationMessage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ namespace UKControllerPlugin::Plugin {
std::wstring message;
message += L"UK Controller Plugin\r\n";
message += L"Version " + HelperFunctions::ConvertToWideString(PluginVersion::version) + L"\r\n";
message += L"PLM Build Testing\r\n";
message +=
L"Copyright \xa9 " + std::to_wstring(DATE_BASE_YEAR + buf.tm_year) + L" VATSIM United Kingdom Division";

Expand Down