Skip to content

Commit

Permalink
Merge branch 'master' 1.3.1 into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
EliotVU committed Mar 23, 2024
2 parents 975dbf4 + 6cc86f0 commit a2c25d0
Show file tree
Hide file tree
Showing 15 changed files with 237 additions and 186 deletions.
70 changes: 0 additions & 70 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

39 changes: 23 additions & 16 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,35 @@
name: Build .NET and Publish to NuGet
name: Build .NET Framework and Publish to NuGet

on:
workflow_dispatch:
push:
branches: [ master ]
tags:
- 'release-*'
- 'hotfix-*'

jobs:
build:

runs-on: ubuntu-latest

runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 5.0.x
- uses: actions/checkout@v4

- name: Setup MSBuild
uses: microsoft/[email protected]

- name: Setup NuGet
uses: NuGet/setup-nuget@v1

- name: Restore dependencies
run: dotnet restore src/Eliot.UELib.csproj
run: nuget restore src/Eliot.UELib.csproj

- name: Build
run: dotnet build src/Eliot.UELib.csproj --no-restore
- name: Test
run: dotnet test src/Eliot.UELib.csproj --no-build --verbosity normal
run: msbuild src/Eliot.UELib.csproj -t:rebuild -property:Configuration=Publish

- name: Publish Eliot.UELib
uses: brandedoutcast/publish-nuget@v2.5.5
uses: alirezanet/publish-nuget@v3.1.0
with:
PROJECT_FILE_PATH: src/Eliot.UELib.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
VERSION_FILE_PATH: src/Properties/AssemblyInfo.cs
VERSION_REGEX: AssemblyFileVersion\(\"(.*)\"\)
NUGET_KEY: ${{ secrets.NUGET_API_KEY }}
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Test Solution

on:
push:
branches: [ master ]
#branches: [ master ]
pull_request:
branches: [ master ]
#branches: [ master ]

jobs:
build:
Expand All @@ -14,9 +14,9 @@ jobs:
working-directory: ./src

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v3
with:
# Legacy versions not supported? :(
# 5.0 will likely not work yet due legacy dependencies...
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# [1.3.1](https://github.com/EliotVU/Unreal-Library/releases/tag/1.3.1)

* Improved support for Batman series
* Improved support for Transformers series
* Fixed the decompilation of UnrealScript casting byte-codes that were swapped i.e. `InterfaceToBool` with `InterfaceToObject`.
* Fixed a missing package version check in UStateFrame (this affected some object classes that are usually found in map package files).
* Added the capability to override the interpreted version for packages of builds that are auto-detected.

# [1.3.0](https://github.com/EliotVU/Unreal-Library/releases/tag/1.3.0.0)

* Support for Vengeance which includes BioShock 1 & 2, Swat4, and Tribes: Vengeance
* Support for Batman series (to the release branch, incomplete)
* Support for Thief: Deadly Shadows and Deus Ex: Invisible War
* Support for [America's Army 2 (and Arcade)](https://github.com/EliotVU/Unreal-Library/commit/4ae2ae2d25d8101495f0a7ae8d080156fd4bd10f)
* Support for Unreal II: eXpanded MultiPlayer
* Support for [The Chronicles of Spellborn](https://github.com/EliotVU/Unreal-Library/commit/0747049acfcf258efdcee746bf236243c87edc37)
* Improved general support for UE1 (Unreal 1), UE2 (Rainbow Six etc) & UE2.5, and UE3 (UDK etc)
* Fixes to DefaultProperties
Loading

0 comments on commit a2c25d0

Please sign in to comment.