diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9e2e8d02..629068a6d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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" @@ -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 }} @@ -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') }} @@ -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" @@ -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 }} @@ -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') }} diff --git a/src/plugin/plugin/PluginInformationMessage.cpp b/src/plugin/plugin/PluginInformationMessage.cpp index 05bcd1343..fe8a5dc70 100644 --- a/src/plugin/plugin/PluginInformationMessage.cpp +++ b/src/plugin/plugin/PluginInformationMessage.cpp @@ -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";