-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed assembly references and type references Improved the decompiler backend - we now use debug data if available instead of decompiling C# Created a RuntimePatch abstraction to cover both Harmony and MonoMod patches Improved the CrashReport Info to Model flow Removed Bannerlord code Improved ImGui bindings Added a simplified ImGuiColorTextEditNet implementation Added PrismSharp.Core with a precompiled RegEx Fixed ImGui scaling issue
- Loading branch information
Showing
360 changed files
with
25,886 additions
and
7,487 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Publish | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/publish-wasm.yml' | ||
- 'src/**' | ||
- 'build/**' | ||
|
||
env: | ||
# Disable the .NET logo in the console output. | ||
DOTNET_NOLOGO: true | ||
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build. | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
# Disable sending .NET CLI telemetry to Microsoft. | ||
DOTNET_CLI_TELEMETRY_OPTOUT: true | ||
|
||
jobs: | ||
publish-wasm: | ||
name: Publish WASM | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup | ||
uses: butr/actions-common-setup@v2 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Setup .NET 9 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 9.x.x | ||
|
||
- name: Run _build | ||
run: >- | ||
dotnet build external/prism-sharp/PrismSharp.SourceGenerator/PrismSharp.SourceGenerator.csproj --configuration Release; | ||
dotnet build external/prism-sharp/PrismSharp.RegExCompiler/PrismSharp.RegExCompiler.csproj --configuration Release; | ||
dotnet build external/prism-sharp/PrismSharp.Core/PrismSharp.Core.csproj --configuration Release; | ||
dotnet publish src/BUTR.CrashReport.Renderer.ImGui.WASM/BUTR.CrashReport.Renderer.ImGui.WASM.csproj --configuration Release -o "./site"; | ||
- name: Deploy to GitHub Pages | ||
uses: crazy-max/ghaction-github-pages@v4 | ||
with: | ||
target_branch: gh-pages | ||
build_dir: ./site | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[submodule "external/Utf8StringInterpolation"] | ||
path = external/Utf8StringInterpolation | ||
url = https://github.com/Cysharp/Utf8StringInterpolation | ||
branch = main | ||
[submodule "external/ZString"] | ||
path = external/ZString | ||
url = https://github.com/Cysharp/ZString | ||
branch = master | ||
[submodule "external/prism-sharp"] | ||
path = external/prism-sharp | ||
url = https://github.com/BUTR/prism-sharp.git | ||
branch = main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
root = true | ||
|
||
[*] | ||
generated_code = true | ||
ij_formatter_enabled = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
</Project> |
Submodule Utf8StringInterpolation
added at
d2e584
Submodule prism-sharp
added at
7c62d6
Submodule cimgui
added at
35a4e8
65 changes: 0 additions & 65 deletions
65
src/BUTR.CrashReport.Bannerlord.Source/BUTR.CrashReport.Bannerlord.Source.csproj
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/BUTR.CrashReport.Bannerlord.Source/BUTR.CrashReport.Bannerlord.Source.props
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.